/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
  touch-action: manipulation;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  word-wrap: break-word;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; -webkit-tap-highlight-color: transparent; }
ul { list-style: none; }

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* ===== HEADER ===== */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-link { display: flex; align-items: center; }
.logo-img { height: 50px; width: auto; max-width: 200px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-item { position: relative; }
.nav-item > a {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 6px;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-item > a:hover { background: rgba(139,195,74,0.08); color: #689F38; }
.nav-item .arrow { font-size: 10px; color: #999; transition: transform 0.2s; }

.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-radius: 10px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  border: 1px solid #f0f0f0;
  z-index: 1001;
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 13px;
  color: #444;
  transition: all 0.15s;
}
.dropdown a:hover { background: #f8faf8; color: #689F38; }
.dropdown a img { width: 24px; height: 24px; flex-shrink: 0; }

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-login {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  padding: 8px 14px;
}
.lang-switch {
  font-size: 13px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 6px;
  white-space: nowrap;
}
.finance-prices {
  font-size: 11px;
  color: #666;
  border: 1px solid #ddd;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  transition: all 0.2s;
}
.finance-prices:hover { border-color: #8BC34A; color: #689F38; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  color: #333;
  -webkit-tap-highlight-color: transparent;
}

/* ===== HERO ===== */
.hero {
  background: #f7f8f9;
  padding: 60px 16px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.hero h1 { font-size: 36px; font-weight: 700; color: #222; margin-bottom: 10px; line-height: 1.2; }
.hero p { font-size: 17px; color: #777; }

/* ===== PRODUCTS ===== */
.products { padding: 30px 16px 60px; background: #f7f8f9; }
.product-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
.product-card { text-align: center; }
.card-img-wrap {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card-img-wrap img { max-height: 180px; max-width: 100%; width: auto; object-fit: contain; }
.product-card h3 { font-size: 20px; font-weight: 600; color: #222; margin-bottom: 10px; }
.product-card p { font-size: 14px; color: #777; line-height: 1.6; margin-bottom: 18px; min-height: 66px; }
.btn-apply {
  display: inline-block;
  background: #8BC34A;
  color: #fff;
  padding: 12px 40px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s;
  min-width: 140px;
  text-align: center;
}
.btn-apply:hover { background: #7CB342; transform: translateY(-1px); }
.btn-apply:active { transform: scale(0.98); }

/* ===== ABOUT ===== */
.about-section {
  padding: 60px 16px;
  background: #fff;
  text-align: center;
}
.about-text { max-width: 800px; margin: 0 auto 40px; }
.about-text h2 { font-size: 26px; font-weight: 700; color: #222; line-height: 1.3; margin-bottom: 16px; }
.about-text p { font-size: 15px; color: #666; line-height: 1.7; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto 30px;
}
.feature { text-align: center; }
.feature img { height: 55px; width: auto; margin: 0 auto 12px; }
.feature h4 { font-size: 17px; font-weight: 600; color: #222; margin-bottom: 6px; }
.feature p { font-size: 13px; color: #888; line-height: 1.5; }
.btn-about {
  display: inline-block;
  border: 2px solid #8BC34A;
  color: #8BC34A;
  padding: 12px 35px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  min-width: 160px;
  text-align: center;
}
.btn-about:hover { background: #8BC34A; color: #fff; }

/* ===== APP ===== */
.app-section {
  background: #1a1a2e;
  color: #fff;
  padding: 50px 16px;
}
.app-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  gap: 40px;
}
.app-content { flex: 1; min-width: 0; }
.app-content h2 { font-size: 26px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.app-content p { font-size: 15px; color: #aaa; margin-bottom: 24px; }
.store-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #333;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  transition: transform 0.2s;
  min-width: 140px;
  justify-content: center;
}
.store-btn:hover { transform: scale(1.03); }
.store-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.store-btn span { display: flex; flex-direction: column; line-height: 1.2; }
.store-btn small { font-size: 9px; font-weight: 400; color: #666; }
.app-mockup { flex: 1; text-align: right; min-width: 0; }
.app-mockup img { max-height: 320px; width: auto; }

/* ===== FOOTER ===== */
.site-footer {
  background: #1a1a2e;
  color: #fff;
  padding: 40px 16px 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 35px;
}
.footer-brand img { height: 40px; margin-bottom: 10px; }
.footer-brand p { font-size: 13px; color: #aaa; line-height: 1.6; margin-bottom: 12px; }
.footer-scb { height: 36px; width: auto; }
.footer-links h4 { font-size: 14px; font-weight: 600; margin-bottom: 16px; color: #fff; }
.footer-links a { display: block; font-size: 13px; color: #aaa; margin-bottom: 10px; transition: color 0.2s; }
.footer-links a:hover { color: #8BC34A; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-bottom p { font-size: 12px; color: #777; margin-bottom: 4px; }

/* ===== LOGIN PAGE ===== */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a5d3a 0%, #2d8a5a 100%);
  padding: 20px;
}
.login-box {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 16px 50px rgba(0,0,0,0.25);
}
.login-logo { text-align: center; margin-bottom: 24px; }
.login-logo img { height: 44px; margin: 0 auto; }
.login-logo div { color: #1a5d3a; font-size: 18px; font-weight: 700; }
.step-indicator { display: flex; justify-content: center; gap: 6px; margin-bottom: 24px; }
.step-dot { width: 8px; height: 8px; border-radius: 50%; background: #ddd; transition: all 0.3s; }
.step-dot.active { background: #1a5d3a; width: 24px; border-radius: 4px; }
.step-content { display: none; }
.step-content.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.login-box h2 { text-align: center; color: #1a5d3a; margin-bottom: 6px; font-size: 20px; }
.subtitle { text-align: center; color: #999; font-size: 13px; margin-bottom: 22px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; margin-bottom: 6px; font-weight: 600; color: #444; font-size: 13px; }
.form-control {
  width: 100%;
  padding: 14px 14px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s;
  background: #fff;
  -webkit-appearance: none;
}
.form-control:focus { outline: none; border-color: #1a5d3a; }
.otp-inputs { display: flex; gap: 10px; justify-content: center; direction: ltr; }
.otp-inputs .form-control { width: 56px; height: 56px; text-align: center; font-size: 22px; padding: 0; border-radius: 12px; }
.btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary { background: #1a5d3a; color: #fff; }
.btn-primary:hover { background: #144a2d; }
.btn-primary:active { transform: scale(0.98); }
.login-links { display: flex; justify-content: space-between; margin-top: 16px; font-size: 13px; gap: 10px; }
.login-links a { color: #1a5d3a; padding: 4px; }
.login-links a:hover { text-decoration: underline; }
.success-message { text-align: center; padding: 16px 0; }
.success-message .icon {
  width: 64px; height: 64px;
  background: rgba(26,93,58,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  color: #1a5d3a;
}
.success-message h3 { color: #1a5d3a; margin-bottom: 8px; font-size: 18px; }
.success-message p { color: #666; font-size: 13px; }

/* ===== ADMIN ===== */
.admin-page { min-height: 100vh; background: #f5f7f9; }
.admin-header { background: #1a5d3a; color: #fff; padding: 14px 0; }
.admin-header .container { display: flex; justify-content: space-between; align-items: center; }
.admin-header h1 { font-size: 17px; }
.admin-header a { color: #fff; margin-left: 16px; font-size: 13px; }
.admin-body { padding: 24px 16px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.stat-card { background: #fff; border-radius: 12px; padding: 20px; box-shadow: 0 1px 6px rgba(0,0,0,0.04); }
.stat-card h4 { font-size: 12px; color: #888; margin-bottom: 8px; }
.stat-card .value { font-size: 26px; font-weight: 700; color: #1a5d3a; }
.data-table { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 1px 6px rgba(0,0,0,0.04); }
.data-table-header {
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.data-table-header h3 { font-size: 16px; color: #333; }
.btn-sm { padding: 8px 16px; font-size: 13px; width: auto; min-height: 36px; }
.btn-outline { background: transparent; color: #1a5d3a; border: 2px solid #1a5d3a; }
.btn-outline:hover { background: #1a5d3a; color: #fff; }
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; min-width: 600px; }
thead { background: #f8faf9; }
th, td { padding: 12px 16px; text-align: right; font-size: 13px; }
th { font-weight: 600; color: #555; font-size: 12px; white-space: nowrap; }
td { color: #444; border-bottom: 1px solid #f0f0f0; }
tr:hover td { background: #f8faf9; }
.status { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.status-success { background: rgba(40,167,69,0.1); color: #28a745; }
.status-pending { background: rgba(255,193,7,0.1); color: #ffc107; }
.status-failed { background: rgba(220,53,69,0.1); color: #dc3545; }
.empty-state { text-align: center; padding: 40px 16px; }
.empty-state p { color: #888; font-size: 14px; }

/* ===== PAGE BANNER ===== */
.page-banner {
  background: linear-gradient(135deg, #1a5d3a, #2d8a5a);
  color: #fff;
  padding: 50px 16px;
  text-align: center;
}
.page-banner h1 { font-size: 32px; margin-bottom: 8px; line-height: 1.2; }
.page-banner p { opacity: 0.9; font-size: 15px; }

/* ===== CONTENT PAGES ===== */
.content-section { padding: 40px 16px; }
.content-section h2 { font-size: 24px; color: #1a5d3a; margin-bottom: 16px; line-height: 1.3; }
.content-section p { color: #555; margin-bottom: 12px; line-height: 1.7; font-size: 15px; }
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.content-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #eee;
}
.content-card h3 { color: #1a5d3a; margin-bottom: 10px; font-size: 17px; }
.content-card p { color: #666; font-size: 14px; }

/* ===== OFFERS ===== */
.offers { padding: 40px 16px; background: #f8faf9; }
.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.offer-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid #eee;
}
.offer-card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.offer-card img { width: 100%; height: 200px; object-fit: cover; }
.offer-content { padding: 20px; }
.offer-content h3 { font-size: 17px; color: #1a5d3a; margin-bottom: 8px; }
.offer-content p { color: #666; font-size: 14px; margin-bottom: 12px; }
.offer-tag {
  display: inline-block;
  background: rgba(26, 93, 58, 0.08);
  color: #1a5d3a;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* ===== BRANCHES ===== */
.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.branch-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #eee;
  transition: box-shadow 0.3s;
}
.branch-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.branch-card h4 { color: #1a5d3a; margin-bottom: 8px; font-size: 16px; }
.branch-card p { color: #666; font-size: 13px; margin-bottom: 4px; }

/* ===== CAREERS ===== */
.job-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #eee;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.job-info h4 { color: #333; margin-bottom: 4px; font-size: 16px; }
.job-info span { color: #888; font-size: 13px; }

/* ===== FAQ ===== */
.faq-section { padding: 40px 16px; background: #f8faf9; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid #eee;
}
.faq-question {
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  color: #333;
  font-size: 15px;
  transition: color 0.2s;
  gap: 12px;
  min-height: 48px;
}
.faq-question:hover { color: #1a5d3a; }
.faq-question i { transition: transform 0.3s; color: #1a5d3a; font-size: 12px; flex-shrink: 0; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item.active .faq-answer { padding: 0 20px 16px; max-height: 300px; }
.faq-answer p { color: #666; font-size: 14px; line-height: 1.7; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 50px 16px; background: #fff; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: #f8faf9;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid #eee;
}
.testimonial-card .stars { color: #ffc107; margin-bottom: 12px; font-size: 16px; }
.testimonial-card p { color: #555; font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testimonial-author h5 { font-size: 14px; color: #333; }
.testimonial-author span { font-size: 12px; color: #888; }

/* ===== SERVICES ===== */
.services { padding: 50px 16px; background: #f8faf9; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid #eee;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 32px rgba(26,93,58,0.1); }
.service-icon {
  width: 60px; height: 60px;
  background: rgba(26,93,58,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 24px;
}
.service-card h3 { font-size: 18px; color: #1a5d3a; margin-bottom: 10px; }
.service-card p { color: #666; font-size: 13px; line-height: 1.6; margin-bottom: 16px; }

/* ===== ABOUT FEATURES ===== */
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.feature-item .icon {
  width: 40px; height: 40px;
  background: rgba(26,93,58,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #1a5d3a;
  font-size: 16px;
  flex-shrink: 0;
}
.feature-item h4 { font-size: 14px; color: #333; margin-bottom: 3px; }
.feature-item span { font-size: 12px; color: #777; }

/* ===== RESPONSIVE ===== */

/* Tablet (768px - 991px) */
@media (max-width: 991px) {
  .product-cards { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .app-section .container { flex-direction: column; text-align: center; }
  .app-mockup { text-align: center; margin-top: 24px; }
  .about .container { flex-direction: column; gap: 30px; }
  .hero h1 { font-size: 30px; }
  .offers-grid { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
  .mobile-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 12px 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-top: 1px solid #eee;
    max-height: 70vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .main-nav.active { display: flex; }
  .nav-item { width: 100%; }
  .nav-item > a { padding: 12px 8px; font-size: 15px; justify-content: space-between; }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-left: 3px solid #8BC34A;
    padding-left: 8px;
    margin: 4px 0;
    display: none;
    min-width: auto;
  }
  .nav-item.has-dropdown.open .dropdown { display: block; }
  .header-right { display: none; }
  .logo-img { height: 32px; }

  .hero { padding: 40px 16px 30px; }
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 15px; }

  .product-cards { grid-template-columns: 1fr; gap: 32px; }
  .card-img-wrap { height: 160px; }
  .card-img-wrap img { max-height: 140px; }
  .product-card h3 { font-size: 18px; }
  .product-card p { font-size: 14px; min-height: auto; }
  .btn-apply { width: 100%; max-width: 280px; padding: 14px; font-size: 15px; }

  .about-section { padding: 40px 16px; }
  .about-text h2 { font-size: 20px; }
  .features-grid { grid-template-columns: 1fr; gap: 20px; }
  .feature img { height: 48px; }
  .btn-about { width: 100%; max-width: 280px; }

  .app-section { padding: 40px 16px; }
  .app-content h2 { font-size: 22px; }
  .store-btns { justify-content: center; }
  .store-btn { flex: 1; max-width: 160px; }
  .app-mockup img { max-height: 240px; }

  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-brand img { height: 36px; }
  .footer-bottom p { font-size: 11px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-card .value { font-size: 22px; }

  .page-banner { padding: 36px 16px; }
  .page-banner h1 { font-size: 24px; }

  .content-grid { grid-template-columns: 1fr; }
  .branches-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }

  .login-box { padding: 24px 16px; max-width: 100%; }
  .otp-inputs .form-control { width: 52px; height: 52px; }
  .faq-question { font-size: 14px; }
  .job-card { flex-direction: column; align-items: flex-start; }
  .offer-card img { height: 180px; }
}

/* Small Mobile (< 380px) */
@media (max-width: 379px) {
  .hero h1 { font-size: 22px; }
  .about-text h2 { font-size: 18px; }
  .app-content h2 { font-size: 19px; }
  .product-card h3 { font-size: 17px; }
  .page-banner h1 { font-size: 20px; }
  .stat-card .value { font-size: 20px; }
  .otp-inputs .form-control { width: 48px; height: 48px; font-size: 20px; }
  .login-box { padding: 20px 14px; }
}

/* Touch improvements */
@media (pointer: coarse) {
  .nav-item > a, .dropdown a, .btn-apply, .btn-about, .btn, .faq-question, .store-btn {
    min-height: 44px;
  }
  .form-control { font-size: 16px; }
}
