/*
 * layout.css
 * Extracted from inline <style> blocks in resources/views/frontend/*
 * Generated as part of the "separate CSS from views" cleanup.
 * NOTE: visual output should be unchanged — this file only relocates
 * existing rules out of the Blade templates.
 */

/* ==================================================================
   resources/views/frontend/layout.blade.php
   ================================================================== */

      /* Header – Edge-inspired deep blue gradient */
      .header {
        background: linear-gradient(135deg, #0a2d5e 0%, #0f4c81 60%, #1565c0 100%) !important;
        box-shadow: 0 2px 20px rgba(10,45,94,0.35);
      }
      .scrolled .header {
        background: linear-gradient(135deg, #061c3d 0%, #0a3670 60%, #1059b0 100%) !important;
        box-shadow: 0 4px 24px rgba(6,28,61,0.45);
      }
      /* Nav active link – bright cyan underline */
      .navmenu a.active {
        color: #fff !important;
        position: relative;
      }
      .navmenu a.active::after {
        content: '';
        position: absolute;
        bottom: 10px; left: 15px; right: 15px;
        height: 2px;
        background: #50e6ff;
        border-radius: 2px;
      }
      /* Scroll-to-top button */
      .scroll-top { background: linear-gradient(135deg, #0078d4, #50e6ff); }
      .scroll-top:hover { background: linear-gradient(135deg, #0a2d5e, #0078d4); }
      /* Bootstrap primary overrides */
      .btn-primary, .btn-outline-primary:hover {
        background: linear-gradient(135deg, #0a2d5e, #0078d4) !important;
        border-color: transparent !important;
      }
      .btn-outline-primary {
        border-color: #0078d4 !important;
        color: #0078d4 !important;
      }
      /* Page title sections */
      .page-title { background: #eef5fb !important; }
      .page-title .breadcrumbs a,
      .breadcrumb-item a { color: #0078d4; }

      .floating-cta-wrap {
        position: fixed;
        bottom: 80px;
        right: 20px;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 10px;
      }
      .floating-cta-wrap .fcta-label {
        font-size: 11px;
        font-weight: 600;
        color: #fff;
        background: rgba(0,0,0,.5);
        padding: 2px 8px;
        border-radius: 20px;
        white-space: nowrap;
        opacity: 0;
        transition: opacity .2s;
        pointer-events: none;
      }
      .floating-cta-wrap .fcta-btn:hover + .fcta-label,
      .floating-cta-wrap .fcta-item:hover .fcta-label { opacity: 1; }
      .floating-cta-wrap .fcta-item {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 4px;
      }
      .fcta-btn {
        width: 52px;
        height: 52px;
        border-radius: 50%;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        cursor: pointer;
        box-shadow: 0 4px 16px rgba(0,0,0,.25);
        transition: transform .2s, box-shadow .2s;
        text-decoration: none;
        color: #fff;
      }
      .fcta-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 22px rgba(0,0,0,.32);
        color: #fff;
      }
      .fcta-whatsapp { background: #25D366; }
      .fcta-call     { background: linear-gradient(135deg, #0a2d5e, #0078d4); }
      .fcta-pulse {
        animation: pulseglow 2.5s infinite;
      }
      @keyframes pulseglow {
        0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,.35); }
        50%       { box-shadow: 0 4px 28px rgba(37,211,102,.75); }
      }

      .sticky-bottom-bar {
        position: fixed;
        bottom: 0; left: 0; right: 0;
        z-index: 9998;
        display: none;
        background: #fff;
        border-top: 1px solid #e2e8f0;
        box-shadow: 0 -4px 16px rgba(0,0,0,.12);
        padding: 8px 12px;
      }
      @media (max-width: 768px) {
        .sticky-bottom-bar { display: flex; }
        .floating-cta-wrap { bottom: 72px; right: 14px; }
        .floating-cta-wrap .fcta-btn { width: 44px; height: 44px; font-size: 1.2rem; }
      }
      .sticky-bottom-bar .sbb-btn {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        font-weight: 600;
        gap: 2px;
        text-decoration: none;
        border-radius: 8px;
        padding: 6px 4px;
        transition: background .15s;
      }
      .sticky-bottom-bar .sbb-btn i { font-size: 1.2rem; }
      .sbb-call    { color: #0078d4; }
      .sbb-wa      { color: #25D366; }
      .sbb-post    { color: #fff; background: linear-gradient(135deg, #0a2d5e, #0078d4); }
      .sbb-divider { width: 1px; background: #e2e8f0; margin: 0 4px; }

/* ==================================================================
   resources/views/frontend/partials/header.blade.php
   ================================================================== */

/* ── Tighten nav at XL (1200-1399px) so auth buttons don't overflow ── */
@media (min-width: 1200px) and (max-width: 1399px) {
  .navmenu a,
  .navmenu a:focus {
    padding: 18px 9px;
    font-size: 13.5px;
  }
  .header .logo .sitename {
    font-size: 1.1rem;
  }
  #header .d-xl-flex .btn {
    padding: 6px 10px !important;
    font-size: 12px !important;
  }
}

/* ── Top announcement bar ── */
.top-bar {
  background: linear-gradient(90deg, #0a2d5e 0%, #0078d4 50%, #0a2d5e 100%);
  color: #fff;
  font-size: .88rem;
  font-weight: 500;
  padding: 0;
  position: relative;
  z-index: 1001;
  overflow: hidden;
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 0 20px;
}
.top-bar-links {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.top-bar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .3px;
  transition: all .15s;
  white-space: nowrap;
}
.top-bar-cta.post {
  background: rgba(255,255,255,.18);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
}
.top-bar-cta.service {
  background: #ffcc00;
  color: #0a2d5e;
  border: 1.5px solid #ffcc00;
}
.top-bar-cta.post:hover    { background: rgba(255,255,255,.30); color: #fff; text-decoration: none; }
.top-bar-cta.service:hover { background: #ffe033; color: #0a2d5e; text-decoration: none; }
.top-bar-cta i { font-size: 1rem; }
.top-bar-ticker {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 48px;
  display: flex;
  align-items: center;
}
.top-bar-ticker span {
  display: inline-block;
  white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
  color: rgba(255,255,255,.88);
  font-size: .82rem;
}
@keyframes tickerScroll {
  0%   { transform: translateX(40vw); }
  100% { transform: translateX(-100%); }
}
.top-bar-close {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  line-height: 1;
}
.top-bar-close:hover { background: rgba(255,255,255,.25); color: #fff; }
@media (max-width: 767px) {
  .top-bar-inner {
    flex-wrap: wrap;
    min-height: auto;
    padding: 8px 12px;
    gap: 6px;
  }
  .top-bar-links {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }
  .top-bar-cta {
    padding: 7px 14px;
    font-size: .78rem;
    flex: 1;
    justify-content: center;
  }
  .top-bar-ticker {
    width: 100%;
    height: 28px;
    order: 3;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 4px;
  }
  .top-bar-ticker span {
    font-size: .7rem;
  }
  .top-bar-close {
    position: absolute;
    top: 8px;
    right: 10px;
  }
  .top-bar-inner {
    position: relative;
  }
  /* Always show text — never icon-only on mobile */
  .top-bar-cta span { display: inline !important; }
  .top-bar-cta i    { font-size: .9rem; }
}

/* ── Tighten nav at XL (1200-1399px) so auth buttons don't overflow ── */
@media (min-width: 1200px) and (max-width: 1399px) {
  .navmenu a,
  .navmenu a:focus {
    padding: 18px 9px;
    font-size: 13.5px;
  }
  .header .logo .sitename {
    font-size: 1.1rem;
  }
  #header .d-xl-flex .btn {
    padding: 6px 10px !important;
    font-size: 12px !important;
  }
}

/* ==================================================================
   resources/views/frontend/partials/footer.blade.php
   ================================================================== */

/* ── Footer Blue Theme Override ─────────────────────────── */
.footer.accent-background {
  background: linear-gradient(160deg, #061830 0%, #0a2d5e 50%, #0f4c81 100%) !important;
  color: rgba(255,255,255,0.85);
}
.footer.accent-background .sitename {
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.footer.accent-background p,
.footer.accent-background span {
  color: rgba(255,255,255,0.7);
}
.footer.accent-background h4 {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255,255,255,0.12);
  margin-bottom: 16px;
}
.footer.accent-background .footer-links ul a {
  color: rgba(255,255,255,0.65);
  transition: color 0.2s, padding-left 0.2s;
}
.footer.accent-background .footer-links ul a:hover {
  color: #50e6ff;
  padding-left: 4px;
}
.footer.accent-background .footer-links ul i {
  color: #50e6ff;
}
.footer.accent-background .social-links a {
  border-color: rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.05);
  transition: all 0.2s;
}
.footer.accent-background .social-links a:hover {
  background: #0078d4;
  border-color: #0078d4;
  color: #fff;
  transform: translateY(-2px);
}
.footer.accent-background .footer-contact strong {
  color: rgba(255,255,255,0.9);
}
.footer.accent-background .copyright {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-radius: 0;
  padding: 18px 0;
}
.footer.accent-background .copyright p,
.footer.accent-background .credits,
.footer.accent-background .credits a {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
}
.footer.accent-background .credits a:hover {
  color: #50e6ff;
}
/* Divider line in footer top */
.footer.accent-background .footer-top {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  margin-top: 4px;
}
/* ── Properties by Location standalone strip ──────────────── */
.footer-locations {
  background: rgba(0,0,0,0.18);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 28px 0 20px;
  margin-top: 24px;
}
.loc-section-head {
  font-size: .88rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.loc-section-head i { color: #50e6ff; }
.loc-section-sub {
  font-size: .72rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255,255,255,.4);
  margin-left: 6px;
}
/* Contact bar below locations */
.footer-contact-bar {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-contact-bar p {
  color: rgba(255,255,255,0.7);
  font-size: .88rem;
}
/* Location group headings */
.footer.accent-background .loc-group-head {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #50e6ff;
  margin-bottom: 8px;
}
/* Footer brand highlight strip */
.footer-brand-strip {
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 14px 0;
  margin-bottom: 0;
}
.footer-brand-strip .tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
}
.footer-brand-strip .brand-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-brand-strip .brand-name i {
  color: #50e6ff;
  font-size: 1.5rem;
}

/* ==================================================================
   resources/views/frontend/partials/hero.blade.php
   ================================================================== */

/* ── Hero ───────────────────────────────────────────────── */
.hs-hero {
  position: relative;
  min-height: 580px;
  display: flex; align-items: center;
  background:
    linear-gradient(135deg, rgba(10,45,94,0.90) 0%, rgba(15,76,129,0.82) 50%, rgba(21,101,192,0.78) 100%),
    url('/assets/img/real-estate/property-exterior-9.webp') center/cover no-repeat;
  padding: 70px 0 100px;
  overflow: hidden;
}
.hs-hero::after {
  content:''; position:absolute; bottom:-2px; left:0; right:0; height:70px;
  background:#f4f6f9;
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-blob { position:absolute; border-radius:50%; opacity:.06; pointer-events:none; background:#fff; }
.hero-blob-1 { width:450px; height:450px; top:-120px; right:-120px; }
.hero-blob-2 { width:280px; height:280px; bottom:60px; left:-80px; }

.hs-hero .hero-label {
  display:inline-flex; align-items:center; gap:7px;
  background:rgba(255,255,255,.15); backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,.25); border-radius:50px;
  padding:6px 18px; color:#fff; font-size:.82rem; font-weight:700;
  letter-spacing:.5px; margin-bottom:18px;
}
.hs-hero h1 {
  font-size:2.8rem; font-weight:900; color:#fff; line-height:1.18;
  margin-bottom:12px; letter-spacing:-0.5px;
}
.hs-hero h1 span { color:#50e6ff; }
.hs-hero .hero-sub { font-size:1.05rem; color:rgba(255,255,255,.82); margin-bottom:28px; max-width:540px; }

/* ── Search card ─────────────────────────────────────────── */
.hero-search-card { background:#fff; border-radius:20px; box-shadow:0 20px 60px rgba(0,0,0,.22); overflow:hidden; }
.hero-tab-strip { display:flex; background:#f8faff; border-bottom:1px solid #e8f0fe; }
.hero-tab {
  padding:14px 22px; font-size:.88rem; font-weight:700; color:#64748b;
  cursor:pointer; border:none; background:none; border-bottom:3px solid transparent;
  transition:all .2s; display:flex; align-items:center; gap:6px;
}
.hero-tab.active, .hero-tab:hover { color:#0a2d5e; border-bottom-color:#0078d4; background:#fff; }
.hero-tab-panel { display:none; padding:20px 22px 16px; }
.hero-tab-panel.active { display:block; }
.hero-search-row { display:flex; gap:10px; align-items:flex-end; flex-wrap:wrap; }
.hero-field { flex:1; min-width:150px; }
.hero-field label { display:block; font-size:.7rem; font-weight:800; text-transform:uppercase; letter-spacing:.6px; color:#94a3b8; margin-bottom:4px; }
.hero-field input, .hero-field select {
  width:100%; border:1.5px solid #e4e8f0; border-radius:10px;
  padding:10px 14px; font-size:.875rem; color:#1e293b;
  outline:none; transition:border-color .2s; background:#fafbff;
}
.hero-field input:focus, .hero-field select:focus { border-color:#0078d4; background:#fff; box-shadow:0 0 0 3px rgba(0,120,212,.1); }
.btn-hero-search {
  background:linear-gradient(135deg,#0a2d5e,#0078d4); color:#fff; border:none;
  border-radius:12px; padding:11px 26px; font-size:.95rem; font-weight:800;
  cursor:pointer; transition:opacity .2s; white-space:nowrap;
  display:flex; align-items:center; gap:8px;
}
.btn-hero-search:hover { opacity:.88; }
.popular-tags { margin-top:12px; display:flex; flex-wrap:wrap; gap:7px; align-items:center; }
.popular-tags > span { font-size:.75rem; color:#94a3b8; font-weight:700; }
.popular-tag { background:#f1f5f9; color:#475569; border-radius:50px; padding:4px 12px; font-size:.75rem; font-weight:600; text-decoration:none; transition:all .2s; }
.popular-tag:hover { background:#0078d4; color:#fff; }

/* ── Stats row ───────────────────────────────────────────── */
.hero-stats { display:flex; gap:6px; margin-top:24px; flex-wrap:wrap; }
.hero-stat {
  flex:1; min-width:100px; text-align:center; padding:14px 8px;
  background:rgba(255,255,255,.12); backdrop-filter:blur(6px);
  border:1px solid rgba(255,255,255,.18); border-radius:14px; transition:background .2s;
}
.hero-stat:hover { background:rgba(255,255,255,.2); }
.hero-stat-num { font-size:1.5rem; font-weight:900; color:#fff; line-height:1; }
.hero-stat-label { font-size:.68rem; color:rgba(255,255,255,.7); font-weight:600; margin-top:3px; text-transform:uppercase; letter-spacing:.4px; }

/* ── Right grid ──────────────────────────────────────────── */
.hero-right-grid { display:grid; grid-template-columns:1fr 1fr; gap:10px; height:350px; }
.hero-img-card { border-radius:16px; overflow:hidden; position:relative; box-shadow:0 8px 30px rgba(0,0,0,.3); }
.hero-img-card img { width:100%; height:100%; object-fit:cover; }
.hero-img-card.tall { grid-row:span 2; }
.hero-img-card-label {
  position:absolute; bottom:0; left:0; right:0;
  background:linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 100%);
  padding:20px 12px 10px;
}
.hero-img-card-label .price { font-size:1rem; color:#fff; font-weight:900; }
.hero-img-card-label .loc { font-size:.72rem; color:rgba(255,255,255,.8); }
.hero-verified-badge {
  position:absolute; top:10px; right:10px;
  background:rgba(255,255,255,.9); border-radius:50px;
  padding:3px 9px; font-size:.68rem; font-weight:700; color:#16a34a;
}

@media(max-width:991px) {
  .hs-hero h1 { font-size:2rem; }
  .hero-right-grid { display:none; }
  .hs-hero { min-height:auto; padding:50px 0 90px; }
}
@media(max-width:576px) {
  .hero-tab { padding:10px 12px; font-size:.78rem; }
  .hero-search-row { flex-direction:column; }
  .hero-field { min-width:100%; }
}
