/* ==============================================
   ESSENTIMMO TEMPLATE — SHARED STYLESHEET
   Bootstrap 5.3 + League Spartan font
   Brand color: #993333 (burgundy accent)
   ============================================== */

/* -----------------------------------------------
   CSS VARIABLES
----------------------------------------------- */
:root {
  --color-dark: #2c2c2c;
  --color-accent: #993333;
  --color-accent-dark: #7a2626;
  --color-light: #F2F5F7;
  --color-white: #ffffff;
  --color-muted: #4B4F58;
  --color-border: #e0e0e0;
  --font-sans: 'League Spartan', sans-serif;
  --navbar-height: 80px;
}

/* -----------------------------------------------
   BASE
----------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  font-size: 15px;
  color: #3a3a3a;
  background-color: var(--color-white);
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-sans);
  font-weight: 700;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  color: var(--color-accent-dark);
}

img {
  max-width: 100%;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.section-title {
  font-size: 2rem;
  color: var(--color-dark);
  margin-bottom: 10px;
  line-height: 1.2;
}

.divider-accent {
  width: 48px;
  height: 3px;
  background: var(--color-accent);
  margin-bottom: 24px;
}

.section-header {
  margin-bottom: 52px;
}

/* -----------------------------------------------
   TOP BAR
----------------------------------------------- */
.topbar {
  background-color: var(--color-dark);
  color: rgba(255, 255, 255, .65);
  font-size: 12.5px;
  height: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.topbar a {
  color: rgba(255, 255, 255, .65);
  transition: color .2s;
}

.topbar a:hover {
  color: var(--color-accent);
}

.topbar .divider {
  border-left: 1px solid rgba(255, 255, 255, .18);
  height: 14px;
  margin: 0 14px;
}

/* -----------------------------------------------
   NAVBAR
----------------------------------------------- */
.navbar {
  background-color: var(--color-white);
  height: var(--navbar-height);
  box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1030;
  /* needed so absolute-positioned collapse is contained */
  isolation: isolate;
}

/* On mobile the collapsed menu drops as an overlay — navbar stays fixed height */
@media (max-width: 991.98px) {
  .navbar {
    height: var(--navbar-height);
  }

  .navbar-collapse {
    position: absolute;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    background-color: var(--color-white);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    padding: 8px 0 16px;
    z-index: 1029;
  }
}

.navbar-brand {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-dark);
  letter-spacing: -.3px;
}

.navbar-brand span {
  color: var(--color-accent);
}

.navbar-nav .nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .5px;
  color: #3a3a3a;
  padding: 0 16px !important;
  text-transform: uppercase;
  position: relative;
  transition: color .2s;
}

/* Bigger tap targets on mobile */
@media (max-width: 991.98px) {
  .navbar-nav .nav-link {
    padding: 14px 20px !important;
    font-size: 15px;
  }
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transition: transform .25s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--color-accent);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

/* -----------------------------------------------
   BUTTONS
----------------------------------------------- */
.btn-accent {
  background-color: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  padding: 10px 22px;
  border-radius: 2px;
  transition: background-color .2s, transform .15s;
  display: inline-block;
}

.btn-accent:hover {
  background-color: var(--color-accent-dark);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-outline-accent {
  border: 1.5px solid var(--color-accent);
  color: var(--color-accent);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 2px;
  transition: all .2s;
  display: inline-block;
}

.btn-outline-accent:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}

/* -----------------------------------------------
   HOME HERO (full-height)
----------------------------------------------- */
.hero-home {
  position: relative;
  min-height: 620px;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-home .hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=1800&q=80');
  background-size: cover;
  background-position: center;
  opacity: .4;
}

.hero-home::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.55) 0%, rgba(0,0,0,.1) 100%);
  z-index: 1;
}

.hero-home .hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero-home .hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-white);
  opacity: .75;
  margin-bottom: 16px;
}

.hero-home h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-home .hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, .7);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}

/* Search bar on hero */
.hero-search {
  background: var(--color-white);
  border-radius: 4px;
  padding: 6px 6px 6px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 580px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .25);
}

.hero-search select,
.hero-search input {
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 13px;
  color: #3a3a3a;
  background: transparent;
  flex: 1;
  padding: 8px 0;
}

.hero-search .search-divider {
  width: 1px;
  height: 24px;
  background: var(--color-border);
  flex-shrink: 0;
}

.hero-search button {
  background: var(--color-accent);
  border: none;
  color: white;
  padding: 12px 20px;
  border-radius: 3px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background .2s;
}

.hero-search button:hover {
  background: var(--color-accent-dark);
}

/* -----------------------------------------------
   PAGE HERO (inner pages)
----------------------------------------------- */
.page-hero {
  position: relative;
  height: 340px;
  background: var(--color-dark);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .35;
}

.page-hero .hero-bg-about {
  background-image: url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1600&q=80');
}

.page-hero .hero-bg-properties {
  background-image: url('https://images.unsplash.com/photo-1560185893-a55cbc8c57e8?w=1600&q=80');
}

.page-hero .hero-bg-services {
  background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1600&q=80');
}

.page-hero .hero-bg-contact {
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80');
}

.page-hero .hero-bg-legal {
  background-image: url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1600&q=80');
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: rgba(255, 255, 255, .4);
}

.breadcrumb-item a {
  color: rgba(255, 255, 255, .6);
}

.breadcrumb-item.active {
  color: var(--color-accent);
}

.page-hero .section-label {
  color: rgba(255, 255, 255, .75);
}

.page-hero .breadcrumb-item.active {
  color: rgba(255, 255, 255, .85);
}

/* -----------------------------------------------
   STATS STRIP
----------------------------------------------- */
.stats-strip {
  background: var(--color-accent);
  padding: 0;
}

.stats-strip .stat-item {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .15);
}

.stats-strip .stat-item:last-child {
  border-right: none;
}

.stats-strip .stat-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}

.stats-strip .stat-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, .8);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* -----------------------------------------------
   PROPERTY CARDS
----------------------------------------------- */
.property-card {
  background: var(--color-white);
  border-radius: 3px;
  overflow: hidden;
  transition: box-shadow .25s;
  height: 100%;
}

.property-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, .12);
}

.property-card .card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.property-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-card .card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--color-accent);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}

.property-card .card-badge.rent {
  background: var(--color-dark);
}

.property-card .card-body {
  padding: 20px 22px 22px;
}

.property-card .card-type {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 6px;
}

.property-card .card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.property-card .card-location {
  font-size: 13px;
  color: var(--color-muted);
  margin-bottom: 14px;
}

.property-card .card-location .bi {
  color: var(--color-accent);
}

.property-card .card-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-accent);
}

.property-card .card-price small {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-muted);
}

.property-card .card-specs {
  display: flex;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  margin-top: 14px;
  font-size: 12.5px;
  color: var(--color-muted);
}

.property-card .card-specs .spec .bi {
  color: var(--color-accent);
  margin-right: 4px;
}

/* -----------------------------------------------
   FILTER BAR (Properties page)
----------------------------------------------- */
.filter-bar {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 3px;
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
}

.filter-bar .form-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.filter-bar .form-select,
.filter-bar .form-control {
  border: 1.5px solid var(--color-border);
  border-radius: 2px;
  font-size: 13px;
  padding: 9px 12px;
  color: #3a3a3a;
  font-family: var(--font-sans);
}

.filter-bar .form-select:focus,
.filter-bar .form-control:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(153, 51, 51, .12);
}

/* -----------------------------------------------
   ABOUT SECTION
----------------------------------------------- */
.section-about {
  padding: 96px 0;
  background-color: var(--color-white);
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 2px;
}

.about-img-wrap .badge-exp {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 120px;
  height: 120px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 24px rgba(153, 51, 51, .3);
}

.about-img-wrap .badge-exp .num {
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
}

.about-img-wrap .badge-exp .lbl {
  font-size: 10px;
  text-align: center;
  opacity: .9;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-text {
  padding-left: 48px;
}

.about-text h2 {
  font-size: 2.2rem;
  line-height: 1.25;
  color: var(--color-dark);
  margin-bottom: 20px;
}

.about-text p {
  line-height: 1.8;
  color: var(--color-muted);
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.about-stats .stat-item .stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1;
}

.about-stats .stat-item .stat-num span {
  color: var(--color-accent);
}

.about-stats .stat-item .stat-lbl {
  font-size: 12px;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* -----------------------------------------------
   SERVICE CARDS
----------------------------------------------- */
.section-services {
  background-color: var(--color-light);
  padding: 80px 0;
}

.service-card {
  background: var(--color-white);
  padding: 36px 32px;
  border-radius: 3px;
  border-bottom: 3px solid transparent;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  height: 100%;
}

.service-card:hover {
  border-bottom-color: var(--color-accent);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

.service-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(153, 51, 51, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: var(--color-accent);
}

.service-card h4 {
  font-size: 1.1rem;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-muted);
  margin: 0;
}

/* -----------------------------------------------
   PROCESS STEPS
----------------------------------------------- */
.section-process {
  padding: 80px 0;
  background: var(--color-white);
}

.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.process-step .step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-accent);
  position: relative;
  background: var(--color-white);
  z-index: 1;
}

.process-step h5 {
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13.5px;
  color: var(--color-muted);
  line-height: 1.6;
}

.process-connector {
  position: absolute;
  top: 32px;
  left: calc(50% + 40px);
  right: calc(-50% + 40px);
  height: 2px;
  background: var(--color-border);
  z-index: 0;
}

/* -----------------------------------------------
   CTA BANNER
----------------------------------------------- */
.cta-banner {
  background: var(--color-accent);
  padding: 64px 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255, 255, 255, .8);
  font-size: 15px;
  max-width: 500px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

.btn-white {
  background: var(--color-white);
  color: var(--color-accent);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  padding: 13px 28px;
  border-radius: 2px;
  transition: all .2s;
  display: inline-block;
}

.btn-white:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

.btn-white-outline {
  border: 2px solid rgba(255, 255, 255, .6);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 28px;
  border-radius: 2px;
  transition: all .2s;
  display: inline-block;
}

.btn-white-outline:hover {
  border-color: white;
  background: rgba(255, 255, 255, .1);
  color: var(--color-white);
}

/* -----------------------------------------------
   TESTIMONIALS
----------------------------------------------- */
.section-testimonials {
  background: var(--color-light);
  padding: 80px 0;
}

.testimonial-card {
  background: var(--color-white);
  padding: 36px 32px;
  border-radius: 3px;
  border-left: 4px solid var(--color-accent);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
  height: 100%;
}

.testimonial-card .quote-icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  opacity: .25;
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial-card p {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--color-muted);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card .author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card .author-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--color-dark);
}

.testimonial-card .author-sub {
  font-size: 12px;
  color: var(--color-muted);
}

.star-rating {
  color: #f59e0b;
  font-size: 13px;
}

/* -----------------------------------------------
   TEAM STRIP
----------------------------------------------- */
.section-team {
  padding: 80px 0;
}

.team-card {
  text-align: center;
}

.team-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--color-border);
  margin-bottom: 16px;
  transition: border-color .2s;
}

.team-card:hover img {
  border-color: var(--color-accent);
}

.team-card h5 {
  font-size: 1rem;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 12px;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.team-card .contact-links a {
  color: var(--color-muted);
  font-size: 13px;
  display: block;
  margin-top: 2px;
}

.team-card .contact-links a:hover {
  color: var(--color-accent);
}

/* -----------------------------------------------
   CONTACT / FORM
----------------------------------------------- */
.section-contact {
  background-color: var(--color-light);
  padding: 80px 0;
}

.contact-form-wrap {
  background: var(--color-white);
  padding: 44px 40px;
  border-radius: 3px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .05);
}

.contact-info-wrap {
  padding-left: 40px;
}

.form-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.form-control,
.form-select {
  border: 1.5px solid var(--color-border);
  border-radius: 2px;
  font-size: 14px;
  padding: 10px 14px;
  color: #3a3a3a;
  font-family: var(--font-sans);
  transition: border-color .2s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(153, 51, 51, .15);
}

.form-control::placeholder {
  color: #adb5bd;
}

.form-check-input:checked {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.info-block {
  margin-bottom: 32px;
}

.info-block h5 {
  font-size: 1.1rem;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.info-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #3a3a3a;
}

.info-row .bi {
  color: var(--color-accent);
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}

.info-row a {
  color: #3a3a3a;
}

.info-row a:hover {
  color: var(--color-accent);
}

.map-placeholder {
  width: 100%;
  height: 220px;
  border-radius: 3px;
  overflow: hidden;
  margin-top: 24px;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* -----------------------------------------------
   PAGINATION
----------------------------------------------- */
.pagination .page-link {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--color-dark);
  border-color: var(--color-border);
  border-radius: 4px !important;
  padding: 6px 12px;
  transition: background-color .15s, border-color .15s, color .15s;
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.pagination .page-item.disabled .page-link {
  color: #adb5bd;
  background-color: transparent;
}

/* -----------------------------------------------
   FOOTER
----------------------------------------------- */
footer {
  background-color: var(--color-dark);
  color: rgba(255, 255, 255, .6);
  padding: 60px 0 0;
}

footer h6 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 20px;
}

footer .footer-brand {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-white);
}

footer .footer-brand span {
  color: var(--color-accent);
}

footer p {
  font-size: 13.5px;
  line-height: 1.75;
  max-width: 280px;
}

footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .footer-links li {
  margin-bottom: 10px;
}

footer .footer-links a {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .55);
  transition: color .2s;
}

footer .footer-links a:hover {
  color: var(--color-accent);
}

footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .6);
  font-size: 15px;
  line-height: 1;
  transition: all .2s;
  margin-right: 8px;
}

footer .social-links a i {
  line-height: 1;
  display: block;
}

footer .social-links a:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 18px 0;
  margin-top: 48px;
  font-size: 12.5px;
}

/* -----------------------------------------------
   RESPONSIVE
----------------------------------------------- */
@media (max-width: 991px) {
  .about-text {
    padding-left: 0;
    margin-top: 60px;
  }

  .contact-info-wrap {
    padding-left: 0;
    margin-top: 40px;
  }
}

@media (max-width: 767px) {
  .about-img-wrap .badge-exp {
    right: -10px;
    bottom: -10px;
    width: 90px;
    height: 90px;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero-search {
    flex-wrap: wrap;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .stats-strip .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
  }
}

/* -----------------------------------------------
   SHARED JS HELPERS (applied via JS)
----------------------------------------------- */
.navbar.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, .12);
}