* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Poppins', sans-serif; } :root { --primary: #b30000; --primary-dark: #8b0000; --secondary: #333333; --accent: #ff5722; --light: #f5f5f5; --dark: #222222; --white: #ffffff; --text-light: #666666; --border: #eee; --gradient: linear-gradient(45deg, var(--primary), var(--primary-dark)); } html { scroll-behavior: smooth; } body { background-color: var(--light); color: var(--dark); line-height: 1.6; overflow-x: hidden; font-size: 18px; } body.menu-open { overflow: hidden; } .red-text { color: var(--primary); } .bg-animation { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; opacity: 0.05; } .bg-animation span { position: absolute; width: 20px; height: 20px; background-color: var(--primary); border-radius: 50%; animation: move 15s linear infinite; } .bg-animation span:nth-child(1) { top: 10%; left: 20%; background-color: var(--primary); width: 25px; height: 25px; animation-duration: 20s; } .bg-animation span:nth-child(2) { top: 70%; left: 80%; background-color: var(--secondary); width: 35px; height: 35px; animation-duration: 25s; } .bg-animation span:nth-child(3) { top: 40%; left: 40%; background-color: var(--primary); width: 15px; height: 15px; animation-duration: 18s; } .bg-animation span:nth-child(4) { top: 80%; left: 10%; background-color: var(--secondary); width: 40px; height: 40px; animation-duration: 22s; } @keyframes move { 0% { transform: translate(0, 0) rotate(0deg) scale(1); } 25% { transform: translate(100px, 100px) rotate(90deg) scale(1.2); } 50% { transform: translate(200px, 0) rotate(180deg) scale(1); } 75% { transform: translate(100px, -100px) rotate(270deg) scale(0.8); } 100% { transform: translate(0, 0) rotate(360deg) scale(1); } } header { background: var(--white); color: var(--secondary); padding: 0.5rem 0; position: fixed; width: 100%; top: 0; z-index: 1000; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; } header.scrolled { padding: 0.2rem 0; } .container { width: 90%; max-width: 1400px; margin: 0 auto; } .nav-container { display: flex; justify-content: space-between; align-items: center; } .logo-container { display: flex; align-items: center; } .logo-img { height: 60px; margin-right: 15px; } .logo-text { display: flex; flex-direction: column; } .logo-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--primary); letter-spacing: 1px; line-height: 1.2; } .logo-tagline { font-size: 0.85rem; font-weight: 500; color: var(--secondary); letter-spacing: 0.5px; } .nav-links { display: flex; gap: 1.5rem; align-items: center; } .nav-links a { color: var(--secondary); text-decoration: none; font-weight: 500; position: relative; padding: 0.5rem 0; transition: all 0.3s ease; white-space: nowrap; } .nav-links a:after { content: ''; position: absolute; width: 0; height: 3px; bottom: 0; left: 0; background-color: var(--primary); transition: width 0.3s ease; } .nav-links a:hover { color: var(--primary); } .nav-links a:hover:after { width: 100%; } .login-btn { background-color: var(--primary); color: white !important; padding: 0.5rem 1rem !important; border-radius: 50px; transition: all 0.3s ease; border: 2px solid var(--primary); } .login-btn:hover { background-color: transparent; color: var(--primary) !important; } .login-btn:after { display: none; } .user-menu { position: relative; cursor: pointer; } .user-icon { display: flex; align-items: center; gap: 8px; color: var(--secondary); font-weight: 500; cursor: pointer; padding: 8px 12px; border-radius: 8px; transition: all 0.3s ease; } .user-icon:hover { background: rgba(179, 0, 0, 0.05); color: var(--primary); } .user-icon i { color: var(--primary); } .user-dropdown { position: absolute; top: 100%; right: 0; background: var(--white); min-width: 200px; border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); padding: 1rem 0; z-index: 100; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.3s ease; } .user-dropdown.active { opacity: 1; visibility: visible; transform: translateY(0); } .user-dropdown a { display: block; padding: 0.5rem 1.5rem; color: var(--secondary); text-decoration: none; transition: all 0.3s ease; } .user-dropdown a:hover { background: rgba(179, 0, 0, 0.05); color: var(--primary); } .user-dropdown hr { border: none; border-top: 1px solid #eee; margin: 0.5rem 0; } .mobile-menu { display: none; cursor: pointer; z-index: 1001; } .bar { width: 25px; height: 3px; background-color: var(--secondary); margin: 5px 0; transition: 0.4s; } .mobile-menu.active .bar:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); } .mobile-menu.active .bar:nth-child(2) { opacity: 0; } .mobile-menu.active .bar:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); } .hero { background: linear-gradient(135deg, #0f0f23 0%, #1a1a3a 25%, #2d1b4e 50%, #1a1a3a 75%, #0f0f23 100%); background-size: 400% 400%; animation: gradientShift 8s ease-in-out infinite; height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--white); position: relative; margin-top: 70px; padding: 2rem; overflow: hidden; } .mobile-newsletter-link { display: none; } .hero-geometric-shapes { position: absolute; width: 100%; height: 100%; top: 0; left: 0; z-index: 1; overflow: hidden; } .hero-shape { position: absolute; border-radius: 50%; background: linear-gradient(45deg, rgba(179, 0, 0, 0.1), rgba(255, 68, 68, 0.05)); animation: shapeFloat 15s ease-in-out infinite; } .hero-shape-1 { width: 300px; height: 300px; top: 10%; left: -5%; background: linear-gradient(45deg, rgba(179, 0, 0, 0.08), rgba(255, 68, 68, 0.04)); animation-duration: 20s; animation-delay: 0s; } .hero-shape-2 { width: 200px; height: 200px; top: 60%; right: -5%; background: linear-gradient(135deg, rgba(179, 0, 0, 0.06), rgba(255, 68, 68, 0.03)); animation-duration: 25s; animation-delay: -5s; } .hero-shape-3 { width: 150px; height: 150px; top: 80%; left: 20%; background: linear-gradient(225deg, rgba(179, 0, 0, 0.05), rgba(255, 68, 68, 0.02)); animation-duration: 18s; animation-delay: -10s; } @keyframes shapeFloat { 0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); } 25% { transform: translateY(-30px) rotate(90deg) scale(1.1); } 50% { transform: translateY(-15px) rotate(180deg) scale(0.9); } 75% { transform: translateY(-40px) rotate(270deg) scale(1.05); } } .hero-particles { position: absolute; width: 100%; height: 100%; overflow: hidden; z-index: 1; } .particle { position: absolute; width: 6px; height: 6px; background: linear-gradient(45deg, var(--primary), #ff6b6b); border-radius: 50%; animation: float 6s ease-in-out infinite; box-shadow: 0 0 10px rgba(179, 0, 0, 0.5); } .particle:nth-child(1) { top: 20%; left: 20%; animation-delay: 0s; animation-duration: 8s; } .particle:nth-child(2) { top: 80%; left: 80%; animation-delay: 1s; animation-duration: 7s; } .particle:nth-child(3) { top: 40%; left: 70%; animation-delay: 2s; animation-duration: 6s; } .particle:nth-child(4) { top: 60%; left: 30%; animation-delay: 3s; animation-duration: 9s; } .particle:nth-child(5) { top: 10%; left: 60%; animation-delay: 4s; animation-duration: 5s; } .particle:nth-child(6) { top: 90%; left: 10%; animation-delay: 5s; animation-duration: 8s; } .particle:nth-child(7) { top: 30%; left: 90%; animation-delay: 6s; animation-duration: 7s; } .particle:nth-child(8) { top: 70%; left: 50%; animation-delay: 7s; animation-duration: 6s; } .hero-badge { display: inline-flex; align-items: center; gap: 10px; background: rgba(255, 255, 255, 0.15); backdrop-filter: blur(15px); padding: 12px 20px; border-radius: 30px; border: 1px solid rgba(255, 255, 255, 0.3); margin-bottom: 2rem; font-size: 1rem; font-weight: 500; animation: fadeInUp 1s ease-out 0.5s both; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); } .hero-badge i { color: var(--primary); font-size: 1.2rem; animation: iconPulse 2s ease-in-out infinite; } @keyframes iconPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } } .hero-stats { display: flex; justify-content: center; gap: 2.5rem; margin: 3rem 0; flex-wrap: wrap; } .stat-item { background: linear-gradient(145deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.1)); backdrop-filter: blur(20px); padding: 2.5rem 2rem; border-radius: 25px; border: 1px solid rgba(255, 255, 255, 0.3); min-width: 160px; text-align: center; animation: fadeInUp 1s ease-out 1s both, statPulse 4s ease-in-out infinite; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; overflow: hidden; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2); } @keyframes statPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.02); } } .stat-item::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 1s ease; } .stat-item::after { content: ''; position: absolute; top: -2px; left: -2px; right: -2px; bottom: -2px; background: linear-gradient(45deg, var(--primary), #ff4444, var(--primary)); border-radius: 25px; z-index: -1; opacity: 0; transition: opacity 0.4s ease; } .stat-item:hover::before { left: 100%; } .stat-item:hover::after { opacity: 1; } .stat-item:hover { transform: translateY(-8px) scale(1.05); box-shadow: 0 20px 60px rgba(179, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3); border-color: rgba(255, 255, 255, 0.5); background: linear-gradient(145deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.15)); } .hero-stats .stat-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; animation: iconFloat 3s ease-in-out infinite; filter: drop-shadow(0 2px 4px rgba(179, 0, 0, 0.3)); display: flex; justify-content: center; align-items: center; text-align: center; background: none; width: auto; height: auto; border-radius: 0; } .hero-stats .stat-icon i { color: var(--primary); background: linear-gradient(45deg, var(--primary), #ff4444); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; } @supports not (-webkit-background-clip: text) { .hero-stats .stat-icon i { color: var(--primary) !important; -webkit-text-fill-color: var(--primary) !important; } } @keyframes iconFloat { 0%, 100% { transform: translateY(0) rotate(0deg); } 33% { transform: translateY(-8px) rotate(2deg); } 66% { transform: translateY(-4px) rotate(-2deg); } } .stat-number { font-size: 2.8rem; font-weight: 800; background: linear-gradient(45deg, var(--primary), #ff4444, var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.5rem; font-family: 'Montserrat', sans-serif; text-shadow: none; filter: drop-shadow(0 4px 8px rgba(179, 0, 0, 0.3)); line-height: 1; } .stat-label { font-size: 1rem; opacity: 0.95; font-weight: 600; line-height: 1.3; color: rgba(255, 255, 255, 0.9); text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); letter-spacing: 0.5px; } .hero-buttons { display: flex; justify-content: center; gap: 1.5rem; margin-top: 3rem; flex-wrap: wrap; align-items: center; } .btn-enhanced { position: relative; overflow: hidden; transform-style: preserve-3d; transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1); } .btn-enhanced .btn-glow { position: absolute; top: 0; left: 0; right: 0; bottom: 0; border-radius: inherit; background: linear-gradient(45deg, rgba(179, 0, 0, 0.3), rgba(255, 68, 68, 0.3)); opacity: 0; transition: opacity 0.3s ease; z-index: -1; } .btn-enhanced:hover .btn-glow { opacity: 1; animation: glowPulse 2s ease-in-out infinite; } @keyframes glowPulse { 0%, 100% { transform: scale(1); opacity: 0.3; } 50% { transform: scale(1.05); opacity: 0.6; } } .btn-enhanced span { position: relative; z-index: 2; } .hero-buttons .btn { display: flex; align-items: center; gap: 10px; padding: 1.2rem 2.5rem; font-size: 1.1rem; animation: fadeInUp 1s ease-out 1.5s both; font-weight: 600; letter-spacing: 0.5px; min-width: 160px; justify-content: center; white-space: nowrap; } .hero-subtitle { font-size: 1.5rem; margin-bottom: 1rem; text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8); animation: fadeInSlide 2s ease-out 0.5s both; opacity: 0.95; font-weight: 600; } .hero-description { font-size: 1.1rem; margin-bottom: 2rem; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6); animation: fadeInSlide 2s ease-out 0.7s both; opacity: 0.85; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.6; } .hero-scroll-indicator { position: absolute; bottom: 1rem; left: 47%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; animation: fadeInUp 1s ease-out 2s both; } .scroll-arrow { width: 45px; height: 45px; border-radius: 50%; background: rgba(255, 255, 255, 0.12); backdrop-filter: blur(15px); display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255, 255, 255, 0.3); animation: bounce 2s infinite; transition: all 0.3s ease; } .scroll-arrow:hover { background: rgba(255, 255, 255, 0.2); transform: scale(1.1); } .scroll-arrow i { color: var(--primary); font-size: 1.3rem; } .hero-scroll-indicator span { font-size: 0.85rem; opacity: 0.8; font-weight: 500; } @keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-10px); } 60% { transform: translateY(-5px); } } @keyframes gradientShift { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } } .hero.hidden { display: none !important; } body.dashboard-active .hero, body.dashboard-active #about, body.dashboard-active #notices, body.dashboard-active #society-events, body.dashboard-active #gallery, body.dashboard-active #contact, body.dashboard-active footer { display: none !important; } body.dashboard-active #dashboard { display: block !important; margin-top: 0 !important; } .hero::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 20% 80%, rgba(179, 0, 0, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(179, 0, 0, 0.05) 0%, transparent 30%), radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 40%), linear-gradient(45deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.3) 100%); z-index: 1; animation: overlayPulse 6s ease-in-out infinite, particleFloat 20s linear infinite; } @keyframes particleFloat { 0% { background-position: 0% 0%, 100% 100%, 0% 100%, 100% 0%, 0% 0%; } 25% { background-position: 100% 0%, 0% 100%, 100% 100%, 0% 0%, 0% 0%; } 50% { background-position: 100% 100%, 0% 0%, 100% 0%, 0% 100%, 0% 0%; } 75% { background-position: 0% 100%, 100% 0%, 0% 0%, 100% 100%, 0% 0%; } 100% { background-position: 0% 0%, 100% 100%, 0% 100%, 100% 0%, 0% 0%; } } .hero::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: url('../images/aakriti.png') no-repeat center center; background-size: cover; opacity: 0.12; z-index: 2; animation: logoFloat 10s ease-in-out infinite; filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1)); } @keyframes logoFloat { 0%, 100% { transform: translateY(0px) scale(1); opacity: 0.12; } 25% { transform: translateY(-10px) scale(1.02); opacity: 0.15; } 50% { transform: translateY(0px) scale(1.01); opacity: 0.18; } 75% { transform: translateY(-5px) scale(1.02); opacity: 0.15; } } .hero-content { position: relative; z-index: 3; max-width: 800px; animation: heroContentEntrance 2s ease-out; } @keyframes heroContentEntrance { 0% { opacity: 0; transform: translateY(50px) scale(0.9); } 50% { opacity: 0.8; transform: translateY(10px) scale(0.95); } 100% { opacity: 1; transform: translateY(0) scale(1); } } @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } } .hero h1 { font-size: 4rem; margin-bottom: 1rem; font-weight: 700; text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 255, 255, 0.1); font-family: 'Montserrat', sans-serif; animation: titleGlow 3s ease-in-out infinite; } @keyframes titleGlow { 0%, 100% { text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 255, 255, 0.1); } 50% { text-shadow: 0 4px 25px rgba(0, 0, 0, 0.9), 0 0 50px rgba(255, 255, 255, 0.2), 0 0 70px rgba(179, 0, 0, 0.1); } } .hero h1 span { color: var(--primary); font-weight: 800; animation: attractiveGlow 4s ease-in-out infinite; text-shadow: 0 0 10px rgba(179, 0, 0, 0.5); background: linear-gradient(45deg, var(--primary), #ff4444, var(--primary)); background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: attractiveGlow 4s ease-in-out infinite, gradientText 3s ease-in-out infinite; } @keyframes gradientText { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } } @keyframes attractiveGlow { 0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(179, 0, 0, 0.5)) drop-shadow(0 0 20px rgba(179, 0, 0, 0.3)); } 50% { transform: scale(1.05); filter: drop-shadow(0 0 20px rgba(255, 68, 68, 0.8)) drop-shadow(0 0 30px rgba(255, 68, 68, 0.5)) drop-shadow(0 0 40px rgba(255, 68, 68, 0.3)); } } .hero p { font-size: 1.3rem; margin-bottom: 2rem; text-shadow: 0 3px 15px rgba(0, 0, 0, 0.8); animation: fadeInSlide 2s ease-out 0.5s both; opacity: 0.9; } @keyframes fadeInSlide { from { opacity: 0; transform: translateX(-30px); } to { opacity: 0.9; transform: translateX(0); } } .btn { display: inline-block; padding: 0.8rem 1.8rem; background: linear-gradient(45deg, var(--primary), #ff4444); background-size: 200% 200%; color: var(--white); text-decoration: none; border-radius: 50px; font-weight: 500; transition: all 0.3s ease; border: none; cursor: pointer; box-shadow: 0 2px 8px rgba(179, 0, 0, 0.2); margin: 0 0.5rem; position: relative; overflow: hidden; } .btn:hover { background-position: 100% 0; box-shadow: 0 4px 12px rgba(179, 0, 0, 0.3); background: var(--primary-dark); } .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 ease; } .btn:hover::before { left: 100%; } .btn-primary { background: linear-gradient(45deg, var(--primary), #ff4444); color: var(--white); } .btn-primary:hover { background: linear-gradient(45deg, var(--primary-dark), #ff3333); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(179, 0, 0, 0.4); } .btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); box-shadow: 0 2px 8px rgba(179, 0, 0, 0.1); } .btn-outline:hover { background: var(--primary); color: var(--white); border-color: var(--primary); box-shadow: 0 4px 12px rgba(179, 0, 0, 0.3); } .hero .btn-outline { border: 2px solid var(--white); color: var(--white); box-shadow: none; } .hero .btn-outline:hover { background: var(--white); color: var(--primary); border-color: var(--white); } .btn-info { background-color: #17a2b8; color: white; } .btn-info:hover { background-color: #138496; } body.dashboard-active .btn,
body.dashboard-active button,
.hero .btn,
.hero button { animation: none !important; transform: none !important; transition: background-color 0.3s ease, box-shadow 0.3s ease !important;
} body.dashboard-active .btn:hover,
body.dashboard-active button:hover,
.hero .btn:hover,
.hero button:hover { transform: none !important; animation: none !important;
} .btn, button { animation: none !important;
} .btn:hover, button:hover { transform: none !important; animation: none !important;
} section { padding: 5rem 0;
} .section-title { text-align: center; margin-bottom: 3rem; position: relative; animation: fadeIn 1s ease;
} .section-title h2 { font-size: 2.5rem; color: var(--secondary); margin-bottom: 1rem; font-family: 'Montserrat', sans-serif; font-weight: 700;
} .section-title h2 span { color: var(--primary);
} .section-subtitle { font-size: 1.1rem; color: var(--text-light); margin-top: 0.5rem; font-style: italic; opacity: 0.8;
} .section-title::after { content: ''; display: block; width: 80px; height: 4px; background: var(--primary); margin: 0.5rem auto 0; border-radius: 2px;
} .about-content { display: flex; flex-wrap: wrap; align-items: center; gap: 2rem;
} .about-text { flex: 1; min-width: 300px;
} .about-highlight { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); padding: 2rem; border-radius: 15px; margin-bottom: 2rem; border-left: 4px solid var(--primary); position: relative; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
} .about-highlight i { color: var(--primary); font-size: 2rem; opacity: 0.3; position: absolute; top: 1rem; left: 1rem;
} .about-highlight p { margin: 0; font-size: 1.1rem; line-height: 1.7; padding-left: 2rem;
} .about-text p { margin-bottom: 1.5rem; color: #555; line-height: 1.7;
} .about-features { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; margin: 2rem 0;
} .feature-item { display: flex; align-items: center; gap: 12px; padding: 1rem; background: rgba(179, 0, 0, 0.05); border-radius: 10px; border: 1px solid rgba(179, 0, 0, 0.1); transition: all 0.3s ease;
} .feature-item:hover { background: rgba(179, 0, 0, 0.1); transform: translateY(-2px); box-shadow: 0 5px 15px rgba(179, 0, 0, 0.2);
} .feature-item i { color: var(--primary); font-size: 1.3rem; width: 24px; text-align: center;
} .feature-item span { font-weight: 500; color: var(--secondary);
} .about-text .btn { display: inline-block; margin: 0.5rem 0.5rem 0.5rem 0; vertical-align: top;
} .about-text .btn-outline { background: linear-gradient(45deg, var(--primary), #ff4444); color: var(--white); border: none; box-shadow: 0 2px 8px rgba(179, 0, 0, 0.2); font-size: 1.15rem; width: 310px; text-align: center;
} .about-text .btn-outline:hover { background: linear-gradient(45deg, var(--primary-dark), #ff3333); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(179, 0, 0, 0.4);
} .about-image { flex: 1; min-width: 400px; position: relative;
} .image-container { position: relative; border-radius: 15px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); transition: transform 0.5s ease; height: 650px;
} .image-container:hover { transform: translateY(-10px);
} .image-container img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease;
} .image-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: all 0.3s ease;
} .image-container:hover .image-overlay { opacity: 1;
} .overlay-content { text-align: center; color: white; transform: translateY(20px); transition: transform 0.3s ease;
} .image-container:hover .overlay-content { transform: translateY(0);
} .overlay-content i { font-size: 3rem; margin-bottom: 1rem; color: var(--primary);
} .overlay-content span { font-size: 1.2rem; font-weight: 600;
} .notices { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); position: relative; overflow: hidden; padding-top: 7rem; padding-bottom: 7rem;
} .notices::before { content: ''; position: absolute; top: -50px; left: 0; width: 100%; height: 100px; background: var(--white); transform: skewY(-2deg);
} .notices::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; 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="%23b30000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>'); pointer-events: none;
} .notices .container { position: relative; z-index: 2; overflow: visible;
} .notices .section-title { text-align: center; margin-bottom: 4rem; position: relative;
} .title-icon { display: inline-block; width: 80px; height: 80px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 2rem; animation: iconBounce 3s ease-in-out infinite; box-shadow: 0 10px 30px rgba(179, 0, 0, 0.3);
} .title-icon i { font-size: 2rem; color: white;
} @keyframes iconBounce { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-10px) scale(1.05); }
} .notices-bg-icons { position: absolute; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 1; opacity: 0.06;
} .notices-bg-icons i { position: absolute; font-size: 3rem; color: var(--primary); animation: float 8s ease-in-out infinite;
} .notices-bg-icons i:nth-child(1) { top: 15%; left: 8%; animation-delay: -1s; animation-duration: 10s;
} .notices-bg-icons i:nth-child(2) { top: 65%; left: 88%; animation-delay: -3s; animation-duration: 12s;
} .notices-bg-icons i:nth-child(3) { top: 85%; left: 12%; animation-delay: -2s; animation-duration: 14s;
} .notices-bg-icons i:nth-child(4) { top: 25%; left: 85%; animation-delay: -4s; animation-duration: 9s;
} @keyframes float { 0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); } 33% { transform: translateY(-25px) rotate(120deg) scale(1.1); } 66% { transform: translateY(-10px) rotate(240deg) scale(0.9); }
} .notice-tabs { display: flex; justify-content: center; margin-bottom: 3rem; gap: 1rem; flex-wrap: wrap;
} .notice-tab { display: flex; align-items: center; gap: 8px; padding: 1rem 2rem; background: var(--white); border-radius: 50px; cursor: pointer; font-weight: 600; box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1); transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1); position: relative; overflow: hidden; border: 2px solid transparent; min-width: 140px; justify-content: center;
} .notice-tab i { font-size: 1.1rem; transition: all 0.3s ease;
} .notice-tab::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(179, 0, 0, 0.1), transparent); transition: left 0.6s ease;
} .notice-tab:hover::before { left: 100%;
} .notice-tab.active { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--white); border-color: var(--primary-dark); transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 30px rgba(179, 0, 0, 0.4);
} .notice-tab.active i { animation: tabIconPulse 2s ease-in-out infinite;
} @keyframes tabIconPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.2); }
} .notice-tab:hover { transform: translateY(-3px); box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2); border-color: var(--primary);
} #general-notices,
#maintenance-notices,
#events-notices,
#residents-notices { display: none; animation: fadeIn 0.5s ease; padding: 1rem;
} #general-notices.active,
#maintenance-notices.active,
#events-notices.active,
#residents-notices.active { display: block;
} .notice-card .notice-content { display: block !important; padding: 0; margin: 0;
} .notice-card .notice-content { line-height: 1.6; color: #333; font-size: 0.95rem;
} .notice-card .notice-content .notice-announcement { background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%); padding: 15px 18px; border-radius: 10px; border-left: 4px solid var(--primary); margin: 15px 0; font-weight: 500; color: var(--primary-dark); box-shadow: 0 2px 8px rgba(179, 0, 0, 0.1);
} .notice-card .notice-content .notice-schedule { background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); padding: 15px 18px; border-radius: 10px; border-left: 4px solid #6c757d; margin: 15px 0; font-weight: 500; color: #495057; box-shadow: 0 2px 8px rgba(108, 117, 125, 0.1);
} .notice-card .notice-content .notice-warning { background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%); padding: 15px 18px; border-radius: 10px; border-left: 4px solid #ff9800; margin: 15px 0; font-weight: 500; color: #e65100; box-shadow: 0 2px 8px rgba(255, 152, 0, 0.15);
} .notice-card .notice-content .notice-process { background: linear-gradient(135deg, #f1f8e9 0%, #dcedc8 100%); padding: 15px 18px; border-radius: 10px; border-left: 4px solid #4caf50; margin: 15px 0; font-weight: 500; color: #2e7d32; box-shadow: 0 2px 8px rgba(76, 175, 80, 0.15);
} .notice-card .notice-content .notice-info { background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%); padding: 15px 18px; border-radius: 10px; border-left: 4px solid #2196f3; margin: 15px 0; font-weight: 500; color: #1565c0; box-shadow: 0 2px 8px rgba(33, 150, 243, 0.15);
} .notice-card .notice-content .tower-schedule { background: #ffffff; padding: 12px 15px; border-radius: 8px; margin: 8px 0; border: 1px solid #e0e0e0; border-left: 3px solid var(--primary); font-family: 'Poppins', sans-serif; font-weight: 500; color: #555; transition: all 0.3s ease;
} .notice-card .notice-content .tower-schedule:hover { background: #fafafa; border-left-color: var(--primary-dark);
} .notice-card .notice-content .process-step { background: #ffffff; padding: 12px 15px; border-radius: 8px; margin: 8px 0; border: 1px solid #e8f5e8; border-left: 3px solid #4caf50; position: relative; padding-left: 45px; font-weight: 400; color: #333; transition: all 0.3s ease;
} .notice-card .notice-content .process-step:hover { background: #f8fff8; border-left-color: #2e7d32;
} .notice-card .notice-content .process-step .step-number { color: #2e7d32; font-weight: 600;
} .notice-card .notice-content .process-step:before { content: "✓"; position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #4caf50; font-weight: bold; font-size: 16px;
} .notice-card .notice-content .fas { margin-right: 8px; font-size: 1.1em;
} .notice-card .notice-content strong { font-weight: 600; color: inherit;
} @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); }
} .notice-list { display: flex; flex-direction: column; gap: 2rem; padding: 1rem 0;
} .notice-card { background: var(--white); border-radius: 20px; padding: 2rem; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1); opacity: 0; animation: slideInUp 0.8s ease forwards; position: relative; overflow: hidden; margin: 0.5rem 0; border-left: 5px solid transparent;
} .notice-card::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent); transition: left 0.8s ease; z-index: 1; border-radius: 20px;
} .notice-card:hover::before { left: 100%;
} .notice-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(135deg, rgba(179, 0, 0, 0.02) 0%, rgba(255, 68, 68, 0.01) 100%); opacity: 0; transition: opacity 0.3s ease; border-radius: 20px; z-index: 0;
} .notice-card:hover::after { opacity: 1;
} @keyframes slideInUp { from { opacity: 0; transform: translateY(40px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); }
} .notice-card.reveal { animation: slideInUp 0.8s ease forwards;
} .notice-card.important { border-left: 5px solid var(--primary); background: linear-gradient(135deg, #fff 0%, #fff8f8 100%); box-shadow: 0 8px 30px rgba(179, 0, 0, 0.15);
} .notice-card.urgent { border-left: 5px solid #ff4444; background: linear-gradient(135deg, #fff 0%, #fff5f5 100%); box-shadow: 0 8px 35px rgba(255, 68, 68, 0.25); animation: urgentPulse 3s ease-in-out infinite;
} @keyframes urgentPulse { 0%, 100% { box-shadow: 0 8px 35px rgba(255, 68, 68, 0.25); } 50% { box-shadow: 0 12px 40px rgba(255, 68, 68, 0.35); }
} .notice-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
} .new-badge { position: absolute; top: -12px; right: -12px; background: linear-gradient(135deg, #ff6b6b, #ee5a52); color: white; padding: 0.5rem 1rem; border-radius: 20px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; z-index: 10; animation: newBadgePulse 2.5s ease-in-out infinite; box-shadow: 0 5px 20px rgba(255, 107, 107, 0.6); white-space: nowrap; transform: translateZ(0);
} @keyframes newBadgePulse { 0%, 100% { transform: scale(1) rotate(0deg); } 50% { transform: scale(1.1) rotate(-3deg); }
} .notice-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1.5rem; gap: 1rem; position: relative; z-index: 2;
} .notice-header-left { flex: 1;
} .notice-header-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.8rem;
} .notice-title { font-size: 1.4rem; font-weight: 700; color: var(--secondary); margin-bottom: 0.5rem; line-height: 1.3;
} .notice-date { font-size: 1rem; color: #666; font-weight: 500;
} .notice-title.important { color: var(--primary); font-weight: 800;
} .notice-title.urgent { color: #ff4444; font-weight: 800; animation: urgentBlink 2s ease-in-out infinite;
} .notice-title.highlighted { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 800; animation: titleGlow 3s ease-in-out infinite alternate;
} @keyframes urgentBlink { 0%, 50% { opacity: 1; } 25%, 75% { opacity: 0.7; }
} @keyframes titleGlow { from { text-shadow: 0 0 5px rgba(179, 0, 0, 0.5); } to { text-shadow: 0 0 20px rgba(179, 0, 0, 0.8), 0 0 30px rgba(179, 0, 0, 0.4); }
} .notice-priority-badge { display: inline-block; padding: 0.4rem 1rem; border-radius: 20px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
} .notice-priority-badge.high { background: linear-gradient(135deg, #ff4444, #cc3333); color: white; animation: highPriorityPulse 2s ease-in-out infinite;
} .notice-priority-badge.medium { background: linear-gradient(135deg, #ffa500, #ff8c00); color: white;
} .notice-priority-badge.normal { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white;
} @keyframes highPriorityPulse { 0% { transform: scale(1); box-shadow: 0 3px 10px rgba(255, 68, 68, 0.3); } 50% { transform: scale(1.05); box-shadow: 0 5px 15px rgba(255, 68, 68, 0.5); } 100% { transform: scale(1); box-shadow: 0 3px 10px rgba(255, 68, 68, 0.3); }
} .notice-category-tag { background: linear-gradient(135deg, var(--light), #e9ecef); color: var(--secondary); padding: 0.4rem 1rem; border-radius: 25px; font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
} .notice-body { margin-bottom: 1.5rem; line-height: 1.7; position: relative; z-index: 2; font-size: 1.05rem; color: #444;
} .notice-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1.5rem; border-top: 2px solid #f8f9fa; position: relative; z-index: 2;
} .notice-meta { display: flex; align-items: center; gap: 1.5rem;
} .notice-icon { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-right: 1rem; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); transition: all 0.3s ease;
} .notice-icon:hover { transform: scale(1.1) rotate(5deg);
} .notice-icon.general { background: linear-gradient(135deg, #17a2b8, #138496); color: white;
} .notice-icon.maintenance { background: linear-gradient(135deg, #ffc107, #e0a800); color: white;
} .notice-icon.events { background: linear-gradient(135deg, #28a745, #1e7e34); color: white;
} .notice-icon.residents { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white;
} .notice-category { display: inline-block; padding: 0.4rem 1rem; background: linear-gradient(135deg, rgba(179, 0, 0, 0.1), rgba(179, 0, 0, 0.05)); color: var(--primary); border-radius: 50px; font-size: 0.9rem; font-weight: 600; border: 1px solid rgba(179, 0, 0, 0.2);
} .notice-link { color: var(--primary); text-decoration: none; font-weight: 600; display: flex; align-items: center; gap: 0.5rem; transition: all 0.3s ease; padding: 0.5rem 1rem; border-radius: 25px; background: linear-gradient(135deg, rgba(179, 0, 0, 0.05), rgba(179, 0, 0, 0.02));
} .notice-link:hover { color: var(--primary-dark); background: linear-gradient(135deg, rgba(179, 0, 0, 0.1), rgba(179, 0, 0, 0.05)); transform: translateX(5px);
} .login-required-message { position: relative; overflow: hidden;
} .login-message-bg { position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: linear-gradient(45deg, rgba(179, 0, 0, 0.02), rgba(255, 68, 68, 0.01)); animation: loginBgFloat 4s ease-in-out infinite; border-radius: 15px;
} @keyframes loginBgFloat { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(10px); }
} @keyframes lockFloat { 0%, 100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-10px) rotate(10deg); }
} .loading-notices { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 4rem; color: #666;
} .loading-spinner { width: 50px; height: 50px; border: 5px solid #f3f3f3; border-top: 5px solid var(--primary); border-radius: 50%; animation: spin 1s linear infinite; margin-bottom: 1.5rem;
} @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); }
} .notice-body { margin-bottom: 1rem; line-height: 1.6; position: relative; z-index: 2;
} .notice-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1rem; border-top: 1px solid #f0f0f0; position: relative; z-index: 2;
} .notice-meta { display: flex; align-items: center; gap: 1rem;
} .notice-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-right: 1rem;
} .notice-icon.general { background: linear-gradient(135deg, #17a2b8, #138496); color: white;
} .notice-icon.maintenance { background: linear-gradient(135deg, #ffc107, #e0a800); color: white;
} .notice-icon.events { background: linear-gradient(135deg, #28a745, #1e7e34); color: white;
} .notice-icon.residents { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white;
} .notices .section-title h2 { position: relative; display: inline-block;
} .notices .section-title h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 3px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: 2px;
} .notices .section-title span { animation: colorShift 4s ease-in-out infinite alternate;
} @keyframes colorShift { 0% { color: var(--primary); } 100% { color: var(--primary-dark); }
} .notice-body { margin-bottom: 1rem; color: #555;
} .notice-footer { display: flex; justify-content: space-between; align-items: center;
} .notice-category { display: inline-block; padding: 0.3rem 0.8rem; background: rgba(139, 0, 0, 0.1); color: var(--primary); border-radius: 50px; font-size: 0.85rem;
} .notice-link { color: var(--primary); text-decoration: none; font-weight: 500; display: flex; align-items: center; gap: 0.5rem; transition: all 0.3s ease;
} .notice-link:hover { color: var(--primary-dark);
} .society-events { background-color: var(--white); position: relative; overflow: hidden;
} .society-events::before { content: ''; position: absolute; top: -100px; left: 0; width: 100%; height: 200px; background: var(--light); transform: skewY(-4deg); z-index: 1;
} .society-events .container { position: relative; z-index: 2;
} .events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem;
} .event-card { background: var(--white); border-radius: 15px; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); transition: all 0.3s ease; position: relative; z-index: 1; border-top: 4px solid transparent;
} .event-card:hover { transform: translateY(-10px); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); border-top: 4px solid var(--primary); overflow: visible; z-index: 100;
} .event-image { height: 200px; overflow: hidden; border-radius: 15px 15px 0 0; position: relative; cursor: pointer;
} .event-image img { width: 100%; height: 100%; object-fit: contain; object-position: center; transition: transform 0.5s ease; display: block; background: #f8f9fa; cursor: pointer;
} .event-card:hover .event-image img { transform: scale(1.1);
} .event-details { padding: 1.5rem; position: relative;
} .event-details h3 { margin-bottom: 0.5rem; color: var(--secondary); font-size: 1.3rem; font-family: 'Montserrat', sans-serif; font-weight: 600;
} .event-date { display: flex; align-items: center; gap: 0.5rem; color: var(--primary); font-weight: 500; margin-bottom: 1rem; font-size: 0.9rem;
} .event-card p { color: var(--text-light); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; margin-bottom: 15px;
} .read-more-btn { background: none; border: none; color: var(--primary); font-weight: 500; cursor: pointer; padding: 5px 10px; border-radius: 15px; transition: all 0.3s ease; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 5px; margin-top: 10px;
} .read-more-btn:hover { background: rgba(179, 0, 0, 0.1);
} .event-details .read-more-btn,
.events-grid .read-more-btn { background: none; border: none; color: var(--primary); font-weight: 500; cursor: pointer; padding: 5px 10px; border-radius: 15px; transition: all 0.3s ease; font-size: 0.9rem; display: inline-flex !important; align-items: center; gap: 5px; margin-top: 10px;
} .image-popup, .description-popup { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.8); z-index: 9999; display: none; justify-content: center; align-items: center; backdrop-filter: blur(5px);
} .image-popup.active, .description-popup.active { display: flex;
} .image-popup-content { max-width: 90%; max-height: 90%; position: relative; animation: popupZoom 0.3s ease;
} .image-popup-content img { width: 100%; height: 100%; object-fit: contain; border-radius: 10px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
} .popup-close { position: absolute; top: -40px; right: 0; background: rgba(255, 255, 255, 0.9); border: none; width: 35px; height: 35px; border-radius: 50%; cursor: pointer; font-size: 18px; color: #333; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease;
} .popup-close:hover { background: white; transform: scale(1.1);
} .description-popup-content { background: white; border-radius: 15px; padding: 30px; max-width: 800px; max-height: 70vh; overflow-y: auto; position: relative; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); animation: popupZoom 0.3s ease; width: 90%; min-height: 300px;
} .description-popup-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 2px solid #eee;
} .description-popup-title { font-size: 1.5rem; font-weight: 600; color: var(--secondary); margin: 0;
} .description-popup-text { line-height: 1.8; color: #555; font-size: 1rem; text-align: justify;
} @keyframes popupZoom { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); }
} .fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease;
} .fade-in.active { opacity: 1; transform: translateY(0);
} .feature-card p { color: #666;
} .gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem;
} .gallery-item { border-radius: 10px; overflow: hidden; position: relative; height: 250px; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); transition: all 0.3s ease;
} .gallery-item:hover { transform: scale(1.03); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
} .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: all 0.5s ease;
} .gallery-item:hover img { transform: scale(1.1);
} .gallery-item::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent); opacity: 0; transition: all 0.3s ease;
} .gallery-item:hover::after { opacity: 1;
} .gallery-caption { position: absolute; bottom: 0; left: 0; width: 100%; padding: 1.5rem; color: var(--white); z-index: 2; transform: translateY(20px); opacity: 0; transition: all 0.3s ease;
} .gallery-item:hover .gallery-caption { transform: translateY(0); opacity: 1;
} .testimonials { background: var(--gradient); color: var(--white); position: relative;
} .testimonials::before { content: ''; position: absolute; top: -100px; left: 0; width: 100%; height: 200px; background: var(--white); transform: skewY(4deg); z-index: 1;
} .testimonials .container { position: relative; z-index: 2;
} .testimonials .section-title::after { background: var(--white);
} .testimonials .section-title h2 { color: var(--white);
} .testimonial-slider { margin: 0 auto; max-width: 800px; position: relative;
} .testimonial-slide { background: rgba(255, 255, 255, 0.1); border-radius: 15px; padding: 2rem; backdrop-filter: blur(10px); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); margin: 0 1rem; text-align: center;
} .testimonial-text { font-size: 1.1rem; line-height: 1.8; margin-bottom: 1.5rem; font-style: italic;
} .testimonial-author { display: flex; align-items: center; justify-content: center;
} .author-img { width: 60px; height: 60px; border-radius: 50%; overflow: hidden; margin-right: 1rem; border: 3px solid var(--white);
} .author-img img { width: 100%; height: 100%; object-fit: cover;
} .author-info h4 { font-size: 1.1rem; margin-bottom: 0.2rem;
} .author-info p { font-size: 0.9rem; opacity: 0.8;
} .contact { background-color: var(--white); position: relative;
} .contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem;
} .contact-info { display: flex; flex-direction: column; gap: 1.5rem;
} .contact-item { display: flex; align-items: flex-start; gap: 1rem;
} .contact-icon { flex-shrink: 0; width: 45px; height: 45px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.2rem; box-shadow: 0 5px 15px rgba(179, 0, 0, 0.3); transition: all 0.3s ease;
} .contact-item:hover .contact-icon { transform: scale(1.1); background: var(--primary-dark);
} .contact-text h4 { margin-bottom: 0.2rem; color: var(--dark); font-family: 'Montserrat', sans-serif; font-weight: 600;
} .contact-text p { color: #666;
} .contact-form { background: var(--white); padding: 2rem; border-radius: 15px; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
} .form-group { margin-bottom: 1.5rem;
} .form-control { width: 100%; padding: 0.8rem 1rem; border: 2px solid #eee; border-radius: 8px; font-size: 1rem; transition: all 0.3s ease;
} .form-control:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(179, 0, 0, 0.2);
} .form-submit { width: 100%; padding: 1rem; font-size: 1.1rem; font-weight: 500;
} footer { background: var(--secondary); color: var(--white); padding: 3rem 0 1rem; text-align: center; position: relative;
} footer::before { content: ''; position: absolute; top: -50px; left: 0; width: 100%; height: 100px; background: var(--white); transform: skewY(-2deg); z-index: 1;
} .footer-content { position: relative; z-index: 2;
} .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 3rem; text-align: left;
} .footer-column h3 { font-size: 1.3rem; margin-bottom: 1.5rem; color: var(--primary); font-family: 'Montserrat', sans-serif; font-weight: 600;
} .footer-links { list-style: none;
} .footer-links li { margin-bottom: 0.8rem;
} .footer-links a { color: #aaa; text-decoration: none; transition: color 0.3s ease;
} .footer-links a:hover { color: var(--primary);
} .social-links { display: flex; gap: 1rem; margin-top: 1.5rem;
} .social-links a { display: inline-block; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); color: var(--white); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: all 0.3s ease;
} .social-links a:hover { background: var(--primary);
} .copyright { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; color: #aaa;
} .modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(5px); z-index: 1100; display: flex; justify-content: center; align-items: center; opacity: 0; visibility: hidden; transition: all 0.3s ease;
} .modal-overlay.active { opacity: 1 !important; visibility: visible !important; z-index: 99999 !important;
} .modal-overlay.active .modal { opacity: 1 !important; transform: translateY(0) !important;
} .modal { background: var(--white); border-radius: 15px; box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3); width: 90%; max-width: 500px; max-height: 90vh; position: relative; opacity: 0; transform: translateY(20px); transition: all 0.3s ease; overflow: hidden; display: flex; flex-direction: column;
} .modal-overlay.active .modal { opacity: 1; transform: translateY(0);
} .modal-header { padding: 1.5rem; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center; flex-shrink: 0;
} .modal-title { font-size: 1.5rem; color: var(--secondary); font-family: 'Montserrat', sans-serif; font-weight: 600;
} .modal-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #aaa; transition: all 0.3s ease;
} .modal-close:hover { color: var(--primary);
} .modal-body { padding: 2rem; overflow-y: auto; flex: 1;
} .modal-tabs { display: flex; border-bottom: 1px solid #eee; margin-bottom: 2rem;
} .modal-tab { padding: 0.8rem 1rem; font-weight: 500; cursor: pointer; transition: all 0.3s ease; border-bottom: 2px solid transparent; color: #777;
} .modal-tab.active { color: var(--primary); border-color: var(--primary);
} .modal-content { display: none; animation: fadeIn 0.5s ease;
} .modal-content.active { display: block;
} .form-row { margin-bottom: 1.5rem;
} .form-label { display: block; margin-bottom: 0.5rem; color: #555; font-weight: 500;
} .form-divider { display: flex; align-items: center; margin: 1.5rem 0;
} .form-divider::before, .form-divider::after { content: ''; flex: 1; height: 1px; background: #eee;
} .form-divider-text { padding: 0 1rem; color: #777; font-size: 0.9rem;
} .social-login { display: flex; gap: 1rem; margin-bottom: 1.5rem;
} .social-login-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.8rem; border: 1px solid #eee; border-radius: 8px; background: var(--white); font-weight: 500; color: #555; cursor: pointer; transition: all 0.3s ease;
} .social-login-btn:hover { background: #f5f5f5; border-color: #ddd;
} .social-login-btn i { font-size: 1.2rem;
} .form-footer { text-align: center; margin-top: 1rem; color: #777; font-size: 0.9rem;
} .form-footer a { color: var(--primary); text-decoration: none; font-weight: 500;
} #markPaymentsModal .modal { max-width: 1200px; width: 95%; max-height: 85vh;
} #markPaymentsModal .modal-body { padding: 1.5rem;
} @media (max-width: 768px) { .modal { width: 95%; max-width: none; max-height: 95vh; margin: 10px; } .modal-header { padding: 1rem; } .modal-body { padding: 1rem; } .modal-title { font-size: 1.25rem; }
} @media (max-width: 480px) { .modal { width: 100%; max-height: 100vh; border-radius: 0; margin: 0; } .modal-header { padding: 0.8rem; } .modal-body { padding: 0.8rem; } .form-row { margin-bottom: 1rem; } #markPaymentsModal .modal { max-width: none; width: 98%; max-height: 95vh; } #markPaymentsModal .modal-body { padding: 0.8rem; }
} .dashboard { margin-top: 80px; min-height: 80vh; display: none; } .dashboard-header { background: var(--white); padding: 2rem 0; margin-bottom: 2rem; border-bottom: 1px solid #eee;
} .dashboard-welcome { display: flex; justify-content: space-between; align-items: center;
} .welcome-text h2 { font-size: 2rem; margin-bottom: 0.5rem; color: var(--secondary); font-family: 'Montserrat', sans-serif; font-weight: 600;
} .welcome-text p { color: #777;
} .dashboard-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2rem;
} .stat-card { background: var(--white); border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); padding: 1.5rem; display: flex; align-items: center; gap: 1rem;
} .stat-icon { background: rgba(179, 0, 0, 0.1); width: 60px; height: 60px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--primary);
} .stat-info h3 { font-size: 1.8rem; color: var(--secondary); margin-bottom: 0.2rem;
} .stat-info p { color: #777; font-size: 0.9rem;
} .dashboard-content { display: grid; grid-template-columns: 3fr 1fr; gap: 2rem; align-items: start;
} body.admin-view .dashboard-content { grid-template-columns: 1fr;
} body.admin-view #regularNoticesList { display: none !important;
} .dashboard-main { background: var(--white); border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); overflow: hidden; position: relative;
} .dashboard-tabs { display: flex; border-bottom: 1px solid #eee; position: relative; z-index: 2;
} .dashboard-tab-container { position: relative; min-height: 500px; overflow: hidden;
} .dashboard-tab { padding: 1rem 1.5rem; font-weight: 500; cursor: pointer; transition: all 0.3s ease; border-bottom: 2px solid transparent; color: #777;
} .dashboard-tab.active { color: var(--primary); border-color: var(--primary); background: rgba(179, 0, 0, 0.05);
} .dashboard-tab-content { padding: 2rem; display: none !important; visibility: hidden !important; opacity: 0 !important; animation: fadeIn 0.5s ease; position: absolute; top: 0; left: 0; right: 0; z-index: 1; background: var(--white); border-radius: 0 0 15px 15px; min-height: 400px; width: 100%; transition: opacity 0.3s ease;
} .dashboard-tab-content.active { display: block !important; position: relative !important; visibility: visible !important; opacity: 1 !important;
} .dashboard-sidebar { background: var(--white); border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); padding: 1.5rem;
} .sidebar-section { margin-bottom: 2rem;
} .sidebar-title { font-size: 1.2rem; margin-bottom: 1rem; color: var(--secondary); font-family: 'Montserrat', sans-serif; font-weight: 600; padding-bottom: 0.5rem; border-bottom: 1px solid #eee;
} .sidebar-links { list-style: none;
} .sidebar-links li { margin-bottom: 0.5rem;
} .sidebar-links a { display: flex; align-items: center; gap: 0.5rem; color: #777; text-decoration: none; padding: 0.5rem 0; transition: all 0.3s ease;
} .sidebar-links a:hover { color: var(--primary);
} .sidebar-links i { color: var(--primary); font-size: 0.9rem;
} .admin-only { display: none; } .resident-only { display: block; } .admin-actions { display: flex; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap;
} .admin-actions .btn { min-width: 120px;
} .btn-sm { padding: 5px 10px; font-size: 0.8rem; min-width: auto;
} .btn-info { background-color: #17a2b8; color: white;
} .btn-info:hover { background-color: #138496;
} #usersList, #adminNoticesList { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 1rem; margin-top: 1rem;
} .back-to-top { position: fixed; bottom: 20px; right: 20px; width: 50px; height: 50px; background: var(--primary); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; visibility: hidden; transition: all 0.3s ease; box-shadow: 0 3px 10px rgba(179, 0, 0, 0.3); z-index: 99;
} .back-to-top.active { opacity: 1; visibility: visible;
} .back-to-top:hover { background: var(--primary-dark);
} .toast-container { position: fixed; top: 90px; right: 20px; z-index: 999999; } .toast { padding: 12px 20px; border-radius: 8px; margin-bottom: 10px; background: var(--white); color: var(--secondary); display: flex; align-items: center; gap: 10px; box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1); transform: translateX(120%); transition: all 0.5s ease;
} .toast.show { transform: translateX(0);
} .toast-success { border-left: 4px solid #28a745;
} .toast-error { border-left: 4px solid #dc3545;
} .toast-info { border-left: 4px solid #17a2b8;
} .toast-icon { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0;
} .toast-success .toast-icon { background: rgba(40, 167, 69, 0.1); color: #28a745;
} .toast-error .toast-icon { background: rgba(220, 53, 69, 0.1); color: #dc3545;
} .toast-info .toast-icon { background: rgba(23, 162, 184, 0.1); color: #17a2b8;
} .toast-content { flex: 1;
} .toast-title { font-weight: 600; margin-bottom: 2px;
} .toast-close { background: none; border: none; cursor: pointer; color: #aaa; font-size: 1rem;
} .modal-overlay.active { opacity: 1 !important; visibility: visible !important; z-index: 99999 !important;
} .modal-overlay.active .modal { opacity: 1 !important; transform: translateY(0) !important;
} .events-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); grid-gap: 30px; margin-top: 30px;
} .event-card { background: #fff; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; position: relative;
} .event-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.15); overflow: visible; z-index: 100;
} .event-image { height: 200px; overflow: hidden; border-radius: 10px 10px 0 0; position: relative; cursor: pointer;
} .event-image img { width: 100%; height: 100%; object-fit: contain; object-position: center; transition: transform 0.5s ease; display: block; background: #f8f9fa; cursor: pointer;
} .event-card:hover .event-image img { transform: scale(1.05);
} .event-details { padding: 20px; position: relative;
} .event-details h3 { color: var(--dark); margin-bottom: 10px; font-size: 1.2rem;
} .event-date { color: var(--primary); font-weight: 500; margin-bottom: 10px; font-size: 0.9rem;
} .event-details p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 15px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis;
} .status-badge { display: inline-block; padding: 3px 8px; border-radius: 4px; font-size: 0.8rem; font-weight: 500; text-transform: capitalize;
} .status-upcoming { background-color: #e3f2fd; color: #0d47a1;
} .status-ongoing { background-color: #e8f5e9; color: #1b5e20;
} .status-completed { background-color: #f5f5f5; color: #616161;
} .status-cancelled { background-color: #ffebee; color: #c62828;
} .admin-only { display: none;
} body.admin-view .admin-only { display: block !important;
} body.dashboard-active .dashboard { display: block !important;
} body.dashboard-active #home,
body.dashboard-active #about,
body.dashboard-active #notices,
body.dashboard-active #society-events, body.dashboard-active #gallery,
body.dashboard-active #contact,
body.dashboard-active footer { display: none !important;
} .modal-message { animation: fadeIn 0.3s ease; font-weight: 500; display: flex; align-items: center;
} @keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); }
} .nav-links a[data-disabled="true"] { pointer-events: none !important; opacity: 0.5 !important; cursor: not-allowed !important;
} html { scroll-behavior: smooth;
} @media (max-width: 768px) { .hero { height: 80vh; padding: 1rem; margin-top: 60px; background-size: 300% 300%; } .hero::after { background-size: cover; opacity: 0.08; animation: logoFloat 8s ease-in-out infinite; } .hero h1 { font-size: 2.5rem; margin-bottom: 0.8rem; animation: titleGlow 4s ease-in-out infinite; } .hero h1 span { animation: attractiveGlow 3s ease-in-out infinite, gradientText 2s ease-in-out infinite; } .hero p { font-size: 1.1rem; margin-bottom: 1.5rem; } .hero-content { max-width: 95%; } .btn { padding: 0.7rem 1.5rem; font-size: 0.9rem; margin: 0.3rem; } .hero-stats { flex-direction: column; gap: 1rem; margin: 1.5rem 0; } .stat-item { min-width: 100%; text-align: center; padding: 1rem; } .hero-buttons { flex-direction: column; gap: 1rem; } .hero-buttons .btn { width: 100%; justify-content: center; } .hero-badge { margin-bottom: 1rem; font-size: 0.8rem; } .hero-scroll-indicator { display: none; } .particle { display: none; } .about-content { flex-direction: column; gap: 2rem; } .about-text, .about-image { min-width: 100%; } .image-container { height: 300px; } .about-features { grid-template-columns: 1fr; } .feature-item { justify-content: center; } .about-highlight { padding: 1.5rem; } .about-highlight i { font-size: 1.5rem; } .about-highlight p { padding-left: 1.5rem; font-size: 1rem; } .section-title h2 { font-size: 2rem; } .section-subtitle { font-size: 1rem; }
} @media (max-width: 480px) { .hero { height: 70vh; padding: 0.5rem; background-size: 250% 250%; } .hero h1 { font-size: 2rem; line-height: 1.2; } .hero p { font-size: 1rem; margin-bottom: 1rem; } .btn { display: block; width: 80%; margin: 0.5rem auto; text-align: center; } input, select, textarea { font-size: 16px !important; } td, th { padding: 8px; } .section-title h2 { font-size: 1.5rem; } .modal-content { width: 95%; max-height: 80vh; overflow-y: auto; } .modal-body div[style*="display: flex"] { flex-direction: column !important; gap: 15px !important; } .modal-body img[alt="UPI QR Code"] { width: 120px !important; height: 120px !important; margin: 0 auto !important; display: block !important; } .hero::after { background-size: cover; opacity: 0.06; animation: logoFloat 6s ease-in-out infinite; } .hero::before { animation: overlayPulse 8s ease-in-out infinite, particleFloat 15s linear infinite; }
} @media (min-width: 1200px) and (max-width: 1440px) { .hero h1 { font-size: 3.2rem !important; } .hero-subtitle { font-size: 1.3rem !important; } .hero-description { font-size: 1rem !important; } .hero-badge span { font-size: 0.9rem !important; } .stat-number { font-size: 2.2rem !important; } .stat-label { font-size: 0.9rem !important; }
} @media (min-width: 1441px) and (max-width: 1920px) { .hero h1 { font-size: 3.2rem !important; line-height: 1.1 !important; margin-bottom: 0.8rem !important; } .hero-subtitle { font-size: 1.3rem !important; margin-bottom: 0.8rem !important; } .hero-description { font-size: 1rem !important; margin-bottom: 1.5rem !important; max-width: 600px !important; line-height: 1.5 !important; } .hero-badge span { font-size: 0.9rem !important; } .stat-number { font-size: 2.2rem !important; } .stat-label { font-size: 0.85rem !important; } .hero-content { max-width: 850px !important; padding: 1rem 20px !important; } .hero-stats { margin: 1.5rem 0 2rem 0 !important; gap: 1.5rem !important; } .hero { min-height: 90vh !important; height: auto !important; background-size: 500% 500%; padding: 1rem !important; } .hero::after { background-size: cover; opacity: 0.15; animation: logoFloat 12s ease-in-out infinite; } .btn:hover { box-shadow: 0 4px 12px rgba(179, 0, 0, 0.3); background: var(--primary-dark); }
} @media screen and (min-width: 1900px) and (max-width: 1920px) and (min-height: 1060px) and (max-height: 1080px) { header { padding: 0.2rem 0 !important; height: 45px !important; } header.scrolled { padding: 0.1rem 0 !important; } .hero-scroll-indicator { display: none !important; } .hero { height: calc(100vh - 45px) !important; min-height: auto !important; padding: 0.2rem !important; margin-top: 45px !important; overflow: visible !important; display: flex !important; align-items: center !important; justify-content: center !important; } .hero-content { max-width: 650px !important; padding: 0 !important; transform: scale(0.78) !important; margin: 0 auto !important; display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: center !important; } .hero h1 { font-size: 2.2rem !important; margin-bottom: 0.15rem !important; line-height: 0.85 !important; } .hero-subtitle { font-size: 0.9rem !important; margin-bottom: 0.15rem !important; } .hero-description { font-size: 0.75rem !important; margin-bottom: 0.5rem !important; max-width: 480px !important; line-height: 1.2 !important; } .hero-badge { margin-bottom: 0.5rem !important; padding: 4px 10px !important; } .hero-badge span { font-size: 0.65rem !important; } .stat-number { font-size: 1.3rem !important; } .stat-label { font-size: 0.6rem !important; } .hero-stats { margin: 0.5rem 0 0.6rem 0 !important; gap: 0.5rem !important; } .hero-stats .stat-item { padding: 0.5rem !important; } .hero-buttons { margin-top: 0.6rem !important; gap: 0.5rem !important; } .hero-buttons .btn { padding: 0.4rem 0.8rem !important; font-size: 0.75rem !important; } .logo-img { height: 30px !important; } .logo-title { font-size: 0.9rem !important; } .nav-links { gap: 1rem !important; } .nav-links a { font-size: 0.85rem !important; }
} @media (min-width: 1921px) { .hero::after { background-size: cover; opacity: 0.15; animation: logoFloat 12s ease-in-out infinite; } .hero { background-size: 500% 500%; } .hero h1 { font-size: 4.5rem; } .btn:hover { box-shadow: 0 4px 12px rgba(179, 0, 0, 0.3); background: var(--primary-dark); }
} @media (min-width: 1024px) and (max-width: 1440px) { .hero-buttons { display: flex; justify-content: center; align-items: center; gap: 2rem; margin-top: 3rem; flex-wrap: wrap; } .hero-buttons .btn { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 1.3rem 2.8rem; font-size: 1.1rem; min-width: 180px; white-space: nowrap; } .hero-content { max-width: 800px; margin: 0 auto; } .hero-stats { display: flex; justify-content: center; align-items: center; gap: 2.5rem; margin: 3rem auto; flex-wrap: wrap; max-width: 900px; } .stat-item { flex: 0 0 auto; min-width: 180px; max-width: 220px; }
} @media (min-width: 1441px) { .hero-buttons { gap: 2.5rem; margin-top: 3.5rem; } .hero-buttons .btn { padding: 1.4rem 3rem; font-size: 1.15rem; min-width: 200px; } .hero-content { max-width: 900px; } .hero-stats { gap: 3rem; max-width: 1000px; } .stat-item { min-width: 200px; max-width: 240px; }
} .search-pagination-container { background: #f8f9fa; padding: 15px; border-radius: 8px; margin-bottom: 20px; box-shadow: 0 2px 4px rgba(0,0,0,0.1);
} .search-input { flex: 1; padding: 8px 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 14px; transition: border-color 0.3s ease;
} .search-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 2px rgba(179, 0, 0, 0.2);
} .clear-search-btn { padding: 8px 12px; background: #6c757d; color: white; border: none; border-radius: 4px; cursor: pointer; font-size: 14px; transition: background-color 0.3s ease;
} .clear-search-btn:hover { background: #5a6268;
} .pagination-container { margin-top: 20px; display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap;
} .pagination-btn { padding: 8px 12px; border: none; border-radius: 4px; cursor: pointer; font-size: 14px; transition: all 0.3s ease; min-width: 40px; display: inline-flex; align-items: center; justify-content: center;
} .pagination-btn:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 2px 4px rgba(0,0,0,0.2);
} .pagination-btn:disabled { cursor: not-allowed; opacity: 0.6;
} .pagination-info { color: #666; font-size: 14px; white-space: nowrap;
} .admin-table { width: 100%; border-collapse: collapse; background: white; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 4px rgba(0,0,0,0.1);
} .admin-table th { padding: 12px; text-align: left; font-weight: 600; color: #333; background: #f8f9fa; border-bottom: 2px solid #dee2e6;
} .admin-table td { padding: 12px; border-bottom: 1px solid #dee2e6; transition: background-color 0.3s;
} .admin-table tr:hover { background-color: #f8f9fa;
} .status-badge { padding: 4px 8px; border-radius: 4px; font-size: 0.85rem; font-weight: 500;
} .status-active { background: #d4edda; color: #155724;
} .status-pending { background: #fff3cd; color: #856404;
} .status-cancelled { background: #f8d7da; color: #721c24;
} .status-completed { background: #d4edda; color: #155724;
} @media (max-width: 768px) { .search-pagination-container > div:first-child { flex-direction: column; align-items: stretch; gap: 10px; } .pagination-container { gap: 5px; } .pagination-btn { padding: 6px 10px; font-size: 12px; min-width: 35px; } .pagination-info { font-size: 12px; text-align: center; margin-top: 10px; }
} .search-pagination-container > div:first-child { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 300px;
} .search-pagination-container .fa-search { color: #666; margin-right: 5px;
} .notice-card:hover,
.maintenance-card:hover,
.booking-card:hover { transform: translateY(-2px); box-shadow: 0 4px 8px rgba(0,0,0,0.15); transition: all 0.3s ease;
} .paginated-content .loading-state { text-align: center; padding: 40px; color: #666;
} .paginated-content .loading-state i { font-size: 2rem; margin-bottom: 10px; color: var(--primary);
} .paginated-content .no-results { text-align: center; padding: 40px; color: #666;
} .paginated-content .no-results i { font-size: 3rem; margin-bottom: 15px; opacity: 0.5;
} .paginated-content .no-results h4 { margin-bottom: 10px; color: #333;
} .search-input:focus + .clear-search-btn { background: var(--primary);
} .pagination-btn[disabled] { background: #e9ecef !important; color: #6c757d !important;
} .pagination-btn:not([disabled]):hover { background: var(--primary-dark) !important; color: white !important;
} @media (max-width: 991px) { .nav-container { padding: 10px 20px; } .mobile-menu { display: flex; flex-direction: column; justify-content: space-around; align-items: center; } .nav-links { position: fixed; top: 70px; right: -100%; width: 80%; height: calc(100vh - 70px); background-color: var(--white); flex-direction: column; align-items: center; justify-content: flex-start; padding-top: 30px; transition: all 0.3s ease-in-out; box-shadow: -5px 0px 10px rgba(0, 0, 0, 0.1); z-index: 1000; overflow-y: auto; } .nav-links.active { right: 0; } .nav-links a { margin: 15px 0; font-size: 18px !important; padding: 12px 20px !important; width: 80%; text-align: center; min-height: 44px; display: flex; align-items: center; justify-content: center; } .login-btn { font-size: 18px !important; padding: 12px 24px !important; margin: 10px 0 !important; width: 200px !important; text-align: center; min-height: 44px; } .user-menu .user-icon { font-size: 18px !important; padding: 12px 16px !important; min-height: 44px; } .user-dropdown { width: 250px !important; right: 10px; } .user-dropdown a { font-size: 16px !important; padding: 12px 20px !important; min-height: 44px; } .hero { padding: 60px 15px; height: auto; min-height: 100vh; } .hero h1 { font-size: 2.5rem; line-height: 1.2; } .hero-subtitle { font-size: 1.2rem; } .hero-description { font-size: 1rem; padding: 0 10px; } .hero-stats { gap: 1rem; margin: 2rem 0; } .stat-item { min-width: 100px; padding: 1.5rem 1rem; } .stat-number { font-size: 1.8rem; } .hero-buttons { gap: 1rem; flex-direction: column; align-items: center; } .hero-buttons .btn { padding: 1rem 2rem; width: 80%; max-width: 250px; justify-content: center; } .notices { padding: 4rem 0; } .title-icon { width: 60px; height: 60px; margin-bottom: 1.5rem; } .title-icon i { font-size: 1.5rem; } .notice-tabs { gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; } .notice-tab { padding: 0.8rem 1.2rem; min-width: auto; font-size: 0.9rem; } .notice-tab span { display: none; } .notice-card { padding: 1.5rem; margin: 0.5rem 0; } .notice-title { font-size: 1.2rem; line-height: 1.3; } .notice-header { flex-direction: column; align-items: flex-start; gap: 1rem; } .notice-header-right { align-items: flex-start; width: 100%; } .notice-priority-badge { padding: 0.3rem 0.8rem; font-size: 0.8rem; } .notice-footer { flex-direction: column; align-items: flex-start; gap: 1rem; } .notice-icon { width: 40px; height: 40px; font-size: 1.2rem; margin-right: 0.8rem; } .cards-container { grid-template-columns: 1fr; } .card { margin-bottom: 20px; } .two-column, .three-column, .four-column { grid-template-columns: 1fr; } footer .footer-content { flex-direction: column; text-align: center; } footer .footer-section { margin-bottom: 30px; }
} @media (max-width: 768px) and (min-width: 481px) { .hero-stats { gap: 1.5rem; } .stat-item { min-width: 120px; } .notice-tabs { gap: 0.8rem; } .notice-tab span { display: inline; } .notice-card { padding: 1.8rem; }
} @media (max-width: 480px) { .hero h1 { font-size: 2rem; } .hero-subtitle { font-size: 1.1rem; } .hero-description { font-size: 0.95rem; } .hero-stats { flex-direction: column; align-items: center; gap: 1rem; } .stat-item { width: 90%; max-width: 200px; } .notice-tab { padding: 0.7rem 1rem; font-size: 0.85rem; } .notice-card { padding: 1.2rem; border-radius: 15px; } .notice-title { font-size: 1.1rem; } .new-badge { top: -8px; right: -8px; padding: 0.3rem 0.6rem; font-size: 0.7rem; } html { font-size: 18px !important; } * { -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; text-size-adjust: 100%; } button, .btn, a[href], [onclick], input, select, textarea { -webkit-tap-highlight-color: rgba(0,0,0,0); touch-action: manipulation; } .form-container, .modal-content, #addStaffForm, #addUserForm { padding: 12px !important; margin: 8px !important; } .form-grid { grid-template-columns: 1fr !important; gap: 12px !important; } .form-row { margin-bottom: 12px !important; } .form-label { font-size: 16px !important; font-weight: 600; margin-bottom: 6px !important; display: block; } .form-control, input, select, textarea { font-size: 18px !important; padding: 14px !important; line-height: 1.4; border-radius: 6px; width: 100%; box-sizing: border-box; } .modal-overlay { padding: 12px !important; } .modal-content { width: 96% !important; max-width: none !important; margin: 12px auto !important; max-height: 88vh !important; overflow-y: auto; } #staffFilterModal [style*="max-width: 500px"] { max-width: 95% !important; width: 95% !important; } .dashboard-tab-content { padding: 15px !important; } .form-actions { margin-top: 20px !important; } .form-actions button { width: 100% !important; margin-bottom: 8px !important; font-size: 16px !important; padding: 12px !important; } .maintenance-staff-section, .admin-actions { padding: 12px !important; } strong, .staff-position, .user-role { word-wrap: break-word !important; overflow-wrap: break-word !important; } div[style*="Email"], *:contains("@"), td:contains("@"), p:contains("@"), span:contains("@") { word-break: break-all !important; overflow-wrap: anywhere !important; max-width: 100% !important; } .staff-card *, .user-card *, [style*="border: 1px solid #ddd"] * { word-wrap: break-word !important; overflow-wrap: break-word !important; max-width: 100%; } button, .btn, a[onclick], [onclick] { min-height: 44px !important; padding: 12px 16px !important; font-size: 16px !important; line-height: 1.2; text-align: center; display: inline-block; box-sizing: border-box; }
} @media (max-width: 600px) { .logo-container { max-width: 80%; } .logo-title { font-size: 1.2rem; } .logo-tagline { font-size: 0.7rem; }
} @media (max-width: 576px) { .logo-img { max-width: 45px !important; height: auto; } .logo-title { font-size: 16px !important; line-height: 1.2; } .logo-tagline { font-size: 12px !important; line-height: 1.2; } .nav-links { width: 100%; top: 70px; height: calc(100vh - 70px); } header { padding: 8px 0 !important; } .nav-container { padding: 8px 15px !important; } .logo-container { max-width: 75%; } .form-container { padding: 15px; } .form-group { margin-bottom: 15px; } .form-control { padding: 12px !important; font-size: 16px !important; } .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; } .btn { padding: 12px 16px !important; min-height: 44px !important; font-size: 16px !important; line-height: 1.2; border-radius: 6px; } table { display: block; overflow-x: auto; white-space: nowrap; } section { padding: 40px 0; } .section-title h2 { font-size: 2rem !important; line-height: 1.2; } .dashboard-welcome h2 { font-size: 1.8rem !important; line-height: 1.2; } .dashboard-welcome p { font-size: 16px !important; } .stat-card { padding: 16px !important; margin-bottom: 12px; } .stat-card .stat-info h3 { font-size: 1.5rem !important; line-height: 1.2; } .stat-card .stat-info p { font-size: 14px !important; }
} @media (max-width: 767px) { html, body { max-width: 100%; overflow-x: hidden; } html { font-size: 16px; } body { font-size: 16px; line-height: 1.5; } p, span, div, td, th, li { font-size: 18px !important; line-height: 1.5 !important; } button, .btn, a { font-size: 18px !important; padding: 14px 18px !important; min-height: 48px; line-height: 1.3; } table { width: 100%; font-size: 16px !important; } td, th { font-size: 16px !important; padding: 12px 8px !important; word-wrap: break-word; max-width: 120px; } .card { width: 100%; } .search-pagination-container > div:first-child { flex-direction: column; align-items: stretch; gap: 10px; } .pagination-container { gap: 5px; } .pagination-btn { padding: 6px 10px; font-size: 12px; min-width: 35px; } .pagination-info { font-size: 12px; text-align: center; } .dashboard-content { grid-template-columns: 1fr !important; gap: 1rem; } .dashboard-tabs { flex-wrap: wrap; gap: 0; } .dashboard-tab { flex: 1; text-align: center; padding: 12px 8px !important; font-size: 14px !important; min-width: 80px; word-wrap: break-word; } .admin-actions { flex-direction: column; gap: 10px; align-items: stretch; } .admin-actions .btn { width: 100%; text-align: center; font-size: 18px !important; padding: 14px !important; margin-bottom: 8px; } .payment-actions { display: flex !important; flex-direction: column !important; gap: 10px !important; align-items: stretch !important; } .payment-actions .btn { width: 100% !important; margin-right: 0 !important; margin-bottom: 8px !important; font-size: 18px !important; padding: 14px 18px !important; text-align: center; display: block !important; } .payment-actions button[style*="margin-right"] { margin-right: 0 !important; } .staff-card { margin-bottom: 12px !important; padding: 15px !important; border-radius: 8px !important; } .staff-card .staff-header { flex-direction: column !important; align-items: flex-start !important; gap: 8px !important; } .staff-card h5 { font-size: 20px !important; line-height: 1.3 !important; word-wrap: break-word; max-width: 100%; } .staff-card .staff-body { margin-bottom: 12px; } .staff-card .staff-body > div { display: flex !important; flex-direction: column !important; gap: 10px !important; } .staff-card .staff-body > div > div { font-size: 16px !important; line-height: 1.5 !important; word-wrap: break-word !important; overflow-wrap: break-word !important; padding: 6px 0; max-width: 100% !important; width: 100% !important; } .staff-card .staff-actions { display: flex !important; flex-direction: column !important; gap: 8px !important; } .staff-card .staff-actions button { width: 100% !important; font-size: 16px !important; padding: 12px !important; margin: 0 !important; } .staff-card button[style*="gap"], .staff-card div[style*="gap"] { display: flex !important; flex-direction: column !important; gap: 8px !important; } .staff-card div, .user-card div, [data-id] div { word-wrap: break-word !important; overflow-wrap: break-word !important; word-break: break-word !important; max-width: 100%; } div:contains("@"), [style*="Email"]:contains("@"), strong:contains("Email") + *, *[title*="email"], *[title*="Email"] { word-break: break-all !important; overflow-wrap: anywhere !important; } .user-card, [style*="border: 1px solid #ddd"] { padding: 15px !important; margin-bottom: 12px !important; } .user-card h4 { font-size: 20px !important; line-height: 1.3 !important; word-wrap: break-word; } .user-card p { font-size: 16px !important; line-height: 1.5 !important; margin-bottom: 10px !important; word-wrap: break-word !important; overflow-wrap: break-word !important; } .user-card [style*="display: flex"] { flex-direction: column !important; gap: 10px !important; } .user-card button { width: 100% !important; font-size: 16px !important; padding: 12px !important; }
} .popup-modal { display: none; position: fixed; z-index: 9999; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.7); backdrop-filter: blur(5px);
} .popup-content { background-color: var(--white); margin: 2% auto; padding: 0; border-radius: 15px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); width: 90%; max-width: 800px; max-height: 90vh; overflow-y: auto; position: relative; animation: modalSlideIn 0.4s ease-out;
} @keyframes modalSlideIn { from { opacity: 0; transform: translateY(-50px) scale(0.95); } to { opacity: 1; transform: translateY(0) scale(1); }
} .popup-close { position: absolute; top: 15px; right: 20px; color: var(--text-light); font-size: 28px; font-weight: bold; cursor: pointer; z-index: 10; transition: color 0.3s ease;
} .popup-close:hover,
.popup-close:focus { color: var(--primary);
} .president-message { padding: 30px;
} .president-header { display: flex; align-items: center; gap: 20px; margin-bottom: 25px; padding-bottom: 20px; border-bottom: 2px solid var(--border);
} .president-photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; border: 3px solid var(--primary);
} .president-photo-placeholder { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border: 3px solid var(--primary); display: flex; align-items: center; justify-content: center; color: white; font-size: 2em;
} .president-info h3 { color: var(--primary); margin-bottom: 5px; font-size: 1.4em;
} .president-name { font-weight: 600; color: var(--dark); margin-bottom: 2px;
} .president-title { color: var(--text-light); font-size: 0.9em;
} .president-content p { margin-bottom: 15px; color: var(--dark); line-height: 1.7; text-align: justify;
} .president-signature { margin-top: 25px; padding-top: 20px; border-top: 1px solid var(--border); text-align: right; font-style: italic;
} .rules-content { padding: 30px;
} .rules-content h3 { color: var(--primary); margin-bottom: 25px; text-align: center; font-size: 1.5em; border-bottom: 2px solid var(--border); padding-bottom: 15px;
} .rules-section { margin-bottom: 25px;
} .rules-section h4 { color: var(--dark); margin-bottom: 15px; font-size: 1.2em; display: flex; align-items: center; gap: 10px;
} .rules-section h4 i { font-size: 1.1em;
} .rules-section:nth-child(2) h4 i { color: #27ae60;
} .rules-section:nth-child(3) h4 i { color: #e74c3c;
} .rules-section:nth-child(4) h4 i { color: #f39c12;
} .rules-list { list-style: none; padding-left: 0;
} .rules-list li { padding: 8px 0; padding-left: 25px; position: relative; color: var(--dark); line-height: 1.6;
} .rules-list li:before { content: "•"; color: var(--primary); font-weight: bold; position: absolute; left: 10px;
} @media (max-width: 768px) { .popup-content { margin: 5% auto; width: 95%; max-height: 85vh; } .president-message, .rules-content { padding: 20px; } .president-header { flex-direction: column; text-align: center; gap: 15px; } .president-photo { width: 70px; height: 70px; } .president-photo-placeholder { width: 70px; height: 70px; font-size: 1.7em; } .popup-close { font-size: 24px; top: 10px; right: 15px; } .rules-content h3 { font-size: 1.3em; } .rules-section h4 { font-size: 1.1em; }
} @media (max-width: 480px) { .popup-content { margin: 2% auto; width: 98%; } .president-message, .rules-content { padding: 15px; } .president-photo { width: 60px; height: 60px; } .president-photo-placeholder { width: 60px; height: 60px; font-size: 1.5em; }
} .password-policy { background: #f8f9fa; border: 1px solid #e9ecef; border-radius: 6px; padding: 12px; margin-top: 8px; font-size: 0.875rem; display: none; } .policy-header { font-weight: 600; margin-bottom: 8px; color: #495057;
} .policy-item { display: flex; align-items: center; margin-bottom: 4px; transition: color 0.3s ease;
} .policy-item:last-child { margin-bottom: 0;
} .policy-icon { margin-right: 8px; font-size: 0.75rem; width: 16px; text-align: center; display: inline-block;
} .policy-icon::before { content: "⭕"; color: #6c757d;
} .policy-item.valid .policy-icon::before { content: "✅"; color: #28a745;
} .policy-item.invalid .policy-icon::before { content: "❌"; color: #dc3545;
} .policy-item.valid { color: #28a745;
} .policy-item.invalid { color: #dc3545;
} .strength-meter-label { font-size: 0.875rem; font-weight: 500; margin-bottom: 4px; color: #495057;
} .strength-meter { width: 100%; height: 8px; background-color: #e9ecef; border-radius: 4px; overflow: hidden; margin-bottom: 4px;
} .strength-meter-fill { height: 100%; width: 0%; transition: width 0.3s ease, background-color 0.3s ease; border-radius: 4px;
} .strength-text { font-size: 0.875rem; font-weight: 500; text-align: center;
} .strength-weak { background-color: #dc3545; width: 25%;
} .strength-fair { background-color: #fd7e14; width: 50%;
} .strength-good { background-color: #ffc107; width: 75%;
} .strength-strong { background-color: #28a745; width: 100%;
} .strength-text.weak { color: #dc3545;
} .strength-text.fair { color: #fd7e14;
} .strength-text.good { color: #ffc107;
} .strength-text.strong { color: #28a745;
} @media (max-width: 768px) { .password-policy { padding: 10px; font-size: 0.8rem; } .policy-item { margin-bottom: 6px; } .strength-meter-label, .strength-text { font-size: 0.8rem; } .strength-meter { height: 6px; }
} .validation-message { font-size: 0.875rem; margin-top: 0.25rem; padding: 0.375rem 0.75rem; border-radius: 0.25rem; animation: fadeIn 0.3s ease-in-out;
} .validation-message.error { color: #dc3545; background-color: #f8d7da; border: 1px solid #f5c6cb;
} .validation-message.error:focus { outline: 2px solid #dc3545; outline-offset: 2px;
} .validation-message.success { color: #155724; background-color: #d4edda; border: 1px solid #c3e6cb;
} .validation-message.warning { color: #856404; background-color: #fff3cd; border: 1px solid #ffeeba;
} @keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); }
} @keyframes validationPulse { 0% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.02); opacity: 0.9; } 100% { transform: scale(1); opacity: 1; }
} #registerFlatSize { background-color: #f5f5f5 !important; cursor: not-allowed !important; color: #6c757d; font-weight: 500;
} #flatSizeDisplay { transition: all 0.3s ease-in-out;
} #flatSizeDisplay.show { opacity: 1; transform: translateY(0);
} #pendingPaymentsModal .modal { animation: modalSlideIn 0.3s ease-out;
} #pendingPaymentsModal .pending-payment-item { background: #f8f9fa; border: 1px solid #e9ecef; border-radius: 8px; padding: 15px; margin-bottom: 10px; transition: all 0.2s ease;
} #pendingPaymentsModal .pending-payment-item:hover { background: #e9ecef; transform: translateY(-1px); box-shadow: 0 2px 8px rgba(0,0,0,0.1);
} #pendingPaymentsModal .payment-type-badge { display: inline-block; padding: 4px 8px; border-radius: 12px; font-size: 0.75em; font-weight: 500; text-transform: uppercase; margin-right: 10px;
} #pendingPaymentsModal .payment-type-maintenance { background: #e3f2fd; color: #1565c0;
} #pendingPaymentsModal .payment-type-water { background: #e8f5e8; color: #2e7d32;
} #pendingPaymentsModal .payment-type-electricity { background: #fff3e0; color: #ef6c00;
} #pendingPaymentsModal .payment-type-security { background: #fce4ec; color: #c2185b;
} #pendingPaymentsModal .payment-amount { font-weight: 600; color: #dc3545; font-size: 1.1em;
} #pendingPaymentsModal .payment-date { color: #6c757d; font-size: 0.9em;
} #pendingPaymentsModal .overdue-badge { background: #dc3545; color: white; padding: 2px 6px; border-radius: 4px; font-size: 0.7em; font-weight: 500; margin-left: 8px;
} #pendingPaymentsModal .penalty-breakdown { background: #fff3cd; border: 1px solid #ffeaa7; border-radius: 4px; padding: 8px; margin-top: 8px; font-size: 0.85em; color: #856404;
} #pendingPaymentsModal .penalty-breakdown .penalty-item { display: flex; justify-content: space-between; margin-bottom: 2px;
} #pendingPaymentsModal .penalty-breakdown .penalty-item:last-child { margin-bottom: 0;
} #pendingPaymentsModal .penalty-note { font-size: 0.8em; color: #dc3545; margin-top: 4px; font-style: italic;
} #pendingPaymentsModal .total-amount { font-size: 1.3em; font-weight: 700; color: #dc3545;
} @keyframes modalSlideIn { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); }
} @media (max-width: 768px) { #pendingPaymentsModal .modal { margin: 10px; max-width: calc(100% - 20px); } #pendingPaymentsModal .modal-body > div:last-child { flex-direction: column; } #pendingPaymentsModal .modal-body > div:last-child button { width: 100%; margin-bottom: 10px; }
} .maintenance-staff-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-top: 1rem;
} .staff-card { background: white; border-radius: 8px; padding: 1.5rem; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid #e9ecef;
} .staff-card:hover { transform: translateY(-5px); box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
} .staff-avatar { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); display: flex; align-items: center; justify-content: center; color: white; font-size: 1.5rem; font-weight: bold; margin-bottom: 1rem;
} .staff-name { font-size: 1.3rem; color: #333; margin-bottom: 0.5rem; font-weight: 600;
} .staff-position { color: #666; font-size: 1rem; margin-bottom: 1rem; font-weight: 500;
} .staff-contact { margin-bottom: 1rem;
} .staff-contact p { margin: 0.5rem 0; color: #555; font-size: 0.9rem;
} .staff-specializations { display: flex; flex-wrap: wrap; gap: 0.5rem;
} .specialization-badge { background: #e9ecef; color: #495057; padding: 0.25rem 0.75rem; border-radius: 20px; font-size: 0.8rem; font-weight: 500;
} .empty-state { text-align: center; color: #666; font-style: italic; padding: 3rem; background: #f8f9fa; border-radius: 8px; border: 2px dashed #dee2e6;
} .staff-loading { text-align: center; padding: 3rem; color: #666;
} .staff-loading .fa-spinner { font-size: 2rem; margin-bottom: 1rem;
} #maintenanceStaffModal .modal-body { padding: 1.5rem;
} #maintenanceStaffModal .modal { border-radius: 12px;
} #maintenanceStaffModal .modal-header { border-bottom: 1px solid #e9ecef; padding-bottom: 1rem;
} #maintenanceStaffModal .modal-title { color: #333; font-size: 1.5rem; font-weight: 600;
} @media (max-width: 768px) { .maintenance-staff-grid { grid-template-columns: 1fr; gap: 1rem; } .staff-card { padding: 1rem; } .staff-avatar { width: 50px; height: 50px; font-size: 1.2rem; } .staff-name { font-size: 1.1rem; } .staff-position { font-size: 0.9rem; } #maintenanceStaffModal .modal { max-width: 95%; margin: 1rem; }
} @media (max-width: 480px) { .maintenance-staff-grid { gap: 0.75rem; } .staff-card { padding: 0.75rem; } .staff-avatar { width: 40px; height: 40px; font-size: 1rem; } .staff-name { font-size: 1rem; } .staff-position { font-size: 0.85rem; } .staff-contact p { font-size: 0.8rem; } .specialization-badge { font-size: 0.75rem; padding: 0.2rem 0.6rem; }
} .specializations-container { background: #ffffff; border: 1px solid #ddd; border-radius: 6px; padding: 12px; max-height: 160px; overflow-y: auto; transition: border-color 0.3s ease;
} .specializations-container:focus-within { border-color: var(--primary); box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
} .specialization-item { display: flex; align-items: center; padding: 6px 0; transition: background-color 0.2s ease; border-radius: 4px; margin-bottom: 4px;
} .specialization-item:last-child { margin-bottom: 0;
} .specialization-item:hover { background-color: #f8f9fa;
} .specialization-item input[type="checkbox"] { margin-right: 10px; width: 16px; height: 16px; accent-color: var(--primary); cursor: pointer;
} .specialization-item label { margin: 0; cursor: pointer; flex: 1; font-size: 0.95rem; color: #333; padding: 2px 0; transition: color 0.2s ease;
} .specialization-item:hover label { color: var(--primary);
} .specialization-item input[type="checkbox"]:checked + label { font-weight: 500; color: var(--primary);
} .specializations-container::-webkit-scrollbar { width: 6px;
} .specializations-container::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 3px;
} .specializations-container::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px;
} .specializations-container::-webkit-scrollbar-thumb:hover { background: #bbb;
} .contact-form select.form-control { appearance: none; -webkit-appearance: none; -moz-appearance: none; background-color: white; background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 20px; padding-right: 40px; cursor: pointer;
} .contact-form select.form-control:hover { border-color: #ccc;
} .contact-form select.form-control:focus { border-color: var(--primary); outline: none; box-shadow: 0 0 0 3px rgba(179, 0, 0, 0.2); background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23b30000'%3E%3Cpath d='M7 10l5 5 5-5H7z'/%3E%3C/svg%3E");
} .contact-form select.form-control option { padding: 8px 12px; font-size: 1rem; color: var(--dark); background: var(--white);
} .contact-form select.form-control::-ms-expand { display: none;
} @media (max-width: 768px) { .contact-form select.form-control { background-size: 18px; padding-right: 35px; }
} .president-photo { width: 100px; height: 100px; border-radius: 50%; overflow: hidden; border: 3px solid var(--primary); box-shadow: 0 4px 15px rgba(179, 0, 0, 0.2); margin-right: 20px; flex-shrink: 0;
} .president-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center;
} .gallery-item { position: relative; overflow: hidden; border-radius: 12px; transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer;
} .gallery-item:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
} .gallery-item img { width: 100%; height: 250px; object-fit: cover; transition: transform 0.3s ease;
} .gallery-item:hover img { transform: scale(1.05);
} .gallery-item.loaded { opacity: 1;
} .image-preview-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.9); display: flex; align-items: center; justify-content: center; z-index: 10000; transition: opacity 0.3s ease;
} .image-preview-content { position: relative; max-width: 90%; max-height: 90%; text-align: center;
} .image-preview-content img { max-width: 100%; max-height: 80vh; object-fit: contain; border-radius: 8px; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
} .image-preview-close { position: absolute; top: -50px; right: -10px; color: white; font-size: 36px; cursor: pointer; font-weight: bold; transition: color 0.3s ease;
} .image-preview-close:hover { color: var(--primary);
} .image-preview-caption { color: white; margin-top: 15px; font-size: 1.1rem; font-weight: 500;
} .btn + .btn { margin-left: 15px;
} @media (max-width: 768px) { .president-photo { width: 80px; height: 80px; margin-right: 15px; } .gallery-item img { height: 200px; } .btn + .btn { margin-left: 0; margin-top: 10px; display: block; width: 100%; } .image-preview-close { top: -40px; font-size: 30px; }
} @media (max-width: 480px) { .president-photo { width: 70px; height: 70px; margin-right: 10px; } .gallery-item img { height: 180px; } .image-preview-content { max-width: 95%; max-height: 95%; }
} @media screen and (max-width: 768px) { html, body { width: 100% !important; overflow-x: hidden !important; font-size: 12px !important; } @supports (-webkit-touch-callout: none) { html, body { -webkit-text-size-adjust: 100% !important; -ms-text-size-adjust: 100% !important; } } .mobile-menu { display: block !important; position: relative !important; z-index: 1000 !important; cursor: pointer !important; width: 30px !important; height: 25px !important; flex-direction: column !important; justify-content: space-between !important; align-items: center !important; } .nav-links { display: none !important; position: absolute !important; top: 100% !important; left: 0 !important; right: 0 !important; background: var(--secondary) !important; flex-direction: column !important; padding: 0 !important; margin: 0 !important; box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important; z-index: 1001 !important; } .nav-links.show, .nav-links.mobile-active, .nav-links.active { display: flex !important; } .nav-links a { display: none !important; width: 100% !important; padding: 10px 20px !important; margin: 0 !important; text-align: center !important; font-size: 10px !important; line-height: 1.2 !important; border-bottom: 1px solid rgba(255,255,255,0.1) !important; color: white !important; text-decoration: none !important; transition: background-color 0.3s ease !important; } .nav-links a:last-child { border-bottom: none !important; } .nav-links a:hover { background-color: rgba(255,255,255,0.1) !important; } .nav-links .login-btn { display: block !important; background: var(--primary) !important; color: white !important; font-weight: 600 !important; border-radius: 0 !important; margin: 0 !important; text-align: center !important; } .nav-links .login-btn:hover { background: rgba(179, 0, 0, 0.8) !important; } .user-menu { position: relative !important; align-items: center !important; justify-content: center !important; z-index: 1049 !important; } .user-menu[style*="display: none"] { display: none !important; } .user-menu:not([style*="display: none"]) { display: flex !important; } .user-dropdown { position: absolute !important; top: 100% !important; right: 0 !important; left: auto !important; background: white !important; border: 1px solid #ddd !important; border-radius: 8px !important; box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important; z-index: 1050 !important; min-width: 130px !important; max-width: 160px !important; width: max-content !important; padding: 2px 0 !important; margin-top: 3px !important; transform: translateX(-2px) !important; display: none !important; max-height: calc(100vh - 150px) !important; overflow-y: visible !important; } .user-dropdown.active { display: block !important; } .user-dropdown a { display: flex !important; align-items: center !important; gap: 4px !important; padding: 6px 8px !important; color: #333 !important; text-decoration: none !important; font-size: 11px !important; line-height: 1.1 !important; border-bottom: none !important; transition: background-color 0.3s ease !important; white-space: nowrap !important; } .user-dropdown a:hover { background-color: #f8f9fa !important; color: var(--primary) !important; } .user-dropdown hr { margin: 4px 0 !important; border: none !important; border-top: 1px solid #eee !important; } #logoutButton { color: #dc3545 !important; font-weight: 500 !important; } #logoutButton:hover { background-color: rgba(220, 53, 69, 0.1) !important; color: #dc3545 !important; } .modal-overlay { padding: 10px !important; display: flex !important; align-items: center !important; justify-content: center !important; min-height: 100vh !important; } .modal { width: 95% !important; max-width: 360px !important; margin: 0 auto !important; max-height: 90vh !important; overflow: hidden !important; display: flex !important; flex-direction: column !important; } .modal-body { padding: 15px !important; overflow-y: auto !important; max-height: calc(90vh - 100px) !important; flex: 1 !important; } .modal-tabs { display: flex !important; flex-wrap: nowrap !important; margin-bottom: 15px !important; flex-shrink: 0 !important; } .modal-tab { flex: 1 !important; text-align: center !important; padding: 8px 4px !important; font-size: 12px !important; min-width: 80px !important; border: none !important; cursor: pointer !important; } .form-row { margin-bottom: 10px !important; } .form-control { width: 100% !important; padding: 8px !important; font-size: 14px !important; border: 1px solid #ddd !important; border-radius: 4px !important; box-sizing: border-box !important; } .form-label { display: block !important; margin-bottom: 3px !important; font-size: 12px !important; font-weight: 500 !important; } .form-submit, .modal .btn, .modal button[type="submit"] { width: 100% !important; padding: 10px !important; font-size: 14px !important; font-weight: 600 !important; border-radius: 4px !important; border: none !important; cursor: pointer !important; text-align: center !important; margin: 6px 0 !important; min-height: 40px !important; touch-action: manipulation !important; background: var(--primary) !important; color: white !important; transition: all 0.3s ease !important; } .form-submit:hover, .modal .btn:hover, .modal button[type="submit"]:hover { background: rgba(179, 0, 0, 0.9) !important; transform: translateY(-1px) !important; } .form-row[style*="display: flex"] { display: flex !important; flex-direction: column !important; gap: 8px !important; align-items: stretch !important; } .form-row[style*="justify-content: space-between"] { justify-content: flex-start !important; flex-direction: column !important; align-items: flex-start !important; } .form-row[style*="justify-content: space-between"] label, .form-row[style*="justify-content: space-between"] a { margin-bottom: 8px !important; font-size: 13px !important; width: 100% !important; } .form-row[style*="justify-content: space-between"] label { display: flex !important; align-items: center !important; gap: 8px !important; margin-bottom: 8px !important; } .form-row[style*="justify-content: space-between"] input[type="checkbox"] { width: 18px !important; height: 18px !important; margin: 0 !important; min-width: 18px !important; min-height: 18px !important; } .form-footer { text-align: center !important; margin-top: 10px !important; font-size: 12px !important; line-height: 1.3 !important; flex-shrink: 0 !important; } .form-footer a { color: var(--primary) !important; text-decoration: none !important; font-weight: 500 !important; } .modal-close { font-size: 20px !important; padding: 8px !important; min-width: 40px !important; min-height: 40px !important; line-height: 1 !important; } #register-content .modal-body { padding: 8px !important; max-height: calc(90vh - 60px) !important; overflow-y: auto !important; } #registerForm input[type="text"], #registerForm input[type="email"], #registerForm input[type="tel"], #registerForm input[type="password"], #registerForm input[type="date"], #registerForm select, #registerForm textarea { width: 100% !important; max-width: 100% !important; padding: 8px !important; font-size: 14px !important; line-height: 1.4 !important; border: 1px solid #ddd !important; border-radius: 4px !important; box-sizing: border-box !important; margin: 0 !important; background: white !important; color: #333 !important; outline: none !important; -webkit-appearance: none !important; -moz-appearance: none !important; appearance: none !important; transition: border-color 0.3s ease !important; } #registerForm input:focus { border-color: var(--primary) !important; box-shadow: 0 0 0 2px rgba(179, 0, 0, 0.1) !important; } #registerForm .form-label { display: block !important; margin-bottom: 3px !important; margin-top: 0 !important; font-size: 12px !important; font-weight: 500 !important; color: #333 !important; line-height: 1.2 !important; } #registerForm .form-row { margin-bottom: 10px !important; width: 100% !important; box-sizing: border-box !important; } #registerForm input[type="checkbox"] { width: 12px !important; height: 12px !important; margin: 0 6px 0 0 !important; vertical-align: top !important; accent-color: var(--primary) !important; flex-shrink: 0 !important; } #registerForm .form-row label:has(input[type="checkbox"]), #registerForm .form-row > label { display: flex !important; align-items: flex-start !important; gap: 6px !important; margin-bottom: 0 !important; font-size: 12px !important; line-height: 1.3 !important; cursor: pointer !important; width: 100% !important; } #registerForm label:has(#isTenantRegister) { margin-bottom: 8px !important; } #registerForm label:has(#agreeTerms) { margin-bottom: 10px !important; } #registerForm .red-text { color: var(--primary) !important; text-decoration: none !important; font-weight: 500 !important; } .password-policy { background: #f8f9fa !important; border: 1px solid #e9ecef !important; border-radius: 3px !important; padding: 6px !important; font-size: 10px !important; margin-top: 4px !important; } .policy-header { font-weight: 600 !important; margin-bottom: 3px !important; color: #333 !important; font-size: 10px !important; } .policy-item { display: flex !important; align-items: center !important; gap: 4px !important; margin-bottom: 1px !important; font-size: 9px !important; line-height: 1.1 !important; } .policy-icon::before { content: "○" !important; color: #dc3545 !important; font-size: 8px !important; } .policy-item.valid .policy-icon::before { content: "✓" !important; color: #28a745 !important; font-weight: bold !important; font-size: 8px !important; } .strength-meter { width: 100% !important; height: 4px !important; background: #e9ecef !important; border-radius: 2px !important; overflow: hidden !important; margin: 3px 0 !important; } .strength-meter-fill { height: 100% !important; width: 0% !important; transition: width 0.3s ease, background-color 0.3s ease !important; border-radius: 2px !important; } .strength-meter-label, .strength-text { font-size: 9px !important; margin: 1px 0 !important; } #registerForm .validation-message { font-size: 11px !important; margin-top: 2px !important; margin-bottom: 0 !important; padding: 2px 4px !important; border-radius: 3px !important; line-height: 1.2 !important; display: block !important; width: 100% !important; box-sizing: border-box !important; } #registerForm .form-text, #registerForm .text-muted, #registerForm small { font-size: 10px !important; color: #6c757d !important; margin-top: 2px !important; margin-bottom: 0 !important; line-height: 1.2 !important; display: block !important; } #tenantFieldsRegister { border-top: 1px solid #e9ecef !important; padding-top: 10px !important; margin-top: 8px !important; } #registerForm .form-submit, #registerForm button[type="submit"] { width: 100% !important; padding: 10px !important; font-size: 14px !important; font-weight: 600 !important; margin: 6px 0 !important; min-height: 40px !important; touch-action: manipulation !important; background: var(--primary) !important; color: white !important; border: none !important; border-radius: 4px !important; cursor: pointer !important; box-sizing: border-box !important; text-align: center !important; transition: all 0.3s ease !important; } #registerForm .form-submit:hover, #registerForm button[type="submit"]:hover { background: rgba(179, 0, 0, 0.9) !important; transform: translateY(-1px) !important; } #registerForm .form-footer { text-align: center !important; margin-top: 8px !important; font-size: 12px !important; line-height: 1.3 !important; } #registerForm .form-footer a { color: var(--primary) !important; text-decoration: none !important; font-weight: 500 !important; } .hero { min-height: 60vh !important; padding: 20px 15px !important; } .hero-content { max-width: 100% !important; padding: 15px !important; text-align: center !important; } .mobile-newsletter-link { display: block !important; margin-bottom: 15px !important; text-align: center !important; } .btn-newsletter-mobile { display: inline-flex !important; align-items: center !important; justify-content: center !important; gap: 8px !important; padding: 8px 0 !important; background: transparent !important; color: white !important; text-decoration: none !important; font-size: 14px !important; font-weight: 700 !important; position: relative !important; border: none !important; text-shadow: -1px -1px 0 #b30000, 1px -1px 0 #b30000, -1px 1px 0 #b30000, 1px 1px 0 #b30000, 0 0 10px #ffff00, 0 0 20px #ffff00, 0 0 30px #ffff00 !important; animation: trippingLights 2s infinite alternate !important; } @keyframes trippingLights { 0% { text-shadow: -1px -1px 0 #b30000, 1px -1px 0 #b30000, -1px 1px 0 #b30000, 1px 1px 0 #b30000, 0 0 5px #ffff00, 0 0 10px #ffff00, 0 0 15px #ffff00; transform: scale(1); } 25% { text-shadow: -1px -1px 0 #b30000, 1px -1px 0 #b30000, -1px 1px 0 #b30000, 1px 1px 0 #b30000, 0 0 10px #ffff00, 0 0 20px #ffff00, 0 0 30px #ffff00, 0 0 40px #ffff00; transform: scale(1.02); } 50% { text-shadow: -1px -1px 0 #b30000, 1px -1px 0 #b30000, -1px 1px 0 #b30000, 1px 1px 0 #b30000, 0 0 15px #ffff00, 0 0 25px #ffff00, 0 0 35px #ffff00, 0 0 45px #ffff00; transform: scale(1.05); } 75% { text-shadow: -1px -1px 0 #b30000, 1px -1px 0 #b30000, -1px 1px 0 #b30000, 1px 1px 0 #b30000, 0 0 20px #ffff00, 0 0 30px #ffff00, 0 0 40px #ffff00, 0 0 50px #ffff00; transform: scale(1.03); } 100% { text-shadow: -1px -1px 0 #b30000, 1px -1px 0 #b30000, -1px 1px 0 #b30000, 1px 1px 0 #b30000, 0 0 25px #ffff00, 0 0 35px #ffff00, 0 0 45px #ffff00, 0 0 55px #ffff00; transform: scale(1.06); } } .btn-newsletter-mobile:hover { animation-duration: 0.5s !important; text-shadow: -2px -2px 0 #b30000, 2px -2px 0 #b30000, -2px 2px 0 #b30000, 2px 2px 0 #b30000, 0 0 30px #ffff00, 0 0 40px #ffff00, 0 0 50px #ffff00, 0 0 60px #ffff00 !important; } .btn-newsletter-mobile i { font-size: 14px !important; color: white !important; text-shadow: -1px -1px 0 #b30000, 1px -1px 0 #b30000, -1px 1px 0 #b30000, 1px 1px 0 #b30000, 0 0 10px #ffff00, 0 0 20px #ffff00 !important; animation: iconGlow 2s infinite alternate !important; } @keyframes iconGlow { 0% { text-shadow: -1px -1px 0 #b30000, 1px -1px 0 #b30000, -1px 1px 0 #b30000, 1px 1px 0 #b30000, 0 0 5px #ffff00, 0 0 10px #ffff00; transform: scale(1); } 50% { text-shadow: -1px -1px 0 #b30000, 1px -1px 0 #b30000, -1px 1px 0 #b30000, 1px 1px 0 #b30000, 0 0 15px #ffff00, 0 0 25px #ffff00, 0 0 35px #ffff00; transform: scale(1.1); } 100% { text-shadow: -1px -1px 0 #b30000, 1px -1px 0 #b30000, -1px 1px 0 #b30000, 1px 1px 0 #b30000, 0 0 20px #ffff00, 0 0 30px #ffff00, 0 0 40px #ffff00; transform: scale(1.15); } } .btn-newsletter-mobile:hover i { animation-duration: 0.3s !important; text-shadow: -2px -2px 0 #b30000, 2px -2px 0 #b30000, -2px 2px 0 #b30000, 2px 2px 0 #b30000, 0 0 25px #ffff00, 0 0 35px #ffff00, 0 0 45px #ffff00 !important; } .btn-newsletter-mobile span { font-size: 14px !important; color: white !important; text-shadow: -1px -1px 0 #b30000, 1px -1px 0 #b30000, -1px 1px 0 #b30000, 1px 1px 0 #b30000 !important; } .hero-subtitle { font-size: 14px !important; margin-bottom: 8px !important; } .hero-description { font-size: 12px !important; line-height: 1.4 !important; margin-bottom: 15px !important; } .hero-stats { display: flex !important; flex-direction: row !important; gap: 8px !important; align-items: center !important; justify-content: center !important; margin: 15px 0 !important; flex-wrap: wrap !important; } .stat-item { display: flex !important; flex-direction: column !important; align-items: center !important; text-align: center !important; padding: 6px 8px !important; background: rgba(255, 255, 255, 0.1) !important; border-radius: 6px !important; backdrop-filter: blur(10px) !important; width: auto !important; min-width: 80px !important; max-width: 90px !important; flex: 0 0 auto !important; } .stat-item:nth-child(3) { min-width: 85px !important; max-width: 95px !important; min-height: 78px !important; padding: 8px 6px !important; } .stat-icon { display: flex !important; align-items: center !important; justify-content: center !important; width: 24px !important; height: 24px !important; background: var(--primary) !important; border-radius: 50% !important; margin-bottom: 4px !important; } .stat-icon i { font-size: 12px !important; color: white !important; } .stat-number { font-size: 14px !important; font-weight: bold !important; color: white !important; margin-bottom: 2px !important; line-height: 1 !important; } .stat-item:nth-child(3) .stat-number { font-size: 12px !important; letter-spacing: -0.8px !important; line-height: 0.9 !important; } .stat-label { font-size: 9px !important; color: rgba(255, 255, 255, 0.8) !important; text-align: center !important; line-height: 1.1 !important; word-break: break-word !important; } .hero-content h1 { font-size: 24px !important; line-height: 1.2 !important; margin-bottom: 8px !important; } .hero-content h1 span { font-size: 28px !important; color: var(--primary) !important; font-weight: 700 !important; } .hero-buttons { display: flex !important; flex-direction: column !important; gap: 12px !important; align-items: center !important; margin-top: 20px !important; width: 100% !important; } .hero-buttons .btn { width: 85% !important; max-width: 220px !important; padding: 12px 16px !important; font-size: 13px !important; border-radius: 6px !important; text-align: center !important; display: flex !important; align-items: center !important; justify-content: center !important; gap: 6px !important; margin: 0 auto !important; box-sizing: border-box !important; height: 44px !important; min-height: 44px !important; } .hero-buttons .btn i { font-size: 12px !important; } .hero-buttons .btn span { font-size: 13px !important; font-weight: 600 !important; } html body .hero .hero-buttons .btn.btn-outline, html body .hero-buttons .btn.btn-outline, html body .hero-content .hero-buttons .btn.btn-outline, html body button.btn.btn-outline[onclick*="showPresidentMessage"], html body .hero button.btn-outline, html body .hero .hero-buttons button.btn-outline { background: #b30000 !important; background-color: #b30000 !important; border: 2px solid #b30000 !important; border-color: #b30000 !important; color: white !important; opacity: 1 !important; fill: #b30000 !important; -webkit-background-clip: border-box !important; background-clip: border-box !important; background-image: none !important; background-origin: padding-box !important; } html body .hero .hero-buttons .btn.btn-outline:hover, html body .hero-buttons .btn.btn-outline:hover, html body .hero-content .hero-buttons .btn.btn-outline:hover, html body button.btn.btn-outline[onclick*="showPresidentMessage"]:hover, html body .hero button.btn-outline:hover, html body .hero .hero-buttons button.btn-outline:hover { background: rgba(179, 0, 0, 0.9) !important; background-color: rgba(179, 0, 0, 0.9) !important; border-color: rgba(179, 0, 0, 0.9) !important; color: white !important; opacity: 1 !important; } html body .hero .hero-buttons .btn.btn-outline::before, html body .hero .hero-buttons .btn.btn-outline::after, html body button.btn.btn-outline[onclick*="showPresidentMessage"]::before, html body button.btn.btn-outline[onclick*="showPresidentMessage"]::after { background: transparent !important; box-shadow: none !important; opacity: 0 !important; display: none !important; } html body .hero-buttons .btn-outline { --btn-bg: #b30000 !important; --btn-border: #b30000 !important; --btn-color: white !important; --primary: #b30000 !important; --secondary: #b30000 !important; --white: white !important; } @media screen and (max-width: 768px) { button[onclick*="showPresidentMessage"][class*="btn-outline"], .hero-buttons > button[class*="btn-outline"], .hero button[class*="outline"] { background: #b30000 !important; background-color: #b30000 !important; border: 2px solid #b30000 !important; color: white !important; opacity: 1 !important; visibility: visible !important; display: flex !important; -webkit-appearance: none !important; appearance: none !important; } .hero-buttons, .hero-content { opacity: 1 !important; } button[onclick*="showPresidentMessage"] { filter: none !important; transform: none !important; -webkit-filter: none !important; -webkit-transform: none !important; } } table, .admin-table, .payment-table, .booking-table, .maintenance-table { width: 100% !important; display: block !important; overflow-x: auto !important; white-space: nowrap !important; border-collapse: collapse !important; margin-bottom: 20px !important; font-size: 12px !important; } table thead, .admin-table thead { display: block !important; } table tbody, .admin-table tbody { display: block !important; } table tr, .admin-table tr { display: block !important; border-bottom: 1px solid #eee !important; margin-bottom: 10px !important; padding: 10px 0 !important; } table th, table td, .admin-table th, .admin-table td { display: block !important; text-align: left !important; padding: 8px 0 !important; border: none !important; word-wrap: break-word !important; white-space: normal !important; max-width: 100% !important; } table th::before, .admin-table th::before { content: attr(data-label) ": " !important; font-weight: bold !important; color: #333 !important; display: inline-block !important; width: 120px !important; margin-right: 10px !important; } table td::before, .admin-table td::before { content: attr(data-label) ": " !important; font-weight: bold !important; color: #666 !important; display: inline-block !important; width: 120px !important; margin-right: 10px !important; } #residentPaymentHistory table th::before, #residentPaymentHistory table td::before { content: none !important; } .payment-summary-cards, .resident-payment-summary { display: flex !important; flex-direction: column !important; gap: 12px !important; grid-template-columns: unset !important; padding: 0 5px !important; } .summary-card { padding: 12px !important; margin-bottom: 8px !important; border-radius: 6px !important; text-align: center !important; background: white !important; box-shadow: 0 1px 3px rgba(0,0,0,0.08) !important; border: 1px solid #f0f0f0 !important; } .summary-card h4 { font-size: 12px !important; margin: 4px 0 !important; color: #666 !important; text-transform: uppercase !important; letter-spacing: 0.5px !important; } .summary-card p { font-size: 16px !important; font-weight: bold !important; margin: 3px 0 !important; color: var(--primary) !important; } #addPaymentForm, #editPaymentForm { padding: 15px !important; margin: 15px 0 !important; border-radius: 8px !important; } #addPaymentForm form > div, #editPaymentForm form > div { display: flex !important; flex-direction: column !important; gap: 15px !important; grid-template-columns: unset !important; } #addPaymentForm div[style*="grid-column: span 2"], #editPaymentForm div[style*="grid-column: span 2"] { grid-column: unset !important; } #addPaymentForm input, #addPaymentForm select, #addPaymentForm textarea, #editPaymentForm input, #editPaymentForm select, #editPaymentForm textarea { width: 100% !important; padding: 12px !important; font-size: 14px !important; border: 1px solid #ddd !important; border-radius: 6px !important; box-sizing: border-box !important; } #addPaymentForm label, #editPaymentForm label { font-size: 14px !important; font-weight: 500 !important; margin-bottom: 5px !important; display: block !important; } .pending-dues-section { padding: 15px !important; margin: 15px 0 !important; border-radius: 8px !important; overflow-x: auto !important; } #pendingDuesTable { overflow-x: auto !important; width: 100% !important; } .payment-history-section { padding: 15px !important; margin: 15px 0 !important; border-radius: 8px !important; overflow-x: auto !important; } #residentPaymentHistory { overflow-x: auto !important; width: 100% !important; } #residentPaymentHistory table { min-width: 100% !important; font-size: 11px !important; line-height: 1.3 !important; } #residentPaymentHistory th { padding: 8px 4px !important; font-size: 10px !important; font-weight: 600 !important; text-align: center !important; white-space: nowrap !important; } #residentPaymentHistory td { padding: 8px 4px !important; font-size: 10px !important; line-height: 1.2 !important; vertical-align: middle !important; text-align: center !important; } #residentPaymentHistory table { border-collapse: separate !important; border-spacing: 0 8px !important; background: transparent !important; } #residentPaymentHistory tr { background: #f8f9fa !important; border-radius: 8px !important; box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important; } #residentPaymentHistory tr td:first-child { border-top-left-radius: 8px !important; border-bottom-left-radius: 8px !important; } #residentPaymentHistory tr td:last-child { border-top-right-radius: 8px !important; border-bottom-right-radius: 8px !important; } #residentPaymentHistory tr td div[style*="font-weight: 500"] { font-size: 11px !important; margin-bottom: 2px !important; } #residentPaymentHistory tr td div[style*="font-size: 0.8rem"] { font-size: 9px !important; } #residentPaymentHistory tr td div[style*="flex-direction: column"] { gap: 2px !important; } #residentPaymentHistory tr td span[style*="font-weight: bold"] { font-size: 11px !important; } #residentPaymentHistory tr td span[style*="border-radius: 4px"] { padding: 2px 6px !important; font-size: 9px !important; display: inline-block !important; } .booking-form, .booking-list { padding: 15px !important; margin: 15px 0 !important; border-radius: 8px !important; } .booking-card { margin-bottom: 15px !important; padding: 15px !important; border-radius: 8px !important; border: 1px solid #eee !important; } .maintenance-form, .maintenance-list { padding: 15px !important; margin: 15px 0 !important; border-radius: 8px !important; } .maintenance-card { margin-bottom: 15px !important; padding: 15px !important; border-radius: 8px !important; border: 1px solid #eee !important; } .profile-form { padding: 15px !important; margin: 15px 0 !important; border-radius: 8px !important; } .profile-form div[style*="grid-template-columns"] { display: flex !important; flex-direction: column !important; gap: 15px !important; } .profile-form input, .profile-form select, .profile-form textarea { width: 100% !important; padding: 12px !important; font-size: 14px !important; border: 1px solid #ddd !important; border-radius: 6px !important; box-sizing: border-box !important; } .profile-form button, .profile-form .btn, #dashboard-profile button, #dashboard-profile .btn { width: auto !important; max-width: 150px !important; padding: 8px 16px !important; font-size: 13px !important; margin: 10px 0 !important; } .profile-form .form-control, .profile-form input[readonly], .profile-form div[style*="padding"] { text-align: left !important; font-size: 13px !important; line-height: 1.3 !important; } html body .dashboard-content .dashboard-main #dashboard-payments .payment-actions, html body .dashboard-content .dashboard-main .payment-actions, html body .payment-actions { display: flex !important; flex-direction: column !important; gap: 10px !important; align-items: stretch !important; width: 100% !important; margin: 20px 0 !important; } html body .dashboard-content .dashboard-main #dashboard-payments .payment-actions .btn, html body .dashboard-content .dashboard-main #dashboard-payments .payment-actions button, html body .payment-actions button, html body .payment-actions .btn, html body button[onclick*="showPaymentHistory"], html body button[onclick*="markAsPaid"], html body button[onclick*="viewPaymentDetails"], html body button[onclick*="editPayment"], html body button[onclick*="deletePayment"] { width: 100% !important; margin-right: 0 !important; margin-left: 0 !important; margin-bottom: 8px !important; font-size: 14px !important; padding: 12px !important; text-align: center !important; display: block !important; box-sizing: border-box !important; border-radius: 6px !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; } html body .payment-actions button[style*="margin-right"], html body .dashboard button[style*="margin-right"], html body #dashboard-payments button[style*="margin-right"], html body button[style*="margin-right: 10px"], html body .payment-actions button[style*="margin-right"] { margin-right: 0 !important; } html body .dashboard-content .dashboard-main #dashboard-staff .staff-card { margin-bottom: 12px !important; padding: 15px !important; border-radius: 8px !important; } html body .dashboard-content .dashboard-main #dashboard-staff .staff-card .staff-header { flex-direction: column !important; align-items: flex-start !important; gap: 8px !important; } html body .dashboard-content .dashboard-main #dashboard-staff .staff-card h5 { font-size: 15px !important; line-height: 1.3 !important; word-wrap: break-word !important; max-width: 100% !important; } html body .dashboard-content .dashboard-main #dashboard-staff .staff-card .staff-body { margin-bottom: 12px !important; } html body .dashboard-content .dashboard-main #dashboard-staff .staff-card .staff-body > div { display: flex !important; flex-direction: column !important; gap: 10px !important; } html body .dashboard-content .dashboard-main #dashboard-staff .staff-card .staff-body > div > div { font-size: 12px !important; line-height: 1.5 !important; word-wrap: break-word !important; overflow-wrap: break-word !important; padding: 6px 0 !important; max-width: 100% !important; width: 100% !important; } html body .dashboard-content .dashboard-main #dashboard-staff .staff-card .staff-actions { display: flex !important; flex-direction: column !important; gap: 8px !important; } html body .dashboard-content .dashboard-main #dashboard-staff .staff-card .staff-actions button { width: 100% !important; font-size: 14px !important; padding: 10px !important; margin: 0 !important; margin-bottom: 8px !important; } .dashboard { margin-top: 70px !important; padding: 0 !important; } .dashboard .container { padding: 0 10px !important; max-width: 100% !important; } .dashboard-header { padding: 15px 0 !important; margin-bottom: 15px !important; } .dashboard-welcome { flex-direction: column !important; align-items: flex-start !important; text-align: left !important; } html body .dashboard-welcome h2 { font-size: 1.1rem !important; margin-bottom: 8px !important; line-height: 1.3 !important; } html body .dashboard-welcome p { font-size: 12px !important; margin: 0 !important; } .dashboard-content { grid-template-columns: 1fr !important; gap: 15px !important; display: flex !important; flex-direction: column !important; } .dashboard-main { order: 1 !important; margin-bottom: 20px !important; border-radius: 8px !important; } .dashboard-tabs { flex-wrap: wrap !important; gap: 0 !important; border-bottom: 1px solid #eee !important; } html body .dashboard-tab { flex: 1 !important; text-align: center !important; padding: 12px 8px !important; font-size: 12px !important; min-width: 80px !important; word-wrap: break-word !important; white-space: nowrap !important; overflow: hidden !important; text-overflow: ellipsis !important; } .dashboard-tab-content { padding: 15px !important; min-height: auto !important; } .dashboard-sidebar { order: 2 !important; position: static !important; width: 100% !important; margin-top: 0 !important; padding: 15px !important; border-radius: 8px !important; background: #fff !important; box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important; } .dashboard-sidebar.resident-only { display: block !important; } .sidebar-section { margin-bottom: 20px !important; } .sidebar-title { font-size: 1.1rem !important; margin-bottom: 12px !important; padding-bottom: 8px !important; border-bottom: 1px solid #eee !important; color: #333 !important; } .sidebar-links { list-style: none !important; padding: 0 !important; margin: 0 !important; } .sidebar-links li { margin-bottom: 8px !important; } html body .sidebar-links a { display: flex !important; align-items: center !important; gap: 10px !important; color: #555 !important; text-decoration: none !important; padding: 12px 15px !important; transition: all 0.3s ease !important; border-radius: 6px !important; background: #f8f9fa !important; font-size: 12px !important; word-wrap: break-word !important; overflow-wrap: break-word !important; } .sidebar-links a:hover { color: var(--primary) !important; background: rgba(179, 0, 0, 0.1) !important; } .sidebar-links i { color: var(--primary) !important; font-size: 16px !important; flex-shrink: 0 !important; } .dashboard * { word-wrap: break-word !important; overflow-wrap: break-word !important; max-width: 100% !important; } .dashboard-stats { grid-template-columns: 1fr !important; gap: 12px !important; margin-top: 15px !important; } .stat-card { padding: 15px !important; border-radius: 8px !important; } .stat-card .stat-info h3 { font-size: 1.2rem !important; margin-bottom: 5px !important; } .stat-card .stat-info p { font-size: 12px !important; } .admin-actions { flex-direction: column !important; gap: 10px !important; align-items: stretch !important; margin-bottom: 20px !important; } .admin-actions .btn { width: 100% !important; text-align: center !important; font-size: 14px !important; padding: 12px !important; margin: 0 0 8px 0 !important; } .form-container { padding: 15px !important; margin-bottom: 15px !important; border-radius: 8px !important; } .form-container h3, .form-container h4 { font-size: 1.2rem !important; margin-top: 0 !important; margin-bottom: 15px !important; } .form-container div[style*="grid-template-columns"], div[style*="grid-template-columns"] { display: flex !important; flex-direction: column !important; gap: 15px !important; } .form-container div[style*="grid-column: span 2"] { grid-column: unset !important; } .form-control, input[type="text"], input[type="email"], input[type="number"], input[type="date"], input[type="datetime-local"], select, textarea { width: 100% !important; padding: 10px !important; font-size: 14px !important; border: 1px solid #ddd !important; border-radius: 6px !important; box-sizing: border-box !important; } .btn, button { font-size: 14px !important; padding: 10px 16px !important; border-radius: 6px !important; width: auto !important; min-height: 44px !important; touch-action: manipulation !important; } .notice-card { margin-bottom: 15px !important; padding: 15px !important; border-radius: 8px !important; } .notice-card .notice-header { flex-direction: column !important; align-items: flex-start !important; gap: 8px !important; margin-bottom: 12px !important; } html body .notice-card .notice-title { font-size: 0.95rem !important; line-height: 1.3 !important; margin: 0 !important; } html body .notice-card .notice-date { font-size: 11px !important; color: #666 !important; } html body .notice-card .notice-content { font-size: 12px !important; line-height: 1.4 !important; margin-bottom: 12px !important; } .notice-card .notice-actions { display: flex !important; flex-direction: column !important; gap: 8px !important; margin-top: 12px !important; } .notice-card .notice-actions button { width: 100% !important; margin: 0 0 6px 0 !important; } body.dashboard-active { overflow-x: hidden !important; } .dashboard, .dashboard *, .container { max-width: 100% !important; overflow-x: hidden !important; } .mobile-menu { display: block !important; } table { width: 100% !important; display: block !important; overflow-x: auto !important; white-space: nowrap !important; } html body h1 { font-size: 1.3rem !important; } html body h2 { font-size: 1.1rem !important; } html body h3 { font-size: 1rem !important; } html body h4 { font-size: 0.95rem !important; } html body h5 { font-size: 0.9rem !important; } html body h6 { font-size: 0.85rem !important; } html body p, html body span, html body div { font-size: 12px !important; line-height: 1.4 !important; } a, button, input, select, textarea { min-height: 44px !important; min-width: 44px !important; }
} @media screen and (max-width: 480px) { html body * { font-size: 11px !important; } html body h1 { font-size: 1.2rem !important; } html body h2 { font-size: 1rem !important; } html body h3 { font-size: 0.95rem !important; } html body h4 { font-size: 0.9rem !important; }
} @media screen and (orientation: portrait) and (max-width: 768px) { html body { font-size: 12px !important; } html body .dashboard-content { display: flex !important; flex-direction: column !important; } html body .dashboard-sidebar { order: 2 !important; width: 100% !important; }
} @media screen and (max-width: 768px) { .description-popup-content { max-width: 95% !important; width: 95% !important; max-height: 80vh !important; padding: 20px !important; margin: 20px !important; } .description-popup-title { font-size: 1.3rem !important; } .description-popup-text { font-size: 0.95rem !important; } .image-popup-content { max-width: 95% !important; max-height: 85vh !important; margin: 20px !important; }
} @media screen and (max-width: 480px) { .description-popup-content { max-width: 98% !important; width: 98% !important; max-height: 85vh !important; padding: 15px !important; margin: 10px !important; border-radius: 10px !important; } .description-popup-header { margin-bottom: 15px !important; padding-bottom: 12px !important; } .description-popup-title { font-size: 1.2rem !important; } .description-popup-text { font-size: 0.9rem !important; line-height: 1.6 !important; } .popup-close { width: 30px !important; height: 30px !important; font-size: 16px !important; } .image-popup-content { max-width: 98% !important; max-height: 90vh !important; margin: 10px !important; }
} @media screen and (max-width: 768px) { .modal#registrationModal .form-control, .modal#loginModal .form-control, html body .modal .form-control { padding: 10px !important; font-size: 14px !important; margin-bottom: 8px !important; height: auto !important; min-height: 35px !important; border: 1px solid #ddd !important; border-radius: 4px !important; } html body .modal .form-label, .modal#registrationModal .form-label, .modal#loginModal .form-label { font-size: 12px !important; margin-bottom: 4px !important; font-weight: 500 !important; color: #333 !important; } html body .modal input[type="checkbox"], .modal#registrationModal input[type="checkbox"], html body .form-check input[type="checkbox"] { transform: scale(0.6) !important; margin: 0 4px 0 0 !important; width: 10px !important; height: 10px !important; accent-color: var(--primary) !important; } html body .modal .password-policy, .modal#registrationModal .password-policy, html body .password-policy, html body div.modal .password-policy { font-size: 4px !important; padding: 3px 5px !important; margin: 4px 0 !important; line-height: 1.0 !important; background: #f8f9fa !important; border-radius: 2px !important; border: 1px solid #e9ecef !important; display: block !important; } html body .modal .password-policy ul, .modal#registrationModal .password-policy ul, html body .password-policy ul, html body div.modal .password-policy ul { margin: 0 !important; padding-left: 8px !important; list-style-type: disc !important; } html body .modal .password-policy li, .modal#registrationModal .password-policy li, html body .password-policy li, html body div.modal .password-policy li { margin-bottom: 0px !important; font-size: 8px !important; line-height: 1.0 !important; padding: 0 !important; } html body .modal .password-policy .policy-header, .modal#registrationModal .password-policy .policy-header, html body .password-policy .policy-header { font-size: 8px !important; font-weight: 600 !important; margin-bottom: 2px !important; color: #495057 !important; } html body .modal .form-check, .modal#registrationModal .form-check, html body div.modal .form-check { margin: 4px 0 !important; display: flex !important; align-items: center !important; font-size: 9px !important; gap: 4px !important; } html body .modal input#agreeTerms, .modal#registrationModal input#agreeTerms, html body div.modal input#agreeTerms { transform: scale(0.6) !important; margin: 0 2px 0 0 !important; width: 10px !important; height: 10px !important; flex-shrink: 0 !important; position: relative !important; top: 0 !important; } html body .modal input#agreeTerms, .modal#registrationModal input#agreeTerms, html body div.modal input#agreeTerms { transform: scale(0.6) !important; margin: 0 2px 0 0 !important; width: 10px !important; height: 10px !important; flex-shrink: 0 !important; position: relative !important; top: 0 !important; } html body .modal .tenant-checkbox-label, html body .modal label.tenant-checkbox-label, html body div.modal-content .tenant-checkbox-label { font-size: 14px !important; line-height: 1.4 !important; margin: 8px 0 !important; padding: 0 !important; font-weight: 400 !important; color: #333 !important; display: flex !important; align-items: flex-start !important; gap: 8px !important; cursor: pointer !important; } html body .modal .terms-agreement-label, html body .modal label.terms-agreement-label, html body div.modal-content .terms-agreement-label { font-size: 11px !important; line-height: 1.3 !important; margin: 8px 0 !important; padding: 0 !important; font-weight: 400 !important; color: #333 !important; display: flex !important; align-items: flex-start !important; gap: 8px !important; cursor: pointer !important; } html body .modal .terms-agreement-label input#agreeTerms { width: 10px !important; height: 10px !important; margin: 0 !important; flex-shrink: 0 !important; position: relative !important; top: 1px !important; transform: none !important; accent-color: var(--primary) !important; cursor: pointer !important; } html body .modal .terms-agreement-label .terms-text { font-size: 11px !important; line-height: 1.4 !important; color: #333 !important; margin: 0 !important; padding: 0 !important; display: inline-block !important; } html body .modal .tenant-checkbox-label input#isTenantRegister { width: 12px !important; height: 12px !important; margin: 0 !important; flex-shrink: 0 !important; position: relative !important; top: 1px !important; transform: none !important; accent-color: var(--primary) !important; cursor: pointer !important; } html body .modal .terms-agreement-label .terms-text a.red-text { font-size: inherit !important; color: var(--primary) !important; text-decoration: none !important; font-weight: 500 !important; transition: color 0.2s ease !important; } html body .modal .terms-agreement-label .terms-text a.red-text:hover { color: var(--primary-dark) !important; text-decoration: underline !important; } html body .modal .form-check-input, .modal#registrationModal .form-check-input, html body div.modal .form-check-input { transform: scale(0.6) !important; margin: 0 !important; width: 10px !important; height: 10px !important; flex-shrink: 0 !important; position: relative !important; top: 0 !important; } html body .modal .form-check-label, .modal#registrationModal .form-check-label, html body div.modal .form-check-label, html body .modal .form-check-label.form-label, html body div.modal-content .form-check-label, html body .modal-content .form-check .form-check-label, html body div.modal div.form-check label.form-check-label, html body .modal .form-check label.form-check-label.form-label, html body div.modal-content .form-check label.form-label { font-size: 3px !important; line-height: 0.7 !important; margin: 0 !important; padding: 0 !important; flex: 1 !important; font-weight: 300 !important; color: #333 !important; text-transform: none !important; letter-spacing: normal !important; -webkit-text-size-adjust: none !important; text-size-adjust: none !important; zoom: 1 !important; transform: scale(1) !important; display: inline !important; width: auto !important; max-width: none !important; } html body .modal .form-submit, .modal#registrationModal .form-submit, .modal#loginModal .form-submit { padding: 12px !important; font-size: 16px !important; margin-top: 15px !important; width: 100% !important; min-height: 44px !important; } html body .modal-body { padding: 15px !important; } html body .modal-dialog { margin: 10px !important; max-width: calc(100vw - 20px) !important; } html body .modal .mb-3, .modal#registrationModal .mb-3 { margin-bottom: 8px !important; } html body .modal .row .col-md-6, .modal#registrationModal .row .col-md-6 { padding: 0 5px !important; margin-bottom: 8px !important; } html body div.modal-content form#registerForm input[type="checkbox"], html body .modal#registrationModal form#registerForm input[type="checkbox"] { width: 12px !important; height: 12px !important; min-width: 12px !important; min-height: 12px !important; max-width: 12px !important; max-height: 12px !important; margin: 0 !important; transform: none !important; accent-color: var(--primary) !important; flex-shrink: 0 !important; } html body div.modal-content form#registerForm input#isTenantRegister, html body .modal#registrationModal form#registerForm input#isTenantRegister { width: 12px !important; height: 12px !important; min-width: 12px !important; min-height: 12px !important; max-width: 12px !important; max-height: 12px !important; } html body div.modal-content form#registerForm input#agreeTerms, html body .modal#registrationModal form#registerForm input#agreeTerms { width: 12px !important; height: 12px !important; min-width: 12px !important; min-height: 12px !important; max-width: 12px !important; max-height: 12px !important; } html body .modal#loginModal input[type="checkbox"], html body div.modal-content form#loginForm input[type="checkbox"], html body .modal .form-row[style*="justify-content: space-between"] input[type="checkbox"] { width: 18px !important; height: 18px !important; min-width: 18px !important; min-height: 18px !important; max-width: 18px !important; max-height: 18px !important; margin: 0 8px 0 0 !important; accent-color: var(--primary) !important; } #registerPassword::placeholder { font-size: 10px !important; color: #999 !important; } #accessCodeModal { z-index: 1200 !important; position: fixed !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; } #accessCodeModal .modal-overlay { background: rgba(0, 0, 0, 0.8) !important; backdrop-filter: none !important; z-index: 1200 !important; position: fixed !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; } #accessCodeModal.active ~ #loginModal, #accessCodeModal.active ~ .modal-overlay:not(#accessCodeModal .modal-overlay) { display: none !important; visibility: hidden !important; opacity: 0 !important; } #accessCodeModal.active { z-index: 1200 !important; display: flex !important; visibility: visible !important; opacity: 1 !important; } #alreadyHaveCode { font-size: 12px !important; } .btn.processing { position: relative !important; pointer-events: none !important; opacity: 0.7 !important; } .btn.processing::after { content: "" !important; position: absolute !important; right: 10px !important; top: 50% !important; transform: translateY(-50%) !important; width: 16px !important; height: 16px !important; border: 2px solid transparent !important; border-top: 2px solid #fff !important; border-radius: 50% !important; animation: spin 1s linear infinite !important; } @keyframes spin { 0% { transform: translateY(-50%) rotate(0deg); } 100% { transform: translateY(-50%) rotate(360deg); } } .simple-link { color: var(--primary) !important; text-decoration: none !important; font-size: 14px !important; font-weight: 500 !important; display: flex !important; align-items: center !important; gap: 8px !important; padding: 0 !important; background: none !important; border: none !important; transition: color 0.3s ease !important; } .simple-link:hover { color: var(--primary-dark) !important; text-decoration: underline !important; } .simple-link i { font-size: 16px !important; color: inherit !important; } .action-links { justify-content: center !important; flex-wrap: wrap !important; } body #paymentInfoModal .modal { max-width: 95vw !important; margin: 10px !important; padding: 15px !important; } body #paymentInfoModal .modal-header h2 { font-size: 18px !important; margin: 0 !important; padding: 0 !important; } body #paymentInfoModal .modal-body { padding: 10px !important; overflow-x: auto !important; } body #paymentInfoModal .payment-charges-table { width: 100% !important; max-width: none !important; border-collapse: collapse !important; font-size: 12px !important; margin: 0 !important; display: table !important; overflow-x: visible !important; white-space: normal !important; table-layout: fixed !important; border: 1px solid #ddd !important; } body #paymentInfoModal .payment-charges-table th { background-color: var(--primary) !important; color: white !important; padding: 10px 8px !important; font-size: 11px !important; font-weight: 600 !important; text-align: center !important; border: 1px solid #ddd !important; word-wrap: break-word !important; hyphens: auto !important; line-height: 1.3 !important; vertical-align: middle !important; display: table-cell !important; height: 50px !important; } body #paymentInfoModal .payment-charges-table td { padding: 10px 8px !important; font-size: 11px !important; text-align: center !important; border: 1px solid #ddd !important; word-wrap: break-word !important; hyphens: auto !important; line-height: 1.3 !important; vertical-align: middle !important; display: table-cell !important; background-color: transparent !important; height: 45px !important; } body #paymentInfoModal .payment-charges-table tr:nth-child(even) { background-color: #f9f9f9 !important; } body #paymentInfoModal .payment-charges-table tr:nth-child(odd) { background-color: #ffffff !important; } body #paymentInfoModal .payment-charges-table td:last-child, body #paymentInfoModal .payment-charges-table th:last-child { font-weight: bold !important; background-color: #ffe6e6 !important; text-align: right !important; } body #paymentInfoModal .payment-charges-table td:first-child, body #paymentInfoModal .payment-charges-table th:first-child { text-align: center !important; width: 33.33% !important; min-width: 90px !important; font-weight: 500 !important; padding-left: 8px !important; padding-right: 8px !important; } body #paymentInfoModal .payment-charges-table td:nth-child(2), body #paymentInfoModal .payment-charges-table th:nth-child(2) { text-align: center !important; width: 33.33% !important; min-width: 70px !important; padding-left: 8px !important; padding-right: 8px !important; } body #paymentInfoModal .payment-charges-table td:last-child, body #paymentInfoModal .payment-charges-table th:last-child { text-align: center !important; width: 33.34% !important; min-width: 90px !important; font-weight: bold !important; background-color: #ffe6e6 !important; padding-left: 8px !important; padding-right: 8px !important; } body #paymentInfoModal .payment-charges-table th:last-child { font-size: 10px !important; line-height: 1.2 !important; white-space: normal !important; word-break: break-word !important; background-color: var(--primary) !important; color: white !important; } body #paymentInfoModal .payment-charges-table tr { display: table-row !important; width: 100% !important; } body #paymentInfoModal .payment-charges-table thead, body #paymentInfoModal .payment-charges-table tbody { display: table-header-group !important; width: 100% !important; } body #paymentInfoModal .payment-charges-table tbody { display: table-row-group !important; } body #paymentInfoModal .modal-close { font-size: 18px !important; padding: 6px 10px !important; min-width: 35px !important; min-height: 35px !important; top: 5px !important; right: 5px !important; } body #paymentInfoModal .payment-charges-table[style] { width: 100% !important; max-width: none !important; display: table !important; overflow-x: visible !important; white-space: normal !important; font-size: 12px !important; table-layout: fixed !important; border-collapse: collapse !important; } body #paymentInfoModal .payment-charges-table th[style], body #paymentInfoModal .payment-charges-table td[style] { padding: 10px 8px !important; font-size: 11px !important; display: table-cell !important; word-wrap: break-word !important; white-space: normal !important; line-height: 1.3 !important; vertical-align: middle !important; border: 1px solid #ddd !important; text-align: center !important; } body #paymentInfoModal .payment-charges-table th[style]:first-child, body #paymentInfoModal .payment-charges-table th[style]:nth-child(2), body #paymentInfoModal .payment-charges-table th[style]:last-child { width: 33.33% !important; text-align: center !important; background-color: var(--primary) !important; color: white !important; font-size: 11px !important; padding: 10px 8px !important; height: 50px !important; } body #paymentInfoModal .payment-charges-table td[style]:first-child, body #paymentInfoModal .payment-charges-table td[style]:nth-child(2), body #paymentInfoModal .payment-charges-table td[style]:last-child { width: 33.33% !important; text-align: center !important; font-size: 11px !important; padding: 10px 8px !important; height: 45px !important; } body #paymentInfoModal .payment-charges-table td[style]:last-child { font-weight: bold !important; background-color: #ffe6e6 !important; color: var(--primary) !important; } body #paymentInfoModal .payment-charges-table thead th, body #paymentInfoModal .payment-charges-table tbody th { background-color: var(--primary) !important; color: white !important; font-size: 11px !important; padding: 8px 4px !important; max-width: 80px !important; } body #paymentInfoModal .payment-charges-table tbody td, body #paymentInfoModal .payment-charges-table thead td { font-size: 11px !important; padding: 6px 4px !important; max-width: 80px !important; } body #paymentInfoModal .modal-body > div:first-child { overflow-x: auto !important; -webkit-overflow-scrolling: touch !important; } body #paymentInfoModal .modal { min-width: 300px !important; max-width: 95vw !important; } @media screen and (max-width: 360px) { body #paymentInfoModal .payment-charges-table th, body #paymentInfoModal .payment-charges-table td { font-size: 10px !important; padding: 8px 6px !important; height: auto !important; } body #paymentInfoModal .payment-charges-table th:last-child { font-size: 9px !important; } body #paymentInfoModal .modal { min-width: 280px !important; } } body #paymentInfoModal .payment-charges-table th, body #paymentInfoModal .payment-charges-table td { overflow: visible !important; text-overflow: clip !important; white-space: normal !important; } body #paymentInfoModal .payment-charges-table td::before, body #paymentInfoModal .payment-charges-table td::after, body #paymentInfoModal .payment-charges-table th::before, body #paymentInfoModal .payment-charges-table th::after { content: none !important; display: none !important; } body #paymentInfoModal .payment-charges-table td[data-label]::before, body #paymentInfoModal .payment-charges-table td[data-th]::before { content: none !important; display: none !important; } body #paymentInfoModal .payment-charges-table * { position: relative !important; } body #paymentInfoModal .payment-charges-table *::before, body #paymentInfoModal .payment-charges-table *::after { content: none !important; display: none !important; }
} @media screen and (max-width: 768px) { .footer-grid { grid-template-columns: 1fr !important; gap: 1.5rem !important; text-align: center !important; } .footer-column { padding: 15px !important; background: rgba(255, 255, 255, 0.05) !important; border-radius: 8px !important; margin-bottom: 10px !important; } .footer-column h3 { font-size: 1.1rem !important; margin-bottom: 12px !important; line-height: 1.3 !important; word-wrap: break-word !important; overflow-wrap: break-word !important; } .footer-links { display: flex !important; flex-direction: column !important; gap: 8px !important; padding: 0 !important; margin: 0 !important; } .footer-links li { margin-bottom: 0 !important; width: 100% !important; } .footer-links a { display: block !important; padding: 8px 12px !important; background: rgba(255, 255, 255, 0.1) !important; border-radius: 6px !important; font-size: 14px !important; text-decoration: none !important; transition: all 0.3s ease !important; word-wrap: break-word !important; overflow-wrap: break-word !important; } .footer-links a:hover { background: rgba(179, 0, 0, 0.2) !important; color: #fff !important; transform: translateY(-1px) !important; } .social-links { justify-content: center !important; gap: 15px !important; margin-top: 15px !important; } .social-links a { font-size: 18px !important; padding: 10px !important; background: rgba(255, 255, 255, 0.1) !important; border-radius: 50% !important; width: 40px !important; height: 40px !important; display: flex !important; align-items: center !important; justify-content: center !important; } .copyright { text-align: center !important; padding: 15px !important; font-size: 12px !important; border-top: 1px solid rgba(255, 255, 255, 0.1) !important; margin-top: 20px !important; }
} @media screen and (max-width: 480px) { .footer-column h3 { font-size: 1rem !important; line-height: 1.2 !important; } .footer-links a { font-size: 13px !important; padding: 6px 10px !important; } .social-links a { font-size: 16px !important; width: 35px !important; height: 35px !important; }
} @media screen and (max-width: 768px) { .dashboard-sidebar { order: 2 !important; position: static !important; width: 100% !important; margin-top: 20px !important; padding: 20px !important; border-radius: 12px !important; background: #fff !important; box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important; border: 1px solid #e9ecef !important; } .dashboard-sidebar.resident-only { display: block !important; } .sidebar-section { margin-bottom: 25px !important; padding-bottom: 15px !important; border-bottom: 1px solid #f0f0f0 !important; } .sidebar-section:last-child { border-bottom: none !important; margin-bottom: 0 !important; } .sidebar-title { font-size: 1.2rem !important; margin-bottom: 15px !important; padding-bottom: 10px !important; border-bottom: 2px solid var(--primary) !important; color: var(--primary) !important; font-weight: 600 !important; text-align: center !important; } .sidebar-links { list-style: none !important; padding: 0 !important; margin: 0 !important; display: grid !important; gap: 12px !important; } .sidebar-links li { margin-bottom: 0 !important; } html body .sidebar-links a { display: flex !important; align-items: center !important; gap: 12px !important; color: #444 !important; text-decoration: none !important; padding: 15px 18px !important; transition: all 0.3s ease !important; border-radius: 8px !important; background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important; font-size: 14px !important; font-weight: 500 !important; word-wrap: break-word !important; overflow-wrap: break-word !important; border: 1px solid #dee2e6 !important; box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important; } .sidebar-links a:hover { color: #fff !important; background: linear-gradient(135deg, var(--primary) 0%, #a00000 100%) !important; transform: translateY(-2px) !important; box-shadow: 0 4px 8px rgba(179, 0, 0, 0.3) !important; border-color: var(--primary) !important; } .sidebar-links i { color: var(--primary) !important; font-size: 18px !important; flex-shrink: 0 !important; transition: color 0.3s ease !important; } .sidebar-links a:hover i { color: #fff !important; }
} @media screen and (max-width: 480px) { .dashboard-sidebar { padding: 15px !important; margin-top: 15px !important; } .sidebar-title { font-size: 1.1rem !important; } html body .sidebar-links a { padding: 12px 15px !important; font-size: 13px !important; } .sidebar-links i { font-size: 16px !important; }
} @media screen and (max-width: 768px) { .newsletter-modal { position: fixed !important; top: 0 !important; left: 0 !important; width: 100% !important; height: 100% !important; background-color: rgba(0, 0, 0, 0.8) !important; display: flex !important; align-items: center !important; justify-content: center !important; z-index: 10000 !important; opacity: 0 !important; visibility: hidden !important; transition: all 0.3s ease !important; padding: 20px !important; box-sizing: border-box !important; } .newsletter-modal.active { opacity: 1 !important; visibility: visible !important; } .newsletter-modal-content { background: white !important; border-radius: 15px !important; padding: 25px 20px !important; width: 100% !important; max-width: 400px !important; max-height: 90vh !important; overflow-y: auto !important; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important; text-align: center !important; position: relative !important; animation: modalSlideIn 0.3s ease-out !important; } @keyframes modalSlideIn { from { transform: translateY(-30px) scale(0.9); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } } .newsletter-modal-content h3 { color: var(--primary) !important; font-size: 1.4rem !important; margin-bottom: 15px !important; font-weight: 600 !important; display: flex !important; align-items: center !important; justify-content: center !important; gap: 10px !important; } .newsletter-modal-content h3 i { color: var(--primary) !important; font-size: 1.3rem !important; } .newsletter-modal-content p { color: #666 !important; font-size: 0.95rem !important; line-height: 1.5 !important; margin-bottom: 20px !important; } .newsletter-access-form { width: 100% !important; } .newsletter-input { width: 100% !important; padding: 15px !important; border: 2px solid #e0e0e0 !important; border-radius: 10px !important; font-size: 16px !important; margin-bottom: 20px !important; text-align: center !important; letter-spacing: 1px !important; transition: all 0.3s ease !important; box-sizing: border-box !important; background: #f8f9fa !important; } .newsletter-input:focus { outline: none !important; border-color: var(--primary) !important; background: white !important; box-shadow: 0 0 0 3px rgba(179, 0, 0, 0.1) !important; } .newsletter-buttons { display: flex !important; flex-direction: column !important; gap: 12px !important; width: 100% !important; } .newsletter-btn { padding: 15px 20px !important; border: none !important; border-radius: 10px !important; font-size: 16px !important; font-weight: 600 !important; cursor: pointer !important; transition: all 0.3s ease !important; display: flex !important; align-items: center !important; justify-content: center !important; gap: 8px !important; width: 100% !important; box-sizing: border-box !important; } .newsletter-btn.primary { background: linear-gradient(135deg, var(--primary) 0%, #a00000 100%) !important; color: white !important; box-shadow: 0 4px 15px rgba(179, 0, 0, 0.3) !important; } .newsletter-btn.primary:hover { transform: translateY(-2px) !important; box-shadow: 0 6px 20px rgba(179, 0, 0, 0.4) !important; } .newsletter-btn.secondary { background: #f8f9fa !important; color: #666 !important; border: 2px solid #e0e0e0 !important; } .newsletter-btn.secondary:hover { background: #e9ecef !important; border-color: #ccc !important; } .newsletter-error { background: #fff3f3 !important; color: #d32f2f !important; padding: 12px !important; border-radius: 8px !important; margin-top: 15px !important; border-left: 4px solid #d32f2f !important; font-size: 14px !important; display: none !important; align-items: center !important; justify-content: center !important; gap: 8px !important; } .newsletter-error.show { display: flex !important; animation: errorShake 0.5s ease-in-out !important; } @keyframes errorShake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } } @keyframes shake { 0%, 100% { transform: translateX(0); } 25% { transform: translateX(-10px); } 75% { transform: translateX(10px); } }
} @media screen and (max-width: 480px) { .newsletter-modal { padding: 15px !important; } .newsletter-modal-content { padding: 20px 15px !important; border-radius: 12px !important; } .newsletter-modal-content h3 { font-size: 1.2rem !important; } .newsletter-modal-content p { font-size: 0.9rem !important; } .newsletter-input { padding: 12px !important; font-size: 16px !important; } .newsletter-btn { padding: 12px 16px !important; font-size: 15px !important; }
} @media screen and (max-width: 768px) { .mobile-newsletter-link { display: block !important; margin-bottom: 20px !important; text-align: center !important; padding: 0 20px !important; } .btn-newsletter-mobile { display: inline-flex !important; align-items: center !important; justify-content: center !important; gap: 10px !important; padding: 8px 0 !important; background: transparent !important; color: white !important; text-decoration: none !important; font-size: 15px !important; font-weight: 700 !important; border: none !important; border-radius: 0 !important; text-shadow: -1px -1px 0 #b30000, 1px -1px 0 #b30000, -1px 1px 0 #b30000, 1px 1px 0 #b30000, 0 0 10px #ffff00, 0 0 20px #ffff00, 0 0 30px #ffff00 !important; transition: all 0.3s ease !important; animation: trippingLights 2s infinite alternate !important; } .btn-newsletter-mobile:hover { transform: translateY(-2px) scale(1.05) !important; text-shadow: -1px -1px 0 #b30000, 1px -1px 0 #b30000, -1px 1px 0 #b30000, 1px 1px 0 #b30000, 0 0 15px #ffff00, 0 0 25px #ffff00, 0 0 35px #ffff00 !important; } .btn-newsletter-mobile i { font-size: 16px !important; animation: pulse 2s infinite !important; } @keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.1); } }
} @media screen and (max-width: 480px) { .mobile-newsletter-link { padding: 0 15px !important; } .btn-newsletter-mobile { padding: 10px 20px !important; font-size: 14px !important; gap: 8px !important; }
} .amc-inventory-container { padding: 20px; background: #f8f9fa; border-radius: 8px; margin-bottom: 20px;
} .section-selection { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); margin-bottom: 20px;
} .section-selection label { display: flex; align-items: center; cursor: pointer; font-weight: 500; color: #333; transition: color 0.3s ease;
} .section-selection label:hover { color: var(--primary);
} .section-selection input[type="checkbox"] { margin-right: 8px; transform: scale(1.2);
} .amc-management, .inventory-management { background: #fff; padding: 20px; border-radius: 8px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); margin-bottom: 20px;
} .amc-card, .inventory-card { background: #fff; border: 1px solid #e9ecef; border-radius: 8px; padding: 20px; margin-bottom: 15px; box-shadow: 0 2px 4px rgba(0,0,0,0.05); transition: all 0.3s ease; position: relative;
} .amc-card:hover, .inventory-card:hover { box-shadow: 0 4px 8px rgba(0,0,0,0.1); transform: translateY(-2px);
} .amc-card.expired { border-left: 4px solid #dc3545; background: #fff5f5;
} .amc-card.expiring-soon { border-left: 4px solid #ffc107; background: #fffbf0;
} .amc-card.active { border-left: 4px solid #28a745; background: #f8fff9;
} .card-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 15px; flex-wrap: wrap; gap: 10px;
} .card-title { font-size: 1.2rem; font-weight: 600; color: #333; margin: 0;
} .card-actions { display: flex; gap: 8px; flex-shrink: 0;
} .card-info { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-bottom: 15px;
} .info-item { display: flex; flex-direction: column;
} .info-label { font-size: 0.85rem; color: #666; margin-bottom: 4px; font-weight: 500;
} .info-value { font-size: 1rem; color: #333; font-weight: 400;
} .info-value.cost { font-weight: 600; color: var(--primary);
} .info-value.date { color: #495057;
} .status-badge { display: inline-block; padding: 4px 12px; border-radius: 20px; font-size: 0.8rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px;
} .status-badge.active { background: #d4edda; color: #155724;
} .status-badge.expired { background: #f8d7da; color: #721c24;
} .status-badge.expiring-soon { background: #fff3cd; color: #856404;
} .status-badge.renewed { background: #d1ecf1; color: #0c5460;
} .amc-form, .inventory-form { background: #fff; padding: 25px; border-radius: 8px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); margin-bottom: 20px;
} .form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-bottom: 20px;
} .form-group { display: flex; flex-direction: column;
} .form-group.full-width { grid-column: 1 / -1;
} .form-label { font-size: 0.9rem; font-weight: 500; color: #333; margin-bottom: 6px;
} .form-input, .form-select, .form-textarea { padding: 10px 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 0.95rem; transition: all 0.3s ease; background: #fff;
} .form-input:focus, .form-select:focus, .form-textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 2px rgba(179, 0, 0, 0.1);
} .form-textarea { resize: vertical; min-height: 80px;
} .form-actions { display: flex; gap: 10px; justify-content: flex-end; padding-top: 20px; border-top: 1px solid #eee;
} .btn-amc, .btn-inventory { padding: 10px 20px; border: none; border-radius: 4px; font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: all 0.3s ease; text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
} .btn-amc.primary, .btn-inventory.primary { background: var(--primary); color: white;
} .btn-amc.primary:hover, .btn-inventory.primary:hover { background: #c30000; transform: translateY(-1px);
} .btn-amc.secondary, .btn-inventory.secondary { background: #6c757d; color: white;
} .btn-amc.secondary:hover, .btn-inventory.secondary:hover { background: #5a6268;
} .btn-amc.success, .btn-inventory.success { background: #28a745; color: white;
} .btn-amc.success:hover, .btn-inventory.success:hover { background: #218838;
} .btn-amc.danger, .btn-inventory.danger { background: #dc3545; color: white;
} .btn-amc.danger:hover, .btn-inventory.danger:hover { background: #c82333;
} .btn-amc.info, .btn-inventory.info { background: #17a2b8; color: white;
} .btn-amc.info:hover, .btn-inventory.info:hover { background: #138496;
} .btn-amc.small, .btn-inventory.small { padding: 6px 12px; font-size: 0.8rem;
} .expenditure-table { width: 100%; border-collapse: collapse; margin-top: 20px; background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 4px rgba(0,0,0,0.1); table-layout: auto;
} .amc-modal-body .expenditure-table,
.inventory-modal-body .expenditure-table { width: 100% !important; min-width: 100% !important; table-layout: auto !important;
} .amc-modal-body .expenditure-table th,
.amc-modal-body .expenditure-table td,
.inventory-modal-body .expenditure-table th,
.inventory-modal-body .expenditure-table td { white-space: nowrap; padding: 12px 8px; font-size: 0.9rem;
} .amc-modal-body .expenditure-table th:last-child,
.amc-modal-body .expenditure-table td:last-child,
.inventory-modal-body .expenditure-table th:last-child,
.inventory-modal-body .expenditure-table td:last-child { min-width: 120px;
} .expenditure-table th,
.expenditure-table td { padding: 12px 15px; text-align: left; border-bottom: 1px solid #eee;
} .expenditure-table th { background: #f8f9fa; font-weight: 600; color: #333; border-bottom: 2px solid #dee2e6;
} .expenditure-table tbody tr:hover { background: #f8f9fa;
} .expenditure-table .amount { font-weight: 600; color: var(--primary);
} .report-summary { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-bottom: 25px;
} .summary-card { background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%); padding: 25px; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); text-align: center; border: 1px solid #e9ecef; transition: all 0.3s ease; position: relative; overflow: hidden;
} .summary-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(135deg, #90a1ee 0%, #c5a3e7 100%);
} .summary-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.12);
} .summary-card:nth-child(1) { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
} .summary-card:nth-child(1)::before { background: linear-gradient(135deg, #5a67d8 0%, #667eea 100%);
} .summary-card:nth-child(2) { background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
} .summary-card:nth-child(2)::before { background: linear-gradient(135deg, #38a169 0%, #48bb78 100%);
} .summary-card:nth-child(3) { background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
} .summary-card:nth-child(3)::before { background: linear-gradient(135deg, #dd6b20 0%, #ed8936 100%);
} .summary-card:nth-child(4) { background: linear-gradient(135deg, #e53e3e 0%, #c53030 100%);
} .summary-card:nth-child(4)::before { background: linear-gradient(135deg, #c53030 0%, #e53e3e 100%);
} .summary-card:nth-child(5) { background: linear-gradient(135deg, #805ad5 0%, #553c9a 100%);
} .summary-card:nth-child(5)::before { background: linear-gradient(135deg, #553c9a 0%, #805ad5 100%);
} .summary-card .card-icon { font-size: 2.5rem; color: #fff; margin-bottom: 15px; text-shadow: 0 2px 4px rgba(0,0,0,0.3); display: inline-block; width: 70px; height: 70px; line-height: 70px; background: rgba(255,255,255,0.2); border-radius: 50%; backdrop-filter: blur(10px);
} .summary-card .card-value { font-size: 2rem; font-weight: 700; color: #ffffff; margin-bottom: 8px; text-shadow: 0 2px 4px rgba(0,0,0,0.3);
} .summary-card .card-label { font-size: 1rem; color: #f7fafc; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; text-shadow: 0 1px 2px rgba(0,0,0,0.2);
} .export-btn { background: #28a745; color: white; border: none; padding: 10px 20px; border-radius: 4px; cursor: pointer; font-size: 0.9rem; font-weight: 500; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s ease;
} .export-btn:hover { background: #218838; transform: translateY(-1px);
} .amc-modal, .inventory-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; z-index: 1000; opacity: 0; visibility: hidden; transition: all 0.3s ease;
} .amc-modal .amc-modal-content,
.inventory-modal .inventory-modal-content { background: #fff !important; border-radius: 8px !important; max-width: 1400px !important; width: 98vw !important; max-height: 95vh !important; min-width: 800px !important; overflow-y: auto; box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important; transform: translateY(-20px); transition: transform 0.3s ease; position: relative; margin: auto; display: block !important;
} .amc-modal.active, .inventory-modal.active { opacity: 1; visibility: visible;
} .amc-modal-content, .inventory-modal-content { background: #fff !important; border-radius: 8px; max-width: 1400px !important; width: 98% !important; max-height: 95vh !important; overflow-y: auto; box-shadow: 0 10px 30px rgba(0,0,0,0.3); transform: translateY(-20px); transition: transform 0.3s ease; position: relative; margin: auto;
} .amc-modal.active .amc-modal-content,
.inventory-modal.active .inventory-modal-content { transform: translateY(0);
} .amc-modal-header, .inventory-modal-header { padding: 20px 25px; border-bottom: 1px solid #eee; display: flex; justify-content: space-between; align-items: center;
} .amc-modal-title, .inventory-modal-title { font-size: 1.3rem; font-weight: 600; color: #333; margin: 0;
} .amc-modal-close, .inventory-modal-close { background: none; border: none; font-size: 1.5rem; color: #666; cursor: pointer; padding: 0; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all 0.3s ease;
} .amc-modal-close:hover, .inventory-modal-close:hover { background: #f8f9fa; color: #333;
} .amc-modal-body, .inventory-modal-body { padding: 25px;
} .amc-modal-footer, .inventory-modal-footer { padding: 20px 25px; border-top: 1px solid #eee; display: flex; gap: 10px; justify-content: flex-end;
} .loading-state { text-align: center; padding: 40px 20px; color: #666;
} .loading-state i { font-size: 2rem; margin-bottom: 15px; color: var(--primary);
} .empty-state { text-align: center; padding: 40px 20px; color: #999;
} .empty-state i { font-size: 3rem; margin-bottom: 20px; color: #ddd;
} .empty-state h4 { margin-bottom: 10px; color: #666;
} @media (max-width: 768px) { .card-header { flex-direction: column; align-items: stretch; } .card-actions { justify-content: center; margin-top: 10px; } .form-grid { grid-template-columns: 1fr; } .form-actions { flex-direction: column; } .report-summary { grid-template-columns: 1fr; } .modal-content { width: 95%; margin: 10px; } .amc-modal .amc-modal-content, .inventory-modal .inventory-modal-content { width: 95vw !important; max-width: 95vw !important; min-width: auto !important; margin: 10px !important; } .expenditure-table { font-size: 0.9rem; } .expenditure-table th, .expenditure-table td { padding: 8px 10px; }
} @media (max-width: 1200px) { .amc-modal .amc-modal-content, .inventory-modal .inventory-modal-content { max-width: 90vw !important; width: 90vw !important; }
} @media (max-width: 480px) { .amc-management, .inventory-management { padding: 15px; } .amc-card, .inventory-card { padding: 15px; } .card-info { grid-template-columns: 1fr; gap: 10px; } .btn-amc, .btn-inventory { padding: 8px 15px; font-size: 0.85rem; } .expenditure-table th, .expenditure-table td { padding: 6px 8px; font-size: 0.8rem; }
} .vendor-management { margin-bottom: 2rem;
} .vendor-card { background: #ffffff; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); margin-bottom: 1rem; transition: transform 0.2s ease, box-shadow 0.2s ease; border-left: 4px solid #007bff;
} .vendor-card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.15);
} .vendor-card.active { border-left-color: #28a745;
} .vendor-card.inactive { border-left-color: #6c757d; opacity: 0.8;
} .vendor-card.blacklisted { border-left-color: #dc3545;
} .vendor-card .card-header { padding: 1rem; border-bottom: 1px solid #e9ecef; display: flex; justify-content: space-between; align-items: center;
} .vendor-card .card-title { font-size: 1.1rem; font-weight: 600; color: #333; margin: 0;
} .vendor-card .card-actions { display: flex; gap: 0.5rem;
} .vendor-card .card-info { padding: 1rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 0.75rem;
} .vendor-card .info-item { display: flex; flex-direction: column; gap: 0.25rem;
} .vendor-card .info-label { font-size: 0.85rem; font-weight: 500; color: #6c757d; text-transform: uppercase; letter-spacing: 0.5px;
} .vendor-card .info-value { font-size: 0.95rem; color: #333; font-weight: 500;
} .vendor-card .info-value.contact { color: #007bff;
} .vendor-card .info-value.amount { color: #28a745; font-weight: 600;
} .vendor-card .status-badge { padding: 0.25rem 0.75rem; border-radius: 1rem; font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
} .vendor-card .status-badge.active { background: #d4edda; color: #155724;
} .vendor-card .status-badge.inactive { background: #d1ecf1; color: #0c5460;
} .vendor-card .status-badge.blacklisted { background: #f8d7da; color: #721c24;
} .vendor-card .card-description { padding: 0 1rem 1rem; border-top: 1px solid #e9ecef; margin-top: 0.5rem;
} .vendor-card .card-description p { margin: 0.5rem 0 0; color: #666; font-size: 0.9rem; line-height: 1.4;
} .vendor-form { background: #ffffff; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); padding: 2rem;
} .vendor-form h4 { color: #333; margin-bottom: 1.5rem; font-weight: 600;
} .vendor-form .form-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1rem; margin-bottom: 1.5rem;
} .vendor-form .form-group { display: flex; flex-direction: column;
} .vendor-form .form-group.full-width { grid-column: 1 / -1;
} .vendor-form .form-label { font-weight: 500; color: #555; margin-bottom: 0.5rem; font-size: 0.9rem;
} .vendor-form .form-input,
.vendor-form .form-select,
.vendor-form .form-textarea { padding: 0.75rem; border: 1px solid #ddd; border-radius: 4px; font-size: 0.95rem; transition: border-color 0.2s ease, box-shadow 0.2s ease;
} .vendor-form .form-select { background-color: white; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e"); background-position: right 0.5rem center; background-repeat: no-repeat; background-size: 1.5em 1.5em; padding-right: 2.5rem; max-height: 200px; overflow-y: auto; -webkit-appearance: none; -moz-appearance: none; appearance: none;
} .vendor-form .form-select option { padding: 0.5rem; background-color: white; color: #333;
} .vendor-form .form-select option:hover { background-color: #f8f9fa;
} .vendor-form .form-input:focus,
.vendor-form .form-select:focus,
.vendor-form .form-textarea:focus { outline: none; border-color: #007bff; box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
} .vendor-form .form-textarea { resize: vertical; min-height: 80px;
} .vendor-form .form-actions { display: flex; gap: 1rem; justify-content: flex-end; margin-top: 1.5rem;
} .btn-vendor { padding: 0.5rem 1rem; border: none; border-radius: 4px; font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: all 0.2s ease; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem;
} .btn-vendor.small { padding: 0.375rem 0.75rem; font-size: 0.8rem;
} .btn-vendor.primary { background: #007bff; color: white;
} .btn-vendor.primary:hover { background: #0056b3; transform: translateY(-1px);
} .btn-vendor.secondary { background: #6c757d; color: white;
} .btn-vendor.secondary:hover { background: #545b62; transform: translateY(-1px);
} .btn-vendor.danger { background: #dc3545; color: white;
} .btn-vendor.danger:hover { background: #c82333; transform: translateY(-1px);
} .btn-vendor.info { background: #17a2b8; color: white;
} .btn-vendor.info:hover { background: #138496; transform: translateY(-1px);
} .btn-vendor.disabled { background: #e9ecef; color: #6c757d; cursor: not-allowed;
} .btn-vendor.disabled:hover { transform: none;
} .vendor-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; z-index: 1000; opacity: 0; visibility: hidden; transition: all 0.3s ease;
} .vendor-modal.active { opacity: 1; visibility: visible;
} .vendor-modal-content { background: white; border-radius: 8px; max-width: 90vw; max-height: 90vh; overflow-y: auto; position: relative; transform: scale(0.9); transition: transform 0.3s ease;
} .vendor-modal.active .vendor-modal-content { transform: scale(1);
} .vendor-modal-header { padding: 1.5rem; border-bottom: 1px solid #e9ecef; display: flex; justify-content: space-between; align-items: center; background: #f8f9fa; border-radius: 8px 8px 0 0;
} .vendor-modal-title { margin: 0; color: #333; font-weight: 600;
} .vendor-modal-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #6c757d; padding: 0; width: 2rem; height: 2rem; display: flex; align-items: center; justify-content: center; border-radius: 4px; transition: all 0.2s ease;
} .vendor-modal-close:hover { background: #e9ecef; color: #333;
} .vendor-modal-body { padding: 1.5rem;
} .vendor-modal-footer { padding: 1rem 1.5rem; border-top: 1px solid #e9ecef; display: flex; gap: 1rem; justify-content: flex-end; background: #f8f9fa; border-radius: 0 0 8px 8px;
} .vendor-summary { padding: 1.5rem;
} .vendor-summary .summary-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-bottom: 2rem;
} .vendor-summary .summary-card { background: #ffffff; padding: 1.5rem; border-radius: 12px; text-align: center; border-left: 4px solid #007bff; box-shadow: 0 4px 12px rgba(0,0,0,0.08); transition: transform 0.2s ease, box-shadow 0.2s ease; position: relative; overflow: hidden;
} .vendor-summary .summary-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.15);
} .vendor-summary .summary-card.total { border-left-color: #007bff; background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
} .vendor-summary .summary-card.active { border-left-color: #28a745; background: linear-gradient(135deg, #f8fff9 0%, #ffffff 100%);
} .vendor-summary .summary-card.inactive { border-left-color: #6c757d; background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
} .vendor-summary .summary-card.blacklisted { border-left-color: #dc3545; background: linear-gradient(135deg, #fff8f8 0%, #ffffff 100%);
} .vendor-summary .summary-card.contract-value { border-left-color: #17a2b8; background: linear-gradient(135deg, #f7fcfd 0%, #ffffff 100%);
} .vendor-summary .summary-card.recent { border-left-color: #ffc107; background: linear-gradient(135deg, #fffef7 0%, #ffffff 100%);
} .vendor-summary .card-icon { font-size: 2.5rem; margin-bottom: 1rem; opacity: 0.8;
} .vendor-summary .summary-card.total .card-icon { color: #007bff;
} .vendor-summary .summary-card.active .card-icon { color: #28a745;
} .vendor-summary .summary-card.inactive .card-icon { color: #6c757d;
} .vendor-summary .summary-card.blacklisted .card-icon { color: #dc3545;
} .vendor-summary .summary-card.contract-value .card-icon { color: #17a2b8;
} .vendor-summary .summary-card.recent .card-icon { color: #ffc107;
} .vendor-summary .card-value { font-size: 2rem; font-weight: 700; color: #333; margin-bottom: 0.5rem; line-height: 1;
} .vendor-summary .card-label { font-size: 0.9rem; color: #666; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 500;
} .service-distribution { margin-top: 2rem; padding: 1.5rem; background: #ffffff; border-radius: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.08);
} .service-distribution h5 { color: #333; font-weight: 600; margin-bottom: 1.5rem; font-size: 1.1rem;
} .service-chart { display: flex; flex-direction: column; gap: 1rem;
} .service-item { display: grid; grid-template-columns: 120px 1fr 50px; align-items: center; gap: 1rem;
} .service-name { font-weight: 500; color: #333; font-size: 0.9rem;
} .service-bar { background: #e9ecef; height: 8px; border-radius: 4px; overflow: hidden; position: relative;
} .service-fill { height: 100%; background: linear-gradient(90deg, #007bff, #0056b3); border-radius: 4px; transition: width 0.8s ease; position: relative;
} .service-count { font-weight: 600; color: #007bff; font-size: 0.9rem; text-align: center;
} .export-btn { background: linear-gradient(135deg, #17a2b8, #138496); color: white; border: none; padding: 0.75rem 1.5rem; border-radius: 8px; cursor: pointer; font-size: 0.95rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
} .export-btn:hover { background: linear-gradient(135deg, #138496, #117a8b); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(23, 162, 184, 0.4);
} .export-btn:active { transform: translateY(0);
} .empty-state { text-align: center; padding: 3rem 1rem; color: #6c757d;
} .empty-state i { font-size: 3rem; margin-bottom: 1rem; opacity: 0.5;
} .empty-state h4 { margin-bottom: 0.5rem; color: #495057;
} .empty-state p { margin: 0; font-size: 0.9rem;
} .export-btn { background: #17a2b8; color: white; border: none; padding: 0.5rem 1rem; border-radius: 4px; cursor: pointer; font-size: 0.9rem; font-weight: 500; display: inline-flex; align-items: center; gap: 0.5rem; transition: all 0.2s ease;
} .export-btn:hover { background: #138496; transform: translateY(-1px);
} .rating-stars { display: inline-flex; gap: 0.25rem;
} .rating-stars .star { color: #ffc107; font-size: 1rem;
} .rating-stars .star.empty { color: #e9ecef;
} @media (max-width: 768px) { .vendor-form .form-grid { grid-template-columns: 1fr; } .vendor-card .card-header { flex-direction: column; gap: 1rem; align-items: flex-start; } .vendor-card .card-actions { align-self: stretch; justify-content: flex-end; } .vendor-card .card-info { grid-template-columns: 1fr; } .vendor-summary .summary-cards { grid-template-columns: 1fr; } .vendor-modal-content { max-width: 95vw; margin: 1rem; } .vendor-form .form-actions { flex-direction: column; } .btn-vendor { justify-content: center; }
} .checklist-container { max-width: 1200px; margin: 0 auto;
} .task-card { background: #fff; border: 1px solid #e9ecef; border-radius: 8px; padding: 20px; margin-bottom: 15px; box-shadow: 0 2px 4px rgba(0,0,0,0.1); transition: all 0.3s ease;
} .task-card:hover { box-shadow: 0 4px 8px rgba(0,0,0,0.15); transform: translateY(-2px);
} .task-card.priority-critical { border-left: 4px solid #dc3545;
} .task-card.priority-high { border-left: 4px solid #fd7e14;
} .task-card.priority-medium { border-left: 4px solid #ffc107;
} .task-card.priority-low { border-left: 4px solid #17a2b8;
} .task-card.status-pending { background: #ffffff; border-color: #dee2e6;
} .task-card.status-in-progress { background: #fff8e1; border-color: #ffc107;
} .task-card.status-completed { background: #f8f9fa; border-color: #28a745; opacity: 0.8;
} .task-card.status-overdue { background: #fff5f5; border-color: #dc3545;
} .task-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 15px;
} .task-title { font-size: 1.1rem; font-weight: 600; color: #2c3e50; margin: 0; flex: 1;
} .task-meta { display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
} .status-badge { padding: 4px 8px; border-radius: 12px; font-size: 0.75rem; font-weight: 500; text-transform: uppercase;
} .status-pending { background: #fff3cd; color: #856404;
} .status-in-progress { background: #cce5ff; color: #004085;
} .status-completed { background: #d4edda; color: #155724;
} .status-overdue { background: #f8d7da; color: #721c24;
} .priority-badge { padding: 4px 8px; border-radius: 12px; font-size: 0.75rem; font-weight: 500; text-transform: uppercase;
} .priority-critical { background: #dc3545; color: white;
} .priority-high { background: #fd7e14; color: white;
} .priority-medium { background: #ffc107; color: #212529;
} .priority-low { background: #17a2b8; color: white;
} .category-badge { padding: 4px 8px; border-radius: 12px; font-size: 0.75rem; font-weight: 500; background: #6c757d; color: white;
} .task-description { color: #6c757d; margin-bottom: 15px; line-height: 1.5;
} .task-details { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-bottom: 15px; background: #f8f9fa; padding: 15px; border-radius: 8px; border: 1px solid #e9ecef;
} .task-detail { display: flex; align-items: center; font-size: 0.9rem; padding: 8px 12px; background: #ffffff; border-radius: 6px; border-left: 3px solid #007bff; box-shadow: 0 1px 3px rgba(0,0,0,0.1); transition: all 0.2s ease;
} .task-detail:hover { transform: translateY(-1px); box-shadow: 0 2px 6px rgba(0,0,0,0.15);
} .task-detail i { margin-right: 10px; width: 18px; color: #007bff; font-weight: bold;
} .task-detail span { font-weight: 500; color: #2c3e50;
} .task-detail-due { border-left-color: #dc3545;
} .task-detail-due i { color: #dc3545;
} .task-detail-assigned { border-left-color: #28a745;
} .task-detail-assigned i { color: #28a745;
} .task-detail-frequency { border-left-color: #ffc107;
} .task-detail-frequency i { color: #ffc107;
} .task-detail-completed { border-left-color: #17a2b8;
} .task-detail-completed i { color: #17a2b8;
} .task-actions { display: flex; gap: 10px; flex-wrap: wrap; justify-content: flex-end; border-top: 1px solid #e9ecef; padding-top: 15px; margin-top: 15px;
} .task-actions .btn { padding: 6px 12px; font-size: 0.8rem; border-radius: 4px; border: none; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: all 0.2s ease;
} .btn-complete { background: #28a745; color: white;
} .btn-complete:hover { background: #218838;
} .btn-edit { background: #17a2b8; color: white;
} .btn-edit:hover { background: #138496;
} .btn-delete { background: #dc3545; color: white;
} .btn-delete:hover { background: #c82333;
} .checklist-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); display: flex; justify-content: center; align-items: center; z-index: 1000;
} .checklist-modal-content { background: white; border-radius: 8px; padding: 30px; max-width: 600px; width: 90%; max-height: 90vh; overflow-y: auto; box-shadow: 0 10px 30px rgba(0,0,0,0.3);
} .checklist-modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 1px solid #e9ecef;
} .checklist-modal-title { font-size: 1.5rem; font-weight: 600; color: #2c3e50; margin: 0;
} .checklist-close-btn { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #6c757d; padding: 0; width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all 0.2s ease;
} .checklist-close-btn:hover { background: #f8f9fa; color: #dc3545;
} .checklist-form-group { margin-bottom: 20px;
} .checklist-form-group label { display: block; margin-bottom: 5px; font-weight: 500; color: #2c3e50;
} .checklist-form-group input,
.checklist-form-group select,
.checklist-form-group textarea { width: 100%; padding: 10px 12px; border: 1px solid #ddd; border-radius: 4px; font-size: 0.9rem; transition: border-color 0.2s ease;
} .checklist-form-group input:focus,
.checklist-form-group select:focus,
.checklist-form-group textarea:focus { outline: none; border-color: #007bff; box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
} .checklist-form-group textarea { resize: vertical; min-height: 80px;
} .checklist-form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px;
} .summary-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin-bottom: 30px;
} .summary-card { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 25px; border-radius: 12px; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.1); transition: transform 0.3s ease;
} .summary-card:hover { transform: translateY(-5px);
} .summary-card.pending { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
} .summary-card.completed { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
} .summary-card.overdue { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
} .summary-card.today { background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%); color: #2c3e50;
} .summary-number { font-size: 2.5rem; font-weight: bold; margin-bottom: 10px;
} .summary-label { font-size: 1rem; opacity: 0.9;
} .filter-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 15px; margin-bottom: 20px;
} .notification-popup { position: fixed; top: 20px; right: 20px; background: white; border: 1px solid #e9ecef; border-radius: 8px; padding: 20px; max-width: 400px; box-shadow: 0 10px 30px rgba(0,0,0,0.2); z-index: 1001; animation: slideIn 0.3s ease;
} @keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; }
} .notification-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; padding-bottom: 10px; border-bottom: 1px solid #e9ecef;
} .notification-title { font-weight: 600; color: #dc3545; margin: 0;
} .notification-content { max-height: 300px; overflow-y: auto;
} .pending-task-item { padding: 10px; border: 1px solid #e9ecef; border-radius: 4px; margin-bottom: 10px; background: #f8f9fa;
} .pending-task-title { font-weight: 500; color: #2c3e50; margin-bottom: 5px;
} .pending-task-meta { font-size: 0.8rem; color: #6c757d;
} .loading-spinner { display: inline-block; width: 20px; height: 20px; border: 3px solid rgba(255,255,255,.3); border-radius: 50%; border-top-color: #fff; animation: spin 1s ease-in-out infinite;
} @keyframes spin { to { transform: rotate(360deg); }
} .empty-state { text-align: center; padding: 60px 20px; color: #6c757d;
} .empty-state i { font-size: 4rem; margin-bottom: 20px; opacity: 0.5;
} .empty-state h3 { margin-bottom: 10px; color: #495057;
} @media (max-width: 768px) { .task-header { flex-direction: column; align-items: flex-start; gap: 10px; } .task-actions { justify-content: flex-start; } .summary-grid { grid-template-columns: 1fr; } .checklist-form-row { grid-template-columns: 1fr; } .checklist-modal-content { padding: 20px; margin: 10px; } .notification-popup { right: 10px; left: 10px; max-width: none; }
} @media (max-width: 480px) { .checklist-controls > div { flex-direction: column; align-items: stretch; } .checklist-controls .btn { margin-bottom: 10px; } .task-card { padding: 15px; } .task-details { grid-template-columns: 1fr; }
} #bulkUploadModal { z-index: 99999;
} #bulkUploadModal .modal { max-height: 90vh; overflow-y: auto;
} #bulkUploadModal .modal-body { max-height: calc(90vh - 120px); overflow-y: auto;
} #bulkUploadModal .file-upload-area { border: 2px dashed #ddd; border-radius: 8px; padding: 20px; text-align: center; transition: all 0.3s ease;
} #bulkUploadModal .file-upload-area:hover { border-color: #f39c12; background-color: #fef9e7;
} #bulkUploadModal .file-upload-area.dragover { border-color: #f39c12; background-color: #fef9e7;
} #bulkUploadModal .progress-bar { background-color: #4caf50; transition: width 0.3s ease;
} #bulkUploadModal .column-mapping select { border: 1px solid #ddd; border-radius: 4px; padding: 8px; width: 100%;
} #bulkUploadModal .column-mapping select:focus { border-color: #f39c12; outline: none; box-shadow: 0 0 0 2px rgba(243, 156, 18, 0.2);
} #bulkUploadModal .preview-table { max-height: 200px; overflow-y: auto; border: 1px solid #e0e0e0; border-radius: 4px;
} #bulkUploadModal .preview-table table { width: 100%; border-collapse: collapse; font-size: 0.9em;
} #bulkUploadModal .preview-table th,
#bulkUploadModal .preview-table td { padding: 8px; border: 1px solid #dee2e6; text-align: left;
} #bulkUploadModal .preview-table th { background-color: #f8f9fa; font-weight: 600; position: sticky; top: 0; z-index: 10;
} #bulkUploadModal .preview-table tr.invalid { background-color: #f8d7da;
} #bulkUploadModal .preview-table tr.valid { background-color: #d4edda;
} #bulkUploadModal .instruction-section { background: #e3f2fd; border-left: 4px solid #2196f3; padding: 20px; border-radius: 8px; margin-bottom: 20px;
} #bulkUploadModal .sample-format-section { background: #f8f9fa; padding: 20px; border-radius: 8px; margin-bottom: 20px;
} #bulkUploadModal .warning-section { background: #fff3cd; border: 1px solid #ffeaa7; padding: 15px; border-radius: 8px; margin-bottom: 20px;
} #bulkUploadModal .btn-upload { background-color: #f39c12; color: white; border: none; padding: 12px 24px; border-radius: 4px; cursor: pointer; font-weight: 500; transition: all 0.3s ease;
} #bulkUploadModal .btn-upload:hover:not(:disabled) { background-color: #e67e22; transform: translateY(-1px);
} #bulkUploadModal .btn-upload:disabled { opacity: 0.6; cursor: not-allowed;
} #bulkUploadModal .btn-success { background-color: #28a745; color: white; border: none; padding: 12px 20px; border-radius: 4px; cursor: pointer; font-weight: 500;
} #bulkUploadModal .btn-success:hover { background-color: #218838;
} #bulkUploadModal .progress-section { background: #e3f2fd; padding: 20px; border-radius: 8px; margin-top: 20px;
} #bulkUploadModal .progress-section h4 { color: #1976d2; margin: 0 0 15px 0;
} #bulkUploadModal .progress-wrapper { background: #fff; border-radius: 4px; overflow: hidden; margin-bottom: 10px;
} #bulkUploadModal .progress-text { font-size: 0.9em; color: #1565c0;
} @media (max-width: 768px) { #bulkUploadModal .modal { margin: 10px; max-width: calc(100% - 20px); max-height: calc(100vh - 20px); } #bulkUploadModal .column-mapping { grid-template-columns: 1fr; gap: 10px; } #bulkUploadModal .preview-table { font-size: 0.8em; } #bulkUploadModal .preview-table th, #bulkUploadModal .preview-table td { padding: 6px; font-size: 0.8em; } #bulkUploadModal .action-buttons { flex-direction: column; gap: 10px; } #bulkUploadModal .action-buttons button { width: 100%; }
} #bulkUploadModal .upload-icon { animation: float 3s ease-in-out infinite;
} @keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); }
} #bulkUploadModal .status-valid { color: #28a745; font-weight: 600;
} #bulkUploadModal .status-invalid { color: #dc3545; font-weight: 600;
} #bulkUploadModal .upload-summary { background: #d1ecf1; padding: 10px; border-radius: 4px; margin-top: 15px;
} #bulkUploadModal .upload-summary strong { font-weight: 600;
} #bulkUploadModal .loading-spinner { display: inline-block; width: 20px; height: 20px; border: 3px solid #f3f3f3; border-top: 3px solid #3498db; border-radius: 50%; animation: spin 1s linear infinite;
} @keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); }
} .newsletter-strip { position: absolute; top: -60px; left: 50%; transform: translateX(-50%); width: auto; min-width: 300px; max-width: 450px; background: linear-gradient(135deg, rgba(179, 0, 0, 0.95), rgba(139, 0, 0, 0.95)); backdrop-filter: blur(10px); border: 1px solid rgba(255, 255, 255, 0.2); height: auto; padding: 12px 24px; border-radius: 25px; overflow: visible; z-index: 10; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 8px 32px rgba(179, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2); animation: floatIn 1s ease-out 0.5s both; display: block !important; visibility: visible !important;
} .newsletter-strip::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 1s ease;
} .newsletter-strip:hover { transform: translateX(-50%) translateY(-2px) scale(1.02); box-shadow: 0 12px 40px rgba(179, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
} .newsletter-strip:hover::before { left: 100%;
} .newsletter-strip-content { display: flex; align-items: center; justify-content: center; width: 100%; position: relative;
} .newsletter-strip-text { color: white; font-weight: 600; font-size: 14px; font-family: 'Poppins', sans-serif; text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); letter-spacing: 0.3px; display: flex; align-items: center; gap: 8px; white-space: nowrap; background: linear-gradient(45deg, #f7f6f6, #f7f6f4, #f1eeca, #faf2d9); background-size: 200% 100%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: wavy 2s ease-in-out infinite, shimmer 3s linear infinite;
} @media screen and (min-width: 1024px) { .newsletter-strip-text { font-size: 15px !important; }
} @media screen and (min-width: 1366px) { .newsletter-strip-text { font-size: 14px !important; }
} @media screen and (min-width: 1440px) { .newsletter-strip-text { font-size: 15px !important; }
} @media screen and (min-width: 1920px) { .newsletter-strip-text { font-size: 16px !important; }
} .newsletter-strip-icon { font-size: 16px; animation: iconBounce 2s ease-in-out infinite; filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)); color: #ffeb3b; text-shadow: 0 0 8px rgba(255, 235, 59, 0.6);
} .newsletter-strip-text .highlight { color: #ffeb3b; font-weight: 700; text-shadow: 0 0 12px rgba(255, 235, 59, 0.8); animation: glow 2s ease-in-out infinite alternate;
} @keyframes wavy { 0%, 100% { transform: translateY(0px) rotate(0deg); } 25% { transform: translateY(-2px) rotate(0.5deg); } 50% { transform: translateY(0px) rotate(0deg); } 75% { transform: translateY(2px) rotate(-0.5deg); }
} @keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; }
} @keyframes glow { 0% { text-shadow: 0 0 12px rgba(255, 235, 59, 0.8), 0 0 20px rgba(255, 235, 59, 0.4); } 100% { text-shadow: 0 0 20px rgba(255, 235, 59, 1), 0 0 30px rgba(255, 235, 59, 0.6); }
} @keyframes floatIn { 0% { opacity: 0; transform: translateX(-50%) translateY(-20px); } 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
} @keyframes iconBounce { 0%, 100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-2px) scale(1.1); }
} .newsletter-modal { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); display: flex; align-items: center; justify-content: center; z-index: 1000; opacity: 0; visibility: hidden; transition: all 0.3s ease;
} .newsletter-modal.active { opacity: 1; visibility: visible;
} .newsletter-modal-content { background: linear-gradient(145deg, #ffffff, #f8f9fa); padding: 40px; border-radius: 20px; box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.8); text-align: center; max-width: 420px; width: 90%; transform: translateY(-50px) scale(0.9); transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: 1px solid rgba(179, 0, 0, 0.1);
} .newsletter-modal.active .newsletter-modal-content { transform: translateY(0) scale(1);
} .newsletter-modal h3 { color: #333; margin-bottom: 10px; font-size: 1.5rem;
} .newsletter-modal p { color: #666; margin-bottom: 25px; line-height: 1.6;
} .newsletter-access-form { display: flex; flex-direction: column; gap: 20px;
} .newsletter-input { padding: 12px 15px; border: 2px solid #e1e8ed; border-radius: 8px; font-size: 16px; transition: border-color 0.3s ease; text-align: center; letter-spacing: 2px;
} .newsletter-input:focus { outline: none; border-color: #4ecdc4; box-shadow: 0 0 0 3px rgba(78, 205, 196, 0.1);
} .newsletter-buttons { display: flex; gap: 15px; justify-content: center;
} .newsletter-btn { padding: 12px 25px; border: none; border-radius: 8px; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.3s ease; text-transform: uppercase; letter-spacing: 0.5px;
} .newsletter-btn.primary { background: linear-gradient(135deg, #b30000, #8b0000); color: white; position: relative; overflow: hidden;
} .newsletter-btn.primary::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 ease;
} .newsletter-btn.primary:hover { background: linear-gradient(135deg, #8b0000, #b30000); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(179, 0, 0, 0.4);
} .newsletter-btn.primary:hover::before { left: 100%;
} .newsletter-btn.secondary { background: #f8f9fa; color: #666; border: 2px solid #e1e8ed;
} .newsletter-btn.secondary:hover { background: #e9ecef; border-color: #ced4da;
} .newsletter-error { color: #dc3545; font-size: 14px; margin-top: 10px; display: none;
} .newsletter-error.show { display: block; animation: fadeIn 0.3s ease;
} @keyframes fadeIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); }
} @media (max-width: 768px) { .newsletter-strip { min-width: 280px; max-width: 350px; padding: 10px 20px; top: -60px; } .newsletter-strip:hover { transform: translateX(-50%) translateY(-2px) scale(1.01); } .newsletter-strip-text { font-size: 13px; gap: 6px; } .newsletter-strip-icon { font-size: 14px; } .newsletter-modal-content { padding: 25px; margin: 20px; } .newsletter-buttons { flex-direction: column; } .hero-badge { margin-top: 50px; }
} @media (min-width: 1024px) and (max-width: 1440px) { .newsletter-strip { top: -75px; min-width: 320px; max-width: 480px; padding: 14px 28px; } .newsletter-strip-text { font-size: 15px; gap: 10px; } .newsletter-strip-icon { font-size: 17px; } .hero-badge { margin-top: 70px; margin-bottom: 2.5rem; }
} @media (min-width: 1441px) { .newsletter-strip { top: -85px; min-width: 350px; max-width: 520px; padding: 16px 32px; } .newsletter-strip-text { font-size: 16px; gap: 12px; } .newsletter-strip-icon { font-size: 18px; } .hero-badge { margin-top: 80px; margin-bottom: 2.5rem; }
} @media (max-width: 480px) { .newsletter-strip { min-width: 250px; max-width: 300px; padding: 8px 16px; top: -50px; } .newsletter-strip-text { font-size: 12px; gap: 4px; } .newsletter-strip-text span:last-child { display: none; } .hero-badge { margin-top: 40px; }
} .hero-badge { position: relative; margin-top: 70px; margin-bottom: 2rem;
} @media (min-width: 769px) { .newsletter-strip { display: block !important; visibility: visible !important; opacity: 1 !important; }
} @media screen and (min-width: 1024px) and (max-width: 1920px) { .newsletter-strip { position: absolute !important; display: block !important; visibility: visible !important; opacity: 1 !important; z-index: 15 !important; }
} .hero-badge .newsletter-strip { position: absolute !important; top: -60px !important; left: 50% !important; transform: translateX(-50%) !important; display: block !important; visibility: visible !important; opacity: 1 !important;
} @media screen and (min-width: 1200px) and (max-width: 1440px) { .newsletter-strip-text { font-size: 13px !important; } .newsletter-strip { max-width: 400px !important; padding: 10px 20px !important; }
} @media screen and (min-width: 1441px) and (max-width: 1920px) { .newsletter-strip-text { font-size: 14px !important; } .newsletter-strip { max-width: 420px !important; padding: 12px 22px !important; top: -70px !important; }
} @media screen and (min-width: 1200px) and (max-width: 1600px) { .newsletter-strip { top: -80px; z-index: 20; position: absolute; } .hero-badge { margin-top: 75px; position: relative; z-index: 5; }
} @media screen and (min-width: 1601px) { .newsletter-strip { top: -90px; } .hero-badge { margin-top: 85px; }
} .newsletter-strip.header-newsletter { position: relative !important; top: 0 !important; left: 0 !important; transform: none !important; display: inline-flex !important; align-items: center !important; min-width: 200px !important; max-width: 240px !important; height: 38px !important; padding: 8px 14px !important; margin-right: 15px !important; border-radius: 20px !important; font-size: 14px !important; background: linear-gradient(135deg, rgba(179, 0, 0, 0.9), rgba(139, 0, 0, 0.9)) !important; animation: none !important; z-index: 1001 !important;
} .newsletter-strip.header-newsletter .newsletter-strip-content { width: 100% !important; justify-content: center !important;
} .newsletter-strip.header-newsletter .newsletter-strip-text { font-size: 14px !important; white-space: nowrap !important; text-overflow: ellipsis !important; overflow: hidden !important;
} .newsletter-strip.header-newsletter .newsletter-strip-icon { font-size: 14px !important; margin-right: 4px !important;
} .newsletter-strip.header-newsletter:hover { transform: none !important; box-shadow: 0 4px 16px rgba(179, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.2) !important;
} @media screen and (max-width: 768px) { .newsletter-strip.header-newsletter { display: none !important; }
} @media screen and (min-width: 769px) and (max-width: 1024px) { .newsletter-strip.header-newsletter { min-width: 160px !important; max-width: 180px !important; font-size: 10px !important; margin-right: 10px !important; }
} @media screen and (min-width: 1200px) and (max-width: 1440px) { .hero h1 { font-size: 3.2rem !important; line-height: 1.1 !important; margin-bottom: 0.8rem !important; } .hero-subtitle { font-size: 1.2rem !important; margin-bottom: 0.8rem !important; } .hero-description { font-size: 0.95rem !important; margin-bottom: 1.5rem !important; max-width: 550px !important; line-height: 1.5 !important; } .hero-badge { margin-bottom: 1.5rem !important; font-size: 0.9rem !important; padding: 10px 18px !important; } .hero-content { padding: 1rem 20px !important; } .stat-number { font-size: 2.2rem !important; } .stat-label { font-size: 0.85rem !important; } .hero-stats { margin: 1.5rem 0 2rem 0 !important; }
} @media screen and (min-width: 1441px) and (max-width: 1920px) { .hero h1 { font-size: 3.5rem !important; line-height: 1.1 !important; margin-bottom: 1rem !important; } .hero-subtitle { font-size: 1.3rem !important; margin-bottom: 1rem !important; } .hero-description { font-size: 1.05rem !important; margin-bottom: 1.8rem !important; max-width: 650px !important; line-height: 1.6 !important; } .hero-badge { margin-bottom: 1.8rem !important; font-size: 0.95rem !important; padding: 12px 22px !important; } .hero-content { padding: 1.5rem 30px !important; max-width: 900px !important; } .stat-number { font-size: 2.4rem !important; } .stat-label { font-size: 0.9rem !important; } .hero-stats { margin: 2rem 0 2.5rem 0 !important; gap: 2rem !important; }
} @media screen and (min-width: 1024px) { .hero-badge { position: relative !important; display: inline-flex !important; align-items: center !important; gap: 10px !important; background: rgba(255, 255, 255, 0.15) !important; backdrop-filter: blur(15px) !important; padding: 12px 20px !important; border-radius: 30px !important; border: 1px solid rgba(255, 255, 255, 0.3) !important; margin-bottom: 2rem !important; font-size: 1rem !important; font-weight: 500 !important; z-index: 5 !important; margin-top: 0 !important; } .hero-buttons { display: flex !important; justify-content: center !important; align-items: center !important; gap: 2rem !important; margin: 3rem auto !important; flex-wrap: wrap !important; max-width: 600px !important; } .hero-buttons .btn { flex: 0 0 auto !important; min-width: 170px !important; text-align: center !important; display: flex !important; align-items: center !important; justify-content: center !important; gap: 10px !important; white-space: nowrap !important; }
} @media screen and (min-width: 1366px) and (max-width: 1366px) { .hero-buttons { gap: 1.8rem !important; }
} .hero-content { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; width: 100%; max-width: 1000px; margin: 0 auto; padding: 0 20px;
} .hero-buttons .btn span { display: inline !important; white-space: nowrap !important;
}