/* =========================================================================
   AGHA RENTAL — Premium Stylesheet
   Inspired by Apple / DJI / Canon / Sony product design language.
   ========================================================================= */

:root {
  --agha-black: #0a0a0c;
  --agha-charcoal: #17181c;
  --agha-dark-gray: #2a2b30;
  --agha-mid-gray: #6e7076;
  --agha-light-gray: #f4f4f6;
  --agha-milky: #fbfbfa;
  --agha-white: #ffffff;
  --agha-gold: #c8a24a;
  --agha-gold-dark: #a5813a;
  --agha-red: #d0342c;
  --agha-blue: #0a6cff;
  --agha-green: #1fa855;
  --agha-shadow-sm: 0 2px 8px rgba(10, 10, 12, 0.06);
  --agha-shadow-md: 0 8px 30px rgba(10, 10, 12, 0.10);
  --agha-shadow-lg: 0 20px 60px rgba(10, 10, 12, 0.16);
  --agha-radius: 18px;
  --agha-radius-sm: 12px;
  --transition-smooth: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--agha-milky);
  color: var(--agha-charcoal);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-display {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--agha-black);
}

a { text-decoration: none; }

.text-gold { color: var(--agha-gold) !important; }
.bg-milky { background-color: var(--agha-milky); }
.bg-light-gray { background-color: var(--agha-light-gray); }

/* =========================== NAVBAR ==================================== */

.agha-navbar {
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  padding: 0.9rem 0;
  transition: var(--transition-smooth);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.agha-navbar .navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.agha-navbar .brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--agha-gold), var(--agha-gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--agha-black);
  font-weight: 700;
  font-size: 1.1rem;
  font-family: 'Poppins', sans-serif;
}

.agha-navbar .brand-text {
  color: var(--agha-white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  line-height: 1.1;
}

.agha-navbar .brand-text small {
  display: block;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: var(--agha-gold);
  text-transform: uppercase;
}

.agha-navbar .nav-link {
  color: rgba(255, 255, 255, 0.82) !important;
  font-weight: 500;
  font-size: 0.92rem;
  margin: 0 0.35rem;
  padding: 0.5rem 0.85rem !important;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.agha-navbar .nav-link:hover,
.agha-navbar .nav-link.active {
  color: var(--agha-white) !important;
  background: rgba(255, 255, 255, 0.08);
}

.agha-navbar .btn-admin-login {
  background: var(--agha-gold);
  color: var(--agha-black) !important;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.5rem 1.3rem !important;
  margin-left: 0.4rem;
}

.agha-navbar .btn-admin-login:hover {
  background: var(--agha-white);
}

.agha-navbar .navbar-toggler {
  border: none;
  color: white;
}

/* =========================== HERO ======================================= */

.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: radial-gradient(ellipse at top right, #1c1d22 0%, var(--agha-black) 60%);
  overflow: hidden;
  padding-top: 90px;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 30%, rgba(200, 162, 74, 0.14), transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(10, 108, 255, 0.10), transparent 45%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--agha-gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--agha-gold);
  animation: pulse-dot 1.8s infinite ease-in-out;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.4); }
}

.hero-title {
  color: var(--agha-white);
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.3rem;
}

.hero-title .accent {
  background: linear-gradient(90deg, var(--agha-gold), #eecf8f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 2.2rem;
  line-height: 1.65;
}

.hero-visual {
  position: relative;
  animation: float-y 6s ease-in-out infinite;
}

@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

.hero-visual img {
  border-radius: var(--agha-radius);
  box-shadow: var(--agha-shadow-lg);
}

.hero-stats {
  display: flex;
  gap: 2.2rem;
  margin-top: 2.6rem;
  flex-wrap: wrap;
}

.hero-stats .stat-item h3 {
  color: var(--agha-white);
  font-size: 2rem;
  margin-bottom: 0.1rem;
}

.hero-stats .stat-item span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Buttons */

.btn-agha-primary {
  background: var(--agha-gold);
  color: var(--agha-black);
  border: none;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 24px rgba(200, 162, 74, 0.28);
}

.btn-agha-primary:hover {
  background: #dcb45c;
  color: var(--agha-black);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(200, 162, 74, 0.38);
}

.btn-agha-outline {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--agha-white);
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  transition: var(--transition-smooth);
}

.btn-agha-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--agha-white);
  color: var(--agha-white);
  transform: translateY(-2px);
}

.btn-agha-dark {
  background: var(--agha-black);
  color: var(--agha-white);
  font-weight: 600;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  border: none;
  transition: var(--transition-smooth);
}

.btn-agha-dark:hover {
  background: var(--agha-charcoal);
  color: var(--agha-white);
  transform: translateY(-2px);
}

/* =========================== SECTIONS =================================== */

.section {
  padding: 5.5rem 0;
}

.section-sm { padding: 3.5rem 0; }

.section-label {
  color: var(--agha-gold-dark);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  display: inline-block;
}

.section-title {
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 0.8rem;
}

.section-subtitle {
  color: var(--agha-mid-gray);
  font-size: 1.05rem;
  max-width: 640px;
  line-height: 1.6;
}

/* =========================== CARDS ======================================= */

.agha-card {
  background: var(--agha-white);
  border-radius: var(--agha-radius);
  border: 1px solid rgba(10, 10, 12, 0.06);
  box-shadow: var(--agha-shadow-sm);
  transition: var(--transition-smooth);
  overflow: hidden;
  height: 100%;
}

.agha-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--agha-shadow-lg);
}

/* Product Card */
.product-card { display: flex; flex-direction: column; }

.product-card .product-img-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--agha-light-gray);
  overflow: hidden;
}

.product-card .product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.08);
}

.product-card .cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(10, 10, 12, 0.75);
  backdrop-filter: blur(6px);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.availability-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.availability-badge.available { background: #e4f8ec; color: var(--agha-green); }
.availability-badge.rented { background: #fdeceb; color: var(--agha-red); }
.availability-badge.maintenance { background: #fff5e0; color: #b58106; }

.product-card .card-body {
  padding: 1.3rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-card .product-name {
  font-size: 1.08rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.product-card .product-desc {
  color: var(--agha-mid-gray);
  font-size: 0.87rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card .price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px solid var(--agha-light-gray);
}

.product-card .price {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--agha-black);
}

.product-card .price span {
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--agha-mid-gray);
}

.btn-view-details {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--agha-black);
  margin-top: 1rem;
  padding: 0.6rem 0;
  border-top: none;
  transition: var(--transition-smooth);
}

.btn-view-details i { transition: var(--transition-smooth); }
.btn-view-details:hover { color: var(--agha-gold-dark); }
.btn-view-details:hover i { transform: translateX(4px); }

/* Mobile responsive */
@media (max-width: 575.98px) {
  .product-card .product-img-wrap { aspect-ratio: 1 / 1; }
  .product-card .card-body { padding: 1rem 1rem 1.2rem; }
  .product-card .product-name { font-size: 0.95rem; }
  .product-card .product-desc { font-size: 0.8rem; }
  .product-card .price { font-size: 1rem; }
}

/* Category pill */
.category-pill {
  background: var(--agha-white);
  border: 1px solid rgba(10,10,12,0.08);
  border-radius: var(--agha-radius-sm);
  padding: 1.6rem 1.2rem;
  text-align: center;
  transition: var(--transition-smooth);
  color: var(--agha-charcoal);
  display: block;
  height: 100%;
}

.category-pill:hover {
  border-color: var(--agha-gold);
  color: var(--agha-charcoal);
  transform: translateY(-4px);
  box-shadow: var(--agha-shadow-md);
}

.category-pill .icon-wrap {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--agha-light-gray);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.9rem;
  font-size: 1.4rem;
  color: var(--agha-gold-dark);
  transition: var(--transition-smooth);
}

.category-pill:hover .icon-wrap {
  background: var(--agha-black);
  color: var(--agha-gold);
}

.category-pill .cat-name {
  font-weight: 600;
  font-size: 0.95rem;
}

/* Feature / Why choose us */
.feature-item {
  display: flex;
  gap: 1.1rem;
  padding: 1.5rem;
  border-radius: var(--agha-radius-sm);
  transition: var(--transition-smooth);
}

.feature-item:hover { background: var(--agha-white); box-shadow: var(--agha-shadow-md); }

.feature-item .icon-box {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--agha-black);
  color: var(--agha-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

.feature-item h5 { font-size: 1.02rem; margin-bottom: 0.3rem; }
.feature-item p { color: var(--agha-mid-gray); font-size: 0.9rem; margin-bottom: 0; line-height: 1.55; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--agha-black), #1a1b20);
  border-radius: 28px;
  padding: 4rem 3rem;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,162,74,0.18), transparent 70%);
  top: -120px; right: -80px;
}

.cta-band h2 { color: white; }
.cta-band p { color: rgba(255,255,255,0.65); }

/* =========================== SHOWROOM FILTERS ============================ */

.filter-bar {
  background: var(--agha-white);
  border-radius: var(--agha-radius-sm);
  box-shadow: var(--agha-shadow-sm);
  padding: 1.3rem;
  border: 1px solid rgba(10,10,12,0.06);
}

.filter-bar .form-control,
.filter-bar .form-select {
  border-radius: 10px;
  border: 1px solid rgba(10,10,12,0.12);
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
}

.filter-bar .form-control:focus,
.filter-bar .form-select:focus {
  border-color: var(--agha-gold);
  box-shadow: 0 0 0 3px rgba(200,162,74,0.15);
}

.category-chip {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(10,10,12,0.12);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--agha-charcoal);
  margin: 0.2rem;
  transition: var(--transition-smooth);
}

.category-chip.active,
.category-chip:hover {
  background: var(--agha-black);
  color: var(--agha-gold);
  border-color: var(--agha-black);
}

/* =========================== PRODUCT DETAIL =============================== */

.gallery-main {
  border-radius: var(--agha-radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--agha-light-gray);
  box-shadow: var(--agha-shadow-md);
}

.gallery-main img { width: 100%; height: 100%; object-fit: cover; }

.gallery-thumbs { display: flex; gap: 0.6rem; margin-top: 0.8rem; flex-wrap: wrap; }

.gallery-thumbs img {
  width: 78px; height: 78px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-smooth);
}

.gallery-thumbs img:hover,
.gallery-thumbs img.active { border-color: var(--agha-gold); }

.spec-list { list-style: none; padding: 0; margin: 0; }
.spec-list li {
  padding: 0.65rem 0;
  border-bottom: 1px dashed rgba(10,10,12,0.1);
  color: var(--agha-charcoal);
  font-size: 0.92rem;
  display: flex;
  gap: 0.6rem;
}
.spec-list li i { color: var(--agha-gold-dark); margin-top: 3px; }

.detail-price-box {
  background: var(--agha-black);
  border-radius: var(--agha-radius);
  padding: 1.8rem;
  color: white;
}

.detail-price-box .amount { font-size: 2.1rem; font-weight: 700; font-family:'Poppins',sans-serif; }
.detail-price-box .amount span { font-size: 0.85rem; font-weight: 400; opacity: 0.6; }

.btn-whatsapp {
  background: #25D366;
  color: white;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.8rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-smooth);
  width: 100%;
  justify-content: center;
}
.btn-whatsapp:hover { background: #1ebe57; color: white; transform: translateY(-2px); }

/* =========================== FOOTER ======================================= */

.agha-footer {
  background: var(--agha-black);
  color: rgba(255,255,255,0.65);
  padding: 4.5rem 0 0;
}

.agha-footer h6 {
  color: white;
  font-weight: 600;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.3rem;
}

.agha-footer a {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  display: block;
  margin-bottom: 0.65rem;
  transition: var(--transition-smooth);
}

.agha-footer a:hover { color: var(--agha-gold); transform: translateX(3px); }

.agha-footer .footer-desc {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.social-icons { display: flex; gap: 0.7rem; margin-top: 1.3rem; }
.social-icons a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0;
  color: white;
}
.social-icons a:hover { background: var(--agha-gold); color: var(--agha-black); transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 3rem;
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 1rem; font-size: 0.9rem; }
.footer-contact-item i { color: var(--agha-gold); margin-top: 3px; }

/* =========================== ADMIN PANEL =================================== */

.admin-body { background: #f0f1f4; min-height: 100vh; }

.admin-sidebar {
  width: 260px;
  background: var(--agha-black);
  min-height: 100vh;
  position: fixed;
  left: 0; top: 0;
  padding: 1.6rem 1.1rem;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.admin-sidebar .brand {
  display: flex; align-items: center; gap: 10px;
  color: white; margin-bottom: 2.2rem; padding: 0 0.5rem;
}

.admin-sidebar .brand .brand-mark {
  width: 36px; height: 36px; border-radius: 9px;
  background: linear-gradient(135deg, var(--agha-gold), var(--agha-gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--agha-black); font-family:'Poppins',sans-serif;
}

.admin-sidebar .nav-link {
  color: rgba(255,255,255,0.65);
  padding: 0.75rem 1rem;
  border-radius: 10px;
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex; align-items: center; gap: 12px;
  transition: var(--transition-smooth);
}

.admin-sidebar .nav-link i { width: 18px; text-align: center; }

.admin-sidebar .nav-link:hover { background: rgba(255,255,255,0.06); color: white; }
.admin-sidebar .nav-link.active { background: var(--agha-gold); color: var(--agha-black); }

.admin-sidebar .sidebar-footer {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.admin-content {
  margin-left: 260px;
  padding: 2.2rem 2.4rem;
  min-height: 100vh;
}

.admin-topbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem;
}

.stat-card {
  background: white;
  border-radius: var(--agha-radius-sm);
  padding: 1.5rem;
  box-shadow: var(--agha-shadow-sm);
  border: 1px solid rgba(10,10,12,0.05);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-card .icon-box {
  width: 52px; height: 52px; border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}

.stat-card h3 { font-size: 1.6rem; margin-bottom: 0.1rem; }
.stat-card span.label { color: var(--agha-mid-gray); font-size: 0.82rem; }

.admin-card {
  background: white;
  border-radius: var(--agha-radius-sm);
  box-shadow: var(--agha-shadow-sm);
  border: 1px solid rgba(10,10,12,0.05);
  padding: 1.6rem;
}

.table-agha thead th {
  border-bottom: 2px solid var(--agha-light-gray);
  color: var(--agha-mid-gray);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  padding: 0.9rem 0.75rem;
}
.table-agha td { padding: 0.85rem 0.75rem; vertical-align: middle; font-size: 0.9rem; }
.table-agha tbody tr { border-bottom: 1px solid var(--agha-light-gray); }

.thumb-sm { width: 46px; height: 46px; object-fit: cover; border-radius: 8px; }

.login-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(ellipse at top, #1c1d22, var(--agha-black));
  padding: 2rem;
}

.login-card {
  background: white;
  border-radius: 22px;
  padding: 2.6rem;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--agha-shadow-lg);
}

.image-upload-drop {
  border: 2px dashed rgba(10,10,12,0.15);
  border-radius: var(--agha-radius-sm);
  padding: 2rem;
  text-align: center;
  color: var(--agha-mid-gray);
  transition: var(--transition-smooth);
  cursor: pointer;
}
.image-upload-drop:hover { border-color: var(--agha-gold); background: #fffaf0; }

/* =========================== ABOUT / CONTACT =============================== */

.about-hero {
  background: var(--agha-black);
  padding: 7rem 0 5rem;
}
.about-hero h1 { color: white; }
.about-hero p { color: rgba(255,255,255,0.65); }

.value-card {
  background: white;
  border-radius: var(--agha-radius-sm);
  padding: 2rem 1.6rem;
  text-align: center;
  box-shadow: var(--agha-shadow-sm);
  height: 100%;
}
.value-card .num { font-family:'Poppins',sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--agha-gold); }

.contact-info-card {
  background: var(--agha-black);
  border-radius: var(--agha-radius);
  padding: 2.4rem;
  color: white;
}

.contact-form-card {
  background: white;
  border-radius: var(--agha-radius);
  padding: 2.4rem;
  box-shadow: var(--agha-shadow-md);
}

.form-control-agha, .form-select-agha {
  border-radius: 10px;
  border: 1px solid rgba(10,10,12,0.14);
  padding: 0.75rem 1rem;
}
.form-control-agha:focus, .form-select-agha:focus {
  border-color: var(--agha-gold);
  box-shadow: 0 0 0 3px rgba(200,162,74,0.15);
}

.map-embed { border-radius: var(--agha-radius); overflow: hidden; box-shadow: var(--agha-shadow-md); }

/* =========================== UTILITIES / ANIM =============================== */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.in-view { opacity: 1; transform: translateY(0); }

.pagination .page-link {
  border: none;
  color: var(--agha-charcoal);
  border-radius: 8px;
  margin: 0 3px;
}
.pagination .page-item.active .page-link { background: var(--agha-black); color: var(--agha-gold); }

::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-track { background: var(--agha-light-gray); }
::-webkit-scrollbar-thumb { background: #c9cad0; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--agha-gold); }

@media (max-width: 991.98px) {
  .admin-sidebar { left: -280px; }
  .admin-sidebar.open { left: 0; }
  .admin-content { margin-left: 0; padding: 1.4rem; }
}

@media (max-width: 767.98px) {
  .hero-section { text-align: center; padding-top: 110px; min-height: auto; padding-bottom: 4rem; }
  .hero-stats { justify-content: center; }
  .cta-band { padding: 2.6rem 1.6rem; text-align: center; }
}
