/*
---
File Name: home.css
Module: Home Page / Public Website
Purpose: All custom styles for Abhirent public home page (non-Tailwind additions, layout fixes, animations, custom components)

Used In:
* index.html (main home page)

Last Updated:
* Date: 2026-05-22
* Time: 11:11 AM
* Updated By: AI Agent
* Change Type: Feature

Description of Change:
* Created separate CSS file from inline styles in index.html
* Fixed hero section alignment issues
* Added Admin/Agency login button styles
* Added announcement bar styles
* Added smooth reveal animations
* Added responsive fixes for mobile layout
---
*/

/* ========================================
   BASE RESET & SCROLL
   ======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: #F9FAFB;
  font-family: 'Manrope', sans-serif;
  color: #1e293b;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========================================
   ANNOUNCEMENT BAR (Top Strip)
   ======================================== */
.announcement-bar {
  background: linear-gradient(90deg, #1E3A8A 0%, #2563eb 100%);
  color: #fff;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 8px 16px;
  position: relative;
}

.announcement-bar a {
  color: #fbbf24;
  text-decoration: underline;
  margin-left: 6px;
}

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  box-shadow: 0 1px 8px rgba(15, 23, 42, 0.06);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  gap: 16px;
}

.navbar-brand {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #1E3A8A;
  text-decoration: none;
  flex-shrink: 0;
  letter-spacing: -0.5px;
}

.navbar-brand span {
  color: #F59E0B;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #1E3A8A;
}

/* Dropdown for Login */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 600;
  color: #475569;
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  transition: color 0.2s;
}

.nav-dropdown-toggle:hover {
  color: #1E3A8A;
}

.nav-dropdown-toggle svg {
  transition: transform 0.2s;
}

.nav-dropdown-toggle.open svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.14);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 1000;
}

.nav-dropdown-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: #334155;
  transition: background 0.15s, color 0.15s;
}

.dropdown-item:hover {
  background: #f1f5f9;
  color: #1E3A8A;
}

.dropdown-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.dropdown-item-icon.admin {
  background: #eff6ff;
}

.dropdown-item-icon.agency {
  background: #fff7ed;
}

.dropdown-item-icon.user {
  background: #f0fdf4;
}

.dropdown-divider {
  height: 1px;
  background: #f1f5f9;
  margin: 6px 0;
}

/* CTA Button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #1E3A8A;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(30, 58, 138, 0.25);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-primary:hover {
  background: #1e40af;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 58, 138, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #F59E0B;
  color: #1e293b;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 12px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.btn-secondary:hover {
  background: #d97706;
  transform: translateY(-2px);
}

/* Hamburger */
.menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  padding: 8px;
  background: none;
  cursor: pointer;
  color: #334155;
  transition: border-color 0.2s, color 0.2s;
}

.menu-btn:hover {
  border-color: #1E3A8A;
  color: #1E3A8A;
}

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid #e2e8f0;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  transition: background 0.15s;
}

.mobile-link:hover {
  background: #f1f5f9;
  color: #1E3A8A;
}

.mobile-login-section {
  border-top: 1px solid #f1f5f9;
  margin-top: 8px;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-login-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  padding: 4px 14px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(245, 158, 11, 0.18), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(30, 58, 138, 0.18), transparent 34%),
    linear-gradient(145deg, #eef2ff 0%, #f9fafb 48%, #fffbeb 100%);
  padding: 64px 24px 72px;
  overflow: hidden;
  position: relative;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, #F9FAFB);
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(30, 58, 138, 0.2);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #1E3A8A;
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: #0f172a;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-title span {
  color: #1E3A8A;
  position: relative;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #475569;
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(226, 232, 240, 0.7);
}

.hero-stat-item {
  text-align: left;
}

.hero-stat-number {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #1E3A8A;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 3px;
  font-weight: 500;
}

/* Search Card */
.search-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.1), 0 0 0 1px rgba(226, 232, 240, 0.5);
  backdrop-filter: blur(12px);
}

.search-card h2 {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.search-card p {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #64748b;
}

.form-input,
.form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 0.875rem;
  color: #1e293b;
  background: #fff;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

.form-input:focus,
.form-select:focus {
  border-color: #1E3A8A;
  box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.12);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

.search-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.search-grid .form-group:first-child {
  grid-column: 1 / -1;
}

.search-btn {
  grid-column: 1 / -1;
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #1E3A8A 0%, #2563eb 100%);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(30, 58, 138, 0.3);
}

.search-btn:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

/* ========================================
   SECTIONS — COMMON
   ======================================== */
.section-pad {
  padding: 72px 24px;
}

.section-pad-sm {
  padding: 48px 24px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  margin-bottom: 40px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1E3A8A;
  background: #eff6ff;
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.section-subtitle {
  margin-top: 10px;
  font-size: 1rem;
  color: #64748b;
  max-width: 520px;
  line-height: 1.65;
}

/* ========================================
   PROPERTY CARDS
   ======================================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.property-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(30, 58, 138, 0.14);
}

.property-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.property-card:hover img {
  transform: scale(1.04);
}

.property-card-img-wrap {
  overflow: hidden;
  position: relative;
}

.property-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #1E3A8A;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.property-card-body {
  padding: 18px 20px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.property-price {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: #1E3A8A;
}

.property-price span {
  font-size: 0.8rem;
  font-weight: 500;
  color: #94a3b8;
  margin-left: 3px;
}

.property-location {
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.property-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.rating-badge {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #92400e;
}

.btn-view {
  background: #1E3A8A;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, transform 0.15s;
}

.home-fav-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #ef4444;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.15);
  transition: transform 0.15s ease, background 0.15s ease;
}

.home-fav-btn:hover,
.home-fav-btn.active {
  transform: scale(1.05);
  background: #fff;
}

.consumer-account-toggle {
  background: #0f766e;
  color: #fff;
}

.consumer-logout-btn {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.featured-loading,
.featured-empty {
  grid-column: 1 / -1;
  padding: 28px 12px;
  text-align: center;
  color: #64748b;
}

.btn-view:hover {
  background: #1e40af;
  transform: translateY(-1px);
}

/* ========================================
   CATEGORY CARDS
   ======================================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.category-card {
  background: #fff;
  border: 1.5px solid #f1f5f9;
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: block;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
}

.category-card:hover {
  border-color: #1E3A8A;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(30, 58, 138, 0.12);
}

.category-icon {
  font-size: 2rem;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.category-title {
  font-family: 'Sora', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
}

.category-count {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 4px;
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-section {
  background: #fff;
  border-radius: 28px;
  border: 1px solid #e2e8f0;
  padding: 48px;
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(16.667% + 20px);
  right: calc(16.667% + 20px);
  height: 2px;
  background: linear-gradient(90deg, #1E3A8A, #F59E0B, #1E3A8A);
  opacity: 0.25;
  pointer-events: none;
}

.step-card {
  background: #f8fafc;
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1E3A8A;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

.step-title {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 14px;
  margin-bottom: 8px;
}

.step-text {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

/* ========================================
   TRUST SECTION
   ======================================== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-card {
  background: #fff;
  border: 1.5px solid #f1f5f9;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.trust-card:hover {
  border-color: #bfdbfe;
  box-shadow: 0 8px 24px rgba(30, 58, 138, 0.1);
}

.trust-icon {
  width: 44px;
  height: 44px;
  background: #eff6ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.trust-title {
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.trust-text {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.testimonial-card {
  background: #fff;
  border: 1.5px solid #f1f5f9;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(15, 23, 42, 0.05);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 4rem;
  font-family: 'Sora', sans-serif;
  color: #dbeafe;
  line-height: 1;
  font-weight: 900;
}

.testimonial-text {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1E3A8A, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  font-family: 'Sora', sans-serif;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: #334155;
}

.testimonial-role {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* ========================================
   CTA / PARTNER SECTION
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, #1E3A8A 0%, #1d4ed8 60%, #0f2a6e 100%);
  border-radius: 28px;
  padding: 56px 48px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 16px 48px rgba(30, 58, 138, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -30px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.cta-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.cta-subtitle {
  font-size: 1rem;
  color: rgba(219, 234, 254, 0.9);
  margin-top: 8px;
  line-height: 1.6;
  max-width: 440px;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* ========================================
   FOUNDER CARD (above footer)
   ======================================== */
.home-founder-card {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-top: 1px solid #e2e8f0;
  padding: 28px 24px 0;
}

.home-founder-card-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.04);
}

.home-founder-card-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #eff6ff;
  background: linear-gradient(135deg, #dbeafe, #e0e7ff);
}

.home-founder-card-role {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #f59e0b;
}

.home-founder-card-name {
  margin: 2px 0 6px;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.home-founder-card-quote {
  margin: 0;
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.55;
}

@media (max-width: 600px) {
  .home-founder-card-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: #fff;
  border-top: 1px solid #e2e8f0;
  padding: 52px 24px 24px;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #f1f5f9;
}

.footer-brand-name {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #1E3A8A;
  margin-bottom: 8px;
}

.footer-brand-name span {
  color: #F59E0B;
}

.footer-tagline {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 240px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.social-btn:hover {
  border-color: #1E3A8A;
  color: #1E3A8A;
  background: #eff6ff;
}

.footer-heading {
  font-family: 'Sora', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #1E3A8A;
}

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: #94a3b8;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 0.8rem;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #1E3A8A;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========================================
   RESPONSIVE — TABLET (≤1024px)
   ======================================== */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .cta-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 32px;
  }
}

/* ========================================
   RESPONSIVE — MOBILE (≤768px)
   ======================================== */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-section {
    padding: 44px 16px 56px;
  }

  .nav-links,
  .btn-primary.hide-mobile {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .how-section {
    padding: 28px 20px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .steps-grid::before {
    display: none;
  }

  .trust-grid,
  .testimonials-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-section {
    padding: 32px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .section-pad {
    padding: 52px 16px;
  }

  .search-grid {
    grid-template-columns: 1fr;
  }

  .search-grid .form-group:first-child {
    grid-column: auto;
  }

  .search-btn {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-link {
    justify-content: center;
  }

  .navbar-inner {
    padding: 12px 16px;
  }
}

/* ========================================
   BTN-LINK
   ======================================== */
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1E3A8A;
  text-decoration: none;
  transition: gap 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.btn-link:hover {
  gap: 10px;
}

/* ========================================
   ADMIN BADGE in Navbar
   ======================================== */
.admin-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #475569;
  text-decoration: none;
  background: #fff;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  white-space: nowrap;
}

.admin-login-btn:hover {
  border-color: #1E3A8A;
  color: #1E3A8A;
  background: #eff6ff;
}

/* ========================================
   SCROLLED NAVBAR
   ======================================== */
.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.10);
}

