/* ============================================
   ApnaGharGaadi — Brand Design System
   Primary Green : #7BC043
   Primary Blue  : #1D4F7A
   Font          : Helvetica Neue / Helvetica
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:      #7BC043;
  --green-d:    #5fa030;
  --green-l:    #a3d96e;
  --green-bg:   #f0f8e8;
  --blue:       #1D4F7A;
  --blue-d:     #163c5e;
  --blue-l:     #2d6fa8;
  --blue-bg:    #e8f0f8;
  --white:      #ffffff;
  --light:      #f5f8fa;
  --light2:     #eef2f7;
  --border:     #dde5ed;
  --text:       #1a2e3b;
  --muted:      #5a7080;
  --shadow-sm:  0 2px 8px rgba(29,79,122,0.08);
  --shadow:     0 4px 20px rgba(29,79,122,0.12);
  --shadow-lg:  0 12px 40px rgba(29,79,122,0.18);
  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  22px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text);
  background: #fafcfe;
  line-height: 1.6;
  font-size: 15px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ── TOPBAR ── */
.topbar {
  background: var(--blue);
  color: rgba(255,255,255,0.88);
  font-size: 12.5px;
  padding: 8px 0;
}
.topbar-inner {
  max-width: 1300px; margin: 0 auto; padding: 0 24px;
  display: flex; gap: 18px; align-items: center; flex-wrap: wrap;
}
.topbar strong { color: var(--green-l); }

/* ── NAVBAR ── */
.navbar {
  position: sticky; top: 0; z-index: 999;
  background: white;
  box-shadow: 0 2px 12px rgba(29,79,122,0.1);
  border-bottom: 3px solid var(--green);
}
.nav-container {
  max-width: 1300px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 16px;
  height: 68px;
}

/* Logo */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 50px; width: auto; object-fit: contain; }

/* Nav Links */
.nav-links {
  display: flex; gap: 2px; align-items: center; flex: 1; margin-left: 12px;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 13px; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: var(--text);
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-links > li > a:hover { background: var(--blue-bg); color: var(--blue); }
.nav-links .arrow { font-size: 9px; opacity: 0.5; }

/* Dropdown */
.has-dropdown:hover .dropdown { display: block; }
.dropdown {
  display: none; position: absolute; top: calc(100% + 6px); left: 0;
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); min-width: 210px;
  border: 1px solid var(--border); z-index: 1000; padding: 8px;
  border-top: 3px solid var(--green);
}
.dropdown a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-size: 14px; color: var(--text); font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.dropdown a:hover { background: var(--blue-bg); color: var(--blue); }

/* Nav Actions */
.nav-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.btn-post {
  background: var(--green); color: white;
  padding: 9px 20px; border-radius: 8px; font-weight: 700; font-size: 14px;
  transition: background 0.2s, transform 0.15s;
}
.btn-post:hover { background: var(--green-d); transform: translateY(-1px); }
.btn-login {
  color: var(--blue); font-weight: 600; font-size: 14px;
  padding: 9px 16px; border-radius: 8px;
  border: 2px solid var(--border); transition: border-color 0.2s;
}
.btn-login:hover { border-color: var(--blue); }
.btn-register {
  background: var(--blue); color: white;
  padding: 9px 20px; border-radius: 8px; font-weight: 700; font-size: 14px;
  transition: background 0.2s;
}
.btn-register:hover { background: var(--blue-d); }

/* User Menu */
.user-menu { position: relative; }
.user-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: white; font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.user-menu:hover .user-dropdown { display: block; }
.user-dropdown {
  display: none; position: absolute; right: 0; top: calc(100% + 8px);
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); min-width: 190px;
  border: 1px solid var(--border); z-index: 1000; padding: 8px;
  border-top: 3px solid var(--green);
}
.user-dropdown a {
  display: block; padding: 10px 14px; border-radius: 8px;
  font-size: 14px; transition: background 0.15s;
}
.user-dropdown a:hover { background: var(--blue-bg); color: var(--blue); }
.user-dropdown hr { margin: 6px 0; border: none; border-top: 1px solid var(--border); }

.hamburger { display: none; font-size: 22px; background: none; border: none; cursor: pointer; color: var(--blue); }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--blue) 0%, #163c5e 45%, #1a4a70 100%);
  color: white; position: relative; overflow: hidden;
  padding: 80px 24px 100px;
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 55%, rgba(123,192,67,0.18) 0%, transparent 45%),
    radial-gradient(circle at 85% 20%, rgba(123,192,67,0.1) 0%, transparent 40%);
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-content {
  max-width: 1300px; margin: 0 auto; position: relative; z-index: 2;
  text-align: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(123,192,67,0.2); border: 1px solid rgba(123,192,67,0.5);
  color: #c6f089; padding: 7px 18px; border-radius: 20px;
  font-size: 13px; font-weight: 600; margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(34px, 6vw, 66px);
  font-weight: 800; line-height: 1.1; margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero h1 .accent-green { color: var(--green); }
.hero p.hero-desc {
  font-size: 18px; color: rgba(255,255,255,0.72);
  max-width: 580px; margin: 0 auto 38px; line-height: 1.7;
}

/* Search Box */
.hero-search {
  background: white; border-radius: var(--radius-xl);
  padding: 10px; display: flex; gap: 8px;
  max-width: 780px; margin: 0 auto 44px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35); flex-wrap: wrap;
}
.search-tab-btns { width: 100%; display: flex; gap: 6px; padding: 0 4px 4px; }
.stab {
  padding: 8px 18px; border-radius: 8px; font-size: 13px;
  font-weight: 700; cursor: pointer; border: none; background: var(--light2);
  color: var(--muted); transition: all 0.2s;
}
.stab.active { background: var(--blue); color: white; }
.search-select, .search-input {
  flex: 1; min-width: 140px; padding: 13px 16px;
  border: 2px solid var(--border); border-radius: 10px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 14px; color: var(--text); outline: none;
  transition: border-color 0.2s; background: white;
}
.search-select:focus, .search-input:focus { border-color: var(--green); }
.search-btn {
  background: linear-gradient(135deg, var(--green), var(--green-d));
  color: white; padding: 13px 30px; border-radius: 10px;
  font-weight: 800; font-size: 15px; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(123,192,67,0.4);
}
.search-btn:hover { transform: scale(1.03); box-shadow: 0 6px 24px rgba(123,192,67,0.55); }

/* Hero Stats */
.hero-stats { display: flex; gap: 48px; justify-content: center; flex-wrap: wrap; }
.h-stat { text-align: center; }
.h-stat .num { font-size: 32px; font-weight: 800; color: var(--green); display: block; }
.h-stat .lbl { font-size: 11px; color: rgba(255,255,255,0.55); letter-spacing: 1.5px; text-transform: uppercase; }

/* ── SECTIONS ── */
section { padding: 72px 24px; }
.container { max-width: 1300px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 50px; }
.sec-label { font-size: 11px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--green); margin-bottom: 10px; display: block; }
.sec-title { font-size: clamp(26px, 4vw, 40px); font-weight: 800; color: var(--blue); line-height: 1.2; margin-bottom: 12px; letter-spacing: -0.5px; }
.sec-sub { color: var(--muted); font-size: 16px; max-width: 520px; margin: 0 auto; line-height: 1.7; }

/* ── CATEGORY CARDS ── */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 14px; }
.cat-card {
  background: white; border-radius: var(--radius-lg);
  padding: 24px 14px; text-align: center; border: 2px solid var(--border);
  transition: all 0.25s; cursor: pointer; display: block; box-shadow: var(--shadow-sm);
}
.cat-card:hover { border-color: var(--green); transform: translateY(-5px); box-shadow: 0 8px 28px rgba(123,192,67,0.2); }
.cat-icon { font-size: 34px; margin-bottom: 10px; display: block; }
.cat-name { font-size: 13px; font-weight: 700; color: var(--blue); }
.cat-count { font-size: 11px; color: var(--muted); margin-top: 3px; }

/* ── LISTING CARDS ── */
.listing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(288px, 1fr)); gap: 22px; }
.listing-card {
  background: white; border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1.5px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  display: flex; flex-direction: column;
}
.listing-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(29,79,122,0.15); border-color: var(--green); }
.card-img { position: relative; overflow: hidden; height: 196px; background: var(--blue-bg); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.listing-card:hover .card-img img { transform: scale(1.04); }
.card-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 62px; }
.card-badge { position: absolute; top: 10px; left: 10px; padding: 4px 11px; border-radius: 6px; font-size: 11px; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; }
.badge-flash { background: #dc2626; color: white; animation: flashPulse 1s infinite; }
.badge-bid   { background: var(--blue); color: white; }
.badge-feat  { background: var(--green); color: white; }
.badge-sale  { background: rgba(29,79,122,0.85); color: white; }
@keyframes flashPulse { 0%,100%{opacity:1;} 50%{opacity:0.65;} }
.card-wish { position: absolute; top: 10px; right: 10px; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.92); display: flex; align-items: center; justify-content: center; font-size: 16px; cursor: pointer; border: none; transition: transform 0.2s; box-shadow: var(--shadow-sm); }
.card-wish:hover { transform: scale(1.2); }
.flash-timer { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(220,38,38,0.92); color: white; padding: 5px 10px; font-size: 11.5px; font-weight: 700; text-align: center; }
.card-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.card-category { font-size: 11px; color: var(--green); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 700; margin-bottom: 6px; }
.card-title { font-size: 15px; font-weight: 700; color: var(--blue); margin-bottom: 6px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-location { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.card-location::before { content: '📍 '; }
.card-specs { display: flex; gap: 12px; font-size: 12px; color: var(--muted); margin-bottom: 12px; flex-wrap: wrap; }
.card-price { font-size: 22px; font-weight: 800; color: var(--blue); margin-top: auto; }
.card-footer { display: flex; align-items: center; justify-content: space-between; padding: 11px 16px; border-top: 1.5px solid var(--border); background: var(--light); }
.card-views { font-size: 12px; color: var(--muted); }
.card-contact { background: var(--blue); color: white; padding: 7px 16px; border-radius: 7px; font-size: 13px; font-weight: 700; transition: background 0.2s; }
.card-contact:hover { background: var(--green); }

/* ── BID ELEMENTS ── */
.bid-live-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; display: inline-block; animation: livePulse 1.5s infinite; margin-right: 6px; }
@keyframes livePulse { 0%,100%{box-shadow:0 0 0 0 rgba(34,197,94,0.5);} 70%{box-shadow:0 0 0 6px transparent;} }
.bid-current { background: var(--blue-bg); border-radius: 10px; padding: 12px; margin: 10px 0; text-align: center; border: 2px solid var(--blue); }
.bid-current .amount { font-size: 24px; font-weight: 800; color: var(--blue); }
.bid-form { display: flex; gap: 8px; margin-top: 10px; }
.bid-input { flex: 1; padding: 10px 12px; border: 2px solid var(--border); border-radius: 8px; font-size: 14px; }
.bid-input:focus { border-color: var(--blue); outline: none; }
.bid-submit { background: var(--blue); color: white; padding: 10px 18px; border-radius: 8px; border: none; font-weight: 800; cursor: pointer; font-size: 13px; transition: background 0.2s; }
.bid-submit:hover { background: var(--green); }

/* ── FLASH SELL BANNER ── */
.flash-banner { background: linear-gradient(135deg, var(--blue), var(--blue-d)); color: white; border-radius: var(--radius-xl); padding: 54px 44px; text-align: center; position: relative; overflow: hidden; border: 2px solid rgba(123,192,67,0.3); }
.flash-banner::before { content: '⚡'; position: absolute; right: -10px; top: -20px; font-size: 200px; opacity: 0.06; }
.flash-banner::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 50%, rgba(123,192,67,0.12) 0%, transparent 60%); }
.flash-banner h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 800; margin-bottom: 14px; position: relative; z-index: 1; }
.flash-banner p { font-size: 17px; opacity: 0.85; margin-bottom: 30px; position: relative; z-index: 1; }
.flash-btn { background: var(--green); color: white; padding: 15px 38px; border-radius: 10px; font-weight: 800; font-size: 16px; display: inline-block; transition: transform 0.2s, box-shadow 0.2s; position: relative; z-index: 1; box-shadow: 0 4px 20px rgba(123,192,67,0.4); }
.flash-btn:hover { transform: scale(1.04); box-shadow: 0 8px 32px rgba(123,192,67,0.55); }

/* ── PACKAGES ── */
.packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.pkg-card { background: white; border-radius: var(--radius-xl); overflow: hidden; border: 2px solid var(--border); transition: transform 0.3s, box-shadow 0.3s; display: flex; flex-direction: column; box-shadow: var(--shadow-sm); }
.pkg-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pkg-card.popular { border-color: var(--green); position: relative; }
.popular-tag { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--green); color: white; padding: 4px 20px; border-radius: 0 0 10px 10px; font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; }
.pkg-header { padding: 30px 24px 20px; text-align: center; }
.pkg-icon { font-size: 40px; margin-bottom: 10px; }
.pkg-name { font-size: 22px; font-weight: 800; color: var(--blue); margin-bottom: 8px; }
.pkg-price { font-size: 36px; font-weight: 800; color: var(--green); line-height: 1; }
.pkg-price span { font-size: 15px; font-weight: 500; color: var(--muted); }
.pkg-validity { font-size: 13px; color: var(--muted); margin-top: 4px; }
.pkg-features { padding: 0 24px 24px; flex: 1; }
.pkg-features li { padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 14px; display: flex; align-items: center; gap: 10px; }
.pkg-features li:last-child { border-bottom: none; }
.feat-yes { color: var(--green); font-weight: 700; }
.feat-no  { color: #c4cdd6; }
.pkg-btn { display: block; margin: 0 24px 24px; padding: 13px; background: var(--blue); color: white; border-radius: 10px; text-align: center; font-weight: 800; font-size: 15px; transition: background 0.2s; }
.pkg-btn:hover { background: var(--blue-d); }
.pkg-card.popular .pkg-btn { background: var(--green); }
.pkg-card.popular .pkg-btn:hover { background: var(--green-d); }

/* ── FORMS ── */
.form-page { min-height: 100vh; background: linear-gradient(135deg, var(--blue) 0%, #163c5e 60%, #1a4a70 100%); display: flex; align-items: center; justify-content: center; padding: 40px 20px; position: relative; overflow: hidden; }
.form-page::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(123,192,67,0.1) 1px, transparent 1px); background-size: 40px 40px; }
.form-card { background: white; border-radius: var(--radius-xl); padding: 40px; width: 100%; max-width: 490px; box-shadow: var(--shadow-lg); position: relative; z-index: 2; border-top: 4px solid var(--green); }
.form-logo { text-align: center; margin-bottom: 24px; }
.form-logo img { height: 64px; width: auto; }
.form-title { font-size: 24px; font-weight: 800; color: var(--blue); text-align: center; margin-bottom: 6px; }
.form-sub { text-align: center; color: var(--muted); font-size: 14px; margin-bottom: 26px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--blue); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 14px; border: 2px solid var(--border); border-radius: 10px; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 14.5px; color: var(--text); background: var(--light); transition: border-color 0.2s, background 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--green); background: white; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-form { width: 100%; padding: 14px; background: var(--green); color: white; border: none; border-radius: 10px; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; font-size: 16px; font-weight: 800; cursor: pointer; transition: background 0.2s, transform 0.15s; }
.btn-form:hover { background: var(--green-d); transform: translateY(-1px); }
.form-link { text-align: center; font-size: 14px; color: var(--muted); margin-top: 18px; }
.form-link a { color: var(--green); font-weight: 700; }
.alert { padding: 12px 16px; border-radius: 8px; font-size: 14px; margin-bottom: 18px; }
.alert-success { background: var(--green-bg); border: 1px solid var(--green); color: var(--green-d); }
.alert-error   { background: #fee2e2; border: 1px solid #fca5a5; color: #b91c1c; }

/* ── DASHBOARD ── */
.dashboard { display: grid; grid-template-columns: 250px 1fr; min-height: 100vh; gap: 0; }
.dash-sidebar { background: var(--blue); color: white; padding: 28px 0; position: sticky; top: 68px; height: calc(100vh - 68px); overflow-y: auto; }
.dash-menu a { display: flex; align-items: center; gap: 12px; padding: 13px 24px; font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.72); transition: all 0.2s; }
.dash-menu a:hover, .dash-menu a.active { background: rgba(123,192,67,0.15); color: white; border-right: 3px solid var(--green); }
.dash-main { padding: 30px; background: var(--light); }
.stat-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(175px, 1fr)); gap: 18px; margin-bottom: 28px; }
.stat-card { background: white; border-radius: var(--radius-lg); padding: 22px; box-shadow: var(--shadow-sm); border-left: 4px solid var(--green); }
.stat-card .s-num { font-size: 34px; font-weight: 800; color: var(--blue); display: block; }
.stat-card .s-lbl { font-size: 13px; color: var(--muted); margin-top: 2px; }

/* ── TABLE ── */
.table-wrap { background: white; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
thead { background: var(--blue-bg); }
th, td { padding: 12px 16px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--border); }
th { font-weight: 800; font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--blue); }
tr:hover td { background: rgba(245,248,250,0.8); }
.status { padding: 4px 10px; border-radius: 6px; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.status-active  { background: var(--green-bg); color: var(--green-d); }
.status-pending { background: #fef9c3; color: #854d0e; }
.status-expired { background: #fee2e2; color: #b91c1c; }
.status-sold    { background: var(--blue-bg); color: var(--blue); }

/* ── TESTIMONIALS ── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.testi-card { background: white; border-radius: var(--radius-xl); padding: 28px; box-shadow: var(--shadow-sm); border: 1.5px solid var(--border); position: relative; border-top: 3px solid var(--green); }
.testi-card::before { content: '"'; position: absolute; top: 10px; right: 20px; font-size: 80px; color: var(--green-bg); font-family: Georgia; line-height: 1; }
.testi-stars { font-size: 14px; margin-bottom: 12px; }
.testi-text { font-size: 14.5px; color: var(--text); line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--green)); color: white; font-weight: 800; font-size: 18px; display: flex; align-items: center; justify-content: center; }
.testi-name { font-weight: 800; font-size: 15px; color: var(--blue); }
.testi-city { font-size: 12px; color: var(--muted); }

/* ── HOW IT WORKS ── */
.how-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.how-card { text-align: center; padding: 36px 20px; background: white; border-radius: var(--radius-xl); box-shadow: var(--shadow-sm); border-bottom: 3px solid var(--green); transition: transform 0.25s; }
.how-card:hover { transform: translateY(-4px); }
.how-num { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-l)); color: white; font-size: 20px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.how-icon { font-size: 32px; margin-bottom: 14px; }
.how-card h3 { font-weight: 800; color: var(--blue); margin-bottom: 8px; font-size: 16px; }
.how-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── PAGINATION ── */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; }
.page-btn { width: 40px; height: 40px; border-radius: 8px; border: 2px solid var(--border); background: white; cursor: pointer; font-size: 14px; font-weight: 700; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.page-btn:hover, .page-btn.active { background: var(--blue); color: white; border-color: var(--blue); }

/* ── FOOTER ── */
.footer { background: var(--blue); color: rgba(255,255,255,0.75); padding-top: 0; }
.footer-wave svg { display: block; }
.footer-body { padding: 50px 24px 32px; max-width: 1300px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 44px; }
.footer-logo-area { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-area img { height: 44px; width: auto; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 13.5px; line-height: 1.8; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 10px; }
.footer-socials a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 16px; transition: background 0.2s; }
.footer-socials a:hover { background: var(--green); }
.footer-col h4 { font-size: 12px; font-weight: 800; color: white; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--green); display: inline-block; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--green); }
.footer-col ul li { font-size: 13.5px; color: rgba(255,255,255,0.65); }
.btn-footer-cta { display: inline-block; padding: 10px 22px; background: var(--green); color: white; border-radius: 8px; font-size: 13px; font-weight: 800; transition: background 0.2s; margin-top: 6px; }
.btn-footer-cta:hover { background: var(--green-d); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-legal a:hover { color: var(--green); }

/* WhatsApp Float */
.whatsapp-float { position: fixed; bottom: 80px; right: 24px; z-index: 999; background: #25d366; color: white; border-radius: 30px; padding: 12px 18px; font-size: 22px; box-shadow: 0 4px 20px rgba(37,211,102,0.4); display: flex; align-items: center; gap: 8px; text-decoration: none; transition: transform 0.3s; }
.whatsapp-float:hover { transform: scale(1.08); }
.wap-label { font-size: 13px; font-weight: 700; }
.back-top { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 44px; height: 44px; border-radius: 50%; background: var(--blue); color: white; border: none; font-size: 18px; cursor: pointer; box-shadow: var(--shadow); transition: opacity 0.3s, background 0.2s; opacity: 0; }
.back-top:hover { background: var(--green); }
.back-top.show { opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } .footer-brand { grid-column: 1/-1; } }
@media (max-width: 1024px) { .detail-grid { grid-template-columns: 1fr; } .dashboard { grid-template-columns: 1fr; } .dash-sidebar { position: relative; height: auto; top: 0; } }
@media (max-width: 768px) { .nav-links { display: none; } .hamburger { display: block; } .footer-grid { grid-template-columns: 1fr 1fr; } .hero-search { flex-direction: column; } .form-row { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } section { padding: 50px 16px; } .hero { padding: 52px 16px 72px; } .hero-stats { gap: 24px; } }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
