/* ============================================================
   JAGOKERJA.ID - MAIN STYLESHEET (COMPLETE)
   Professional, Clean, Trustworthy
   ============================================================ */

/* ============================================================
   CSS VARIABLES / ROOT
   ============================================================ */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #dbeafe;
  --secondary: #6b7280;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --dark: #1f2937;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --radius: 8px;
  --radius-sm: 6px;
  --radius-lg: 12px;
  --font-family:
    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --transition: all 0.2s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-family);
  line-height: 1.4;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--gray-800);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--gray-900);
  color: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.btn-sm {
  padding: 6px 16px;
  font-size: 13px;
}
.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: var(--gray-900);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
}

.navbar-brand span {
  color: var(--primary-light);
}

.navbar-brand img {
  height: 32px;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.navbar-nav a {
  color: var(--gray-300);
  font-weight: 500;
  font-size: 14px;
  transition: var(--transition);
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--white);
  border-bottom-color: var(--primary);
}

.navbar-auth {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Notification Bell */
.notif-bell {
  position: relative;
  cursor: pointer;
  color: var(--gray-300);
  font-size: 18px;
  transition: var(--transition);
}
.notif-bell:hover {
  color: var(--white);
}

.notif-bell .badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--danger);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notif-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 340px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  padding: 16px;
  display: none;
  z-index: 1000;
  max-height: 400px;
  overflow-y: auto;
}

.notif-dropdown.active {
  display: block;
}

.notif-dropdown h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--gray-200);
}

.notif-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.notif-item:last-child {
  border-bottom: none;
}

.notif-item .icon {
  font-size: 16px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}

.notif-item .content .title {
  font-weight: 600;
  font-size: 13px;
  color: var(--gray-900);
}

.notif-item .content .time {
  font-size: 11px;
  color: var(--gray-400);
}

.notif-item.unread {
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
}

/* User Menu */
.nav-user {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  cursor: pointer;
}

.nav-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.user-name {
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
}

.user-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-xl);
  padding: 6px 0;
  min-width: 200px;
  display: none;
  z-index: 100;
}

.user-menu.active {
  display: block;
}

.user-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  color: var(--gray-700);
  font-size: 13px;
  transition: var(--transition);
}

.user-menu a:hover {
  background: var(--gray-50);
  color: var(--primary);
}

.user-menu hr {
  margin: 4px 8px;
  border: none;
  border-top: 1px solid var(--gray-200);
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  padding: 80px 0 100px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  color: var(--white);
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-300);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.hero h1 span {
  color: #60a5fa;
}

.hero p {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 32px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item .number {
  font-size: 28px;
  font-weight: 700;
  display: block;
}
.stat-item .label {
  font-size: 14px;
  opacity: 0.7;
}

/* Hero Visual Card */
.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  background: var(--white);
  color: var(--gray-800);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 32px;
  max-width: 400px;
  width: 100%;
}

.hero-card .badge {
  display: inline-block;
  background: var(--danger);
  color: var(--white);
  padding: 2px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-card .card-header {
  margin-bottom: 16px;
}

.hero-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 6px 0 0;
}

.hero-card .card-body p {
  color: var(--gray-500);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.hero-card .review-snippet {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 12px 0 16px;
  padding: 12px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.hero-card .stars {
  color: #f59e0b;
  font-weight: 600;
  font-size: 14px;
}
.hero-card .stars span {
  color: var(--gray-700);
  margin-left: 4px;
}
.hero-card .review-text {
  color: var(--gray-600);
  font-style: italic;
  font-size: 13px;
}
.hero-card .review-author {
  font-weight: 600;
  font-size: 13px;
  color: var(--gray-800);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 80px 0;
}
.section-gray {
  background: var(--gray-50);
}
.section-light {
  background: var(--white);
}
.section-dark {
  background: var(--gray-900);
  color: var(--white);
}

.section-header {
  margin-bottom: 48px;
}
.section-header.text-left {
  text-align: left;
}
.section-header.text-center {
  text-align: center;
}

.section-header .subtitle {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.section-header p {
  font-size: 18px;
  color: var(--gray-500);
  max-width: 600px;
}
.section-header.text-center p {
  margin: 0 auto;
}

/* ============================================================
   SERVICE GRID (JASA TEKNIK)
   ============================================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.service-icon {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 12px;
}
.service-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.service-card p {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 12px;
  line-height: 1.5;
}
.badge-status {
  display: inline-block;
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 11px;
  font-weight: 600;
  padding: 2px 12px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.badge-status.emergency {
  background: #fee2e2;
  color: #dc2626;
}
.badge-status.available {
  background: #d1fae5;
  color: #059669;
}

/* ============================================================
   EXPERT GRID (AHLI TERPERCAYA)
   ============================================================ */
.expert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.expert-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.expert-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.expert-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.expert-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.expert-info h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}
.expert-role {
  font-size: 13px;
  color: var(--gray-500);
}

.expert-body .expert-stats {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 12px;
}
.expert-body .expert-stats i {
  width: 18px;
}
.expert-body .expert-stats .fa-check-circle {
  color: var(--success);
}
.expert-body .expert-stats .fa-star {
  color: var(--warning);
}
.expert-skills {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 16px;
  padding: 8px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

/* ============================================================
   FEATURE GRID (LAYANAN KAMI)
   ============================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.feature-item {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.feature-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.feature-item.featured {
  border-color: var(--primary);
  background: var(--primary-light);
}

.feature-icon {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 12px;
}
.feature-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}
.feature-item p {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 12px;
  line-height: 1.5;
}
.feature-item a {
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ============================================================
   TRUST GRID (STATISTIK)
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  text-align: center;
}
.trust-item .number {
  font-size: 36px;
  font-weight: 800;
  color: var(--white);
  display: block;
}
.trust-item .label {
  color: var(--gray-400);
  font-size: 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand h3 {
  color: var(--white);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.footer-brand h3 span {
  color: var(--primary-light);
}
.footer-brand .slogan {
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 12px;
}
.footer-brand p {
  opacity: 0.7;
  font-size: 14px;
  max-width: 300px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--gray-400);
  font-size: 16px;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-links h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links ul li {
  margin-bottom: 8px;
}
.footer-links ul li a {
  color: var(--gray-400);
  font-size: 14px;
  transition: var(--transition);
}
.footer-links ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  opacity: 0.6;
}
.footer-bottom .contact-info {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
}
.footer-bottom .contact-info a {
  color: var(--gray-400);
  transition: var(--transition);
}
.footer-bottom .contact-info a:hover {
  color: var(--white);
}
.footer-bottom .contact-info i {
  margin-right: 6px;
  color: var(--primary);
}

/* ============================================================
   FLOATING HELP BUTTON
   ============================================================ */
.help-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
}

.help-float .help-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  border: none;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.help-float .help-toggle:hover {
  transform: scale(1.05);
  background: var(--primary-dark);
}

.help-float .help-menu {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 340px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  padding: 20px;
  display: none;
  max-height: 500px;
  overflow-y: auto;
}
.help-float .help-menu.active {
  display: block;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.help-float .help-menu h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--gray-900);
}

.help-float .help-menu .faq-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
}
.help-float .help-menu .faq-item:hover {
  color: var(--primary);
}
.help-float .help-menu .faq-item:last-child {
  border-bottom: none;
}

.help-float .help-menu .faq-answer {
  display: none;
  padding: 8px 0 12px;
  font-size: 13px;
  color: var(--gray-600);
  line-height: 1.6;
}
.help-float .help-menu .faq-answer.active {
  display: block;
}

.help-float .help-menu .whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: var(--white);
  padding: 12px;
  border-radius: var(--radius-sm);
  margin-top: 16px;
  font-weight: 600;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-family);
  font-size: 14px;
}
.help-float .help-menu .whatsapp-btn:hover {
  background: #1da851;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .hero p {
    margin: 0 auto 32px;
    max-width: 100%;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-visual {
    justify-content: center;
  }
  .section-header.text-left {
    text-align: center;
  }
  .section-header p {
    margin: 0 auto;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .navbar-toggle {
    display: flex;
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--gray-900);
    flex-direction: column;
    padding: 60px 24px 24px;
    transition: var(--transition);
    gap: 16px;
    overflow-y: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
  }
  .navbar-menu.active {
    right: 0;
  }

  .navbar-nav {
    flex-direction: column;
    width: 100%;
    gap: 4px;
  }
  .navbar-nav a {
    display: block;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .navbar-auth {
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-top: 16px;
  }
  .navbar-auth .btn {
    width: 100%;
    justify-content: center;
  }

  .nav-user {
    width: 100%;
    justify-content: center;
    padding: 8px 0;
  }
  .user-menu {
    position: static;
    box-shadow: none;
    padding: 0;
    margin-top: 8px;
    background: transparent;
  }
  .user-menu a {
    color: var(--gray-300);
    padding: 8px 0;
  }
  .user-menu a:hover {
    background: transparent;
    color: var(--white);
  }
  .user-menu hr {
    border-color: rgba(255, 255, 255, 0.1);
  }

  .hero {
    padding: 50px 0 70px;
    min-height: auto;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero p {
    font-size: 16px;
  }
  .hero-card {
    padding: 24px;
    max-width: 100%;
  }
  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .section {
    padding: 50px 0;
  }
  .section-header h2 {
    font-size: 28px;
  }
  .section-header p {
    font-size: 16px;
  }

  .service-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
  }
  .expert-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .trust-item .number {
    font-size: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .footer-brand p {
    max-width: 100%;
  }
  .footer-social {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .footer-bottom .contact-info {
    justify-content: center;
    gap: 12px;
  }

  .help-float .help-menu {
    width: 290px;
    right: -10px;
  }
  .notif-dropdown {
    width: 300px;
    right: -60px;
  }
}

/* Mobile Small */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 26px;
  }
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-top: 24px;
    padding-top: 16px;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .help-float {
    bottom: 16px;
    right: 16px;
  }
  .help-float .help-toggle {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
  .help-float .help-menu {
    width: 260px;
    right: -10px;
    bottom: 60px;
    padding: 16px;
  }
}

/* Landscape mode */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    padding: 30px 0;
    min-height: auto;
  }
  .hero h1 {
    font-size: 24px;
  }
  .hero p {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .hero-stats {
    margin-top: 16px;
    padding-top: 12px;
  }
  .hero-card {
    padding: 16px;
  }
  .section {
    padding: 30px 0;
  }
}
