/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; line-height: 1.6; color: #333; background: #f8f9fa; }

/* Header */
header { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 1rem 0; position: fixed; width: 100%; top: 0; z-index: 1000; box-shadow: 0 2px 20px rgba(0,0,0,0.1); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); transition: all 0.3s ease; }
header.scrolled { background: rgba(102, 126, 234, 0.95); padding: 0.5rem 0; }
nav { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 2rem; }
.logo { font-size: 2rem; font-weight: bold; background: linear-gradient(45deg, #fff, #f0f0f0); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-decoration: none; }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-links a { color: white; text-decoration: none; font-weight: 500; transition: all 0.3s ease; padding: 0.5rem 1rem; border-radius: 25px; }
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.mobile-menu { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* Hero */
.hero { background: linear-gradient(135deg, #3498db 0%, #2980b9 100%); color: white; padding: 120px 0 60px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 80%; height: 200%; background: linear-gradient(45deg, rgba(255,255,255,0.1), transparent); transform: rotate(15deg); animation: float 20s infinite linear; }
@keyframes float { 0% { transform: translateY(0px) rotate(15deg); } 50% { transform: translateY(-20px) rotate(15deg); } 100% { transform: translateY(0px) rotate(15deg); } }
.hero-content { max-width: 800px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 2; }
.hero h1 { font-size: 2.8rem; margin-bottom: 1rem; font-weight: 700; text-shadow: 2px 2px 4px rgba(0,0,0,0.3); }
.hero p { font-size: 1.2rem; opacity: 0.9; margin-bottom: 2rem; }

/* Search Bar */
.search-container { max-width: 600px; margin: 0 auto; position: relative; }
.search-bar { width: 100%; padding: 1rem 1.5rem; padding-right: 4rem; border: none; border-radius: 50px; font-size: 1.1rem; box-shadow: 0 10px 30px rgba(0,0,0,0.2); background: rgba(255,255,255,0.95); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); transition: all 0.3s ease; }
.search-bar:focus { outline: none; box-shadow: 0 15px 40px rgba(0,0,0,0.3); background: white; }
.search-btn { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); background: linear-gradient(135deg, #ff6b6b, #ee5a24); border: none; color: white; padding: 12px 16px; border-radius: 50%; cursor: pointer; transition: all 0.3s ease; }
.search-btn:hover { transform: translateY(-50%) scale(1.1); box-shadow: 0 5px 15px rgba(238, 90, 36, 0.4); }

.popular-searches { margin-top: 1.5rem; text-align: center; }
.popular-searches span { font-size: 0.9rem; margin-right: 1rem; opacity: 0.8; }
.popular-tag { background: rgba(255,255,255,0.2); color: white; padding: 0.3rem 0.8rem; border-radius: 20px; text-decoration: none; font-size: 0.9rem; margin: 0.2rem; display: inline-block; transition: all 0.3s ease; border: 1px solid rgba(255,255,255,0.3); }
.popular-tag:hover { background: rgba(255,255,255,0.3); transform: translateY(-2px); }

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

/* Quick Actions */
.quick-actions { padding: 3rem 0; background: white; }
.section-title { text-align: center; font-size: 2.2rem; margin-bottom: 1rem; color: #2c3e50; font-weight: 700; }
.section-subtitle { text-align: center; font-size: 1.1rem; color: #666; margin-bottom: 3rem; max-width: 600px; margin-left: auto; margin-right: auto; }
actions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.actions-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.action-card { background: white; padding: 2.5rem 2rem; border-radius: 20px; text-align: center; box-shadow: 0 10px 40px rgba(0,0,0,0.1); transition: all 0.3s ease; border: 2px solid transparent; cursor: pointer; text-decoration: none; color: inherit; }
.action-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(0,0,0,0.15); border-color: #3498db; }
.action-icon { font-size: 3rem; margin-bottom: 1.5rem; color: #3498db; background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(41, 128, 185, 0.1)); width: 100px; height: 100px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.action-card h3 { font-size: 1.4rem; margin-bottom: 1rem; color: #2c3e50; }
.action-card p { color: #666; line-height: 1.6; }

/* FAQ Categories */
.faq-categories { padding: 3rem 0; background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); }
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; margin-top: 3rem; }
.category-card { background: white; padding: 2rem; border-radius: 15px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: all 0.3s ease; }
.category-card:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
.category-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.category-icon { font-size: 2rem; color: #3498db; background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(41, 128, 185, 0.1)); padding: 1rem; border-radius: 50%; }
.category-card h3 { font-size: 1.3rem; color: #2c3e50; }
.faq-list { list-style: none; }
.faq-item { margin-bottom: 1rem; }
.faq-item a { color: #555; text-decoration: none; padding: 0.8rem 0; display: block; border-bottom: 1px solid #eee; transition: all 0.3s ease; position: relative; padding-left: 1.5rem; }
.faq-item a::before { content: '?'; position: absolute; left: 0; top: 50%; transform: translateY(-50%); background: #3498db; color: white; width: 20px; height: 20px; border-radius: 50%; font-size: 0.8rem; display: flex; align-items: center; justify-content: center; font-weight: bold; }
.faq-item a:hover { color: #3498db; padding-left: 2rem; }

/* Support Options */
.support-options { padding: 3rem 0; background: white; }
.support-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.support-card { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: white; padding: 2.5rem 2rem; border-radius: 20px; text-align: center; transition: all 0.3s ease; }
.support-card:hover { transform: translateY(-10px); box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3); }
.support-card h3 { font-size: 1.4rem; margin-bottom: 1rem; display: flex; align-items: center; justify-content: center; gap: 0.5rem; }
.support-card p { margin-bottom: 2rem; opacity: 0.9; }
.support-btn { background: rgba(255,255,255,0.2); color: white; border: 2px solid rgba(255,255,255,0.3); padding: 12px 24px; border-radius: 50px; text-decoration: none; font-weight: 600; transition: all 0.3s ease; display: inline-block; }
.support-btn:hover { background: rgba(255,255,255,0.3); transform: translateY(-2px); }
/* Support notes under buttons */
.support-note { margin-top: 1rem; font-size: 0.9rem; opacity: 0.8; }

/* Status Banner */
.status-banner { background: linear-gradient(135deg, #2ecc71, #27ae60); color: white; padding: 1rem; text-align: center; position: relative; overflow: hidden; }
.status-banner::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); animation: shine 3s infinite; }
@keyframes shine { 0% { left: -100%; } 100% { left: 100%; } }
.status-indicator { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; }
.status-dot { width: 10px; height: 10px; background: #fff; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* Footer */
footer { background: #2c3e50; color: white; padding: 50px 0 30px; margin-top: 3rem; }
.footer-content { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-section h3 { margin-bottom: 1rem; color: #3498db; }
.footer-section p, .footer-section a { color: #bdc3c7; text-decoration: none; line-height: 1.8; transition: all 0.3s ease; }
.footer-section a:hover { color: #3498db; }
.footer-bottom { border-top: 1px solid #34495e; padding-top: 2rem; text-align: center; color: #7f8c8d; max-width: 1200px; margin: 0 auto; padding-left: 2rem; padding-right: 2rem; }

/* Responsive */
@media (max-width: 768px) {
  .mobile-menu { display: block; }
  .nav-links { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1.1rem; }
  .search-bar { font-size: 1rem; padding: 0.9rem 1.3rem; padding-right: 3.5rem; }
  .actions-grid, .categories-grid, .support-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.8rem; }
  .container { padding: 0 1rem; }
  .popular-searches { text-align: left; }
  .popular-tag { margin: 0.2rem 0.2rem 0.2rem 0; }
}

/* Search Results */
.search-results { display: none; background: white; border-radius: 15px; box-shadow: 0 10px 40px rgba(0,0,0,0.1); margin: 2rem 0; padding: 2rem; }
.search-results.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.result-item { padding: 1rem; border-bottom: 1px solid #eee; transition: all 0.3s ease; }
.result-item:hover { background: #f8f9fa; }
.result-item:last-child { border-bottom: none; }
.result-title { font-weight: 600; color: #2c3e50; margin-bottom: 0.5rem; }
.result-snippet { color: #666; font-size: 0.9rem; }
.no-results { text-align: center; padding: 3rem; color: #666; }
.no-results i { font-size: 4rem; margin-bottom: 1rem; opacity: 0.3; }
