/* Vaheesan Jeyaveerasingam — RE/MAX Ace Realty
   Extracted from partials/header.php so browsers cache it once
   instead of re-downloading it inside every page. */

:root {
  --navy-dark:  #04203F;
  --navy:       #002D72;
  --blue:       #0B57C2;
  --blue-light: #E5EEFB;
  --red:        #E4002B;
  --red-dark:   #C10024;
  --red-soft:   #FCE7EB;
  --sky:        #2F80D8;
  --sky-soft:   #E9F2FC;
  --cream:      #F6F8FB;
  --white:      #FFFFFF;
  --text-dark:  #0F1B2D;
  --text-mid:   #374151;
  --text-muted: #6B7280;
  --border:     #E5E9F0;
  --shadow-sm:  0 2px 12px rgba(4,32,63,.07);
  --shadow-md:  0 8px 30px rgba(4,32,63,.11);
  --shadow-lg:  0 20px 60px rgba(4,32,63,.15);
  --radius:     16px;
  --radius-sm:  10px;

  /* Aliases so the dynamic listings / property views resolve */
  --sans:  'DM Sans', system-ui, -apple-system, sans-serif;
  --serif: 'Playfair Display', Georgia, serif;
  --red-dk: var(--red-dark);
  --dark:   var(--text-dark);
  --muted:  var(--text-muted);
  --mid:    var(--text-mid);
  --bg:     var(--cream);
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 4px; }

/* ---- NAVBAR ---- */
.navbar-ace {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--blue-light);
}
.navbar-ace .container-fluid { padding: 0 2rem; }

.navbar-brand-wrap { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.brand-logo-img { height: 48px; width: auto; display: block; margin: 12px 0; }
@media (max-width: 575px) { .brand-logo-img { height: 38px; margin: 10px 0; } }

.footer-logo-badge { display: inline-block; background: #fff; padding: 13px 18px; border-radius: 12px; margin-bottom: 1.3rem; box-shadow: 0 6px 18px rgba(0,0,0,.18); }
.footer-logo-badge img { height: 44px; width: auto; display: block; }
@media (max-width: 575px) { .footer-logo-badge img { height: 36px; } }

.footer-agent { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.1rem; }
.footer-agent-photo {
  width: 75px; height: 75px;
  border-radius: 50%;
  object-fit: contain;
  border: 2.5px solid rgba(255,255,255,.18);
  box-shadow: 0 6px 18px rgba(0,0,0,.18);
  flex-shrink: 0;
  background: #fff;
}
.footer-agent-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--white); line-height: 1.3; }
.footer-agent-title { font-size: .78rem; color: rgba(255,255,255,.55); }

.navbar-nav .nav-item { flex-shrink: 0; }

.nav-link-custom {
  font-size: .84rem;
  font-weight: 500;
  color: var(--text-mid) !important;
  padding: 1.5rem .6rem !important;
  white-space: nowrap;
  transition: color .2s;
  position: relative;
}
.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 3px;
  background: var(--red);
  border-radius: 2px 2px 0 0;
  transition: left .25s, right .25s;
}
.nav-link-custom:hover,
.nav-link-custom.active { color: var(--navy) !important; }
.nav-link-custom:hover::after,
.nav-link-custom.active::after { left: .85rem; right: .85rem; }

.dropdown-menu { border: none; box-shadow: var(--shadow-md); border-radius: var(--radius-sm); padding: .5rem; }
.dropdown-item { border-radius: 6px; font-size: .85rem; padding: .5rem .85rem; color: var(--text-mid); }
.dropdown-item:hover { background: var(--blue-light); color: var(--navy); }

.navbar-phone {
  font-size: .8rem; font-weight: 700;
  color: var(--navy);
  display: flex; align-items: center; gap: .3rem;
  padding: .42rem .75rem;
  border: 1.5px solid var(--blue-light);
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}
.navbar-phone:hover { background: var(--blue-light); color: var(--navy); }

.btn-nav-cta {
  background: var(--red);
  color: var(--white) !important;
  border-radius: 50px;
  padding: .5rem 1.15rem;
  font-size: .8rem;
  font-weight: 600;
  border: none;
  display: inline-flex; align-items: center; gap: .3rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .2s, transform .15s;
}
.btn-nav-cta:hover { background: var(--navy); transform: translateY(-1px); color: var(--white) !important; }

/* ---- BUTTONS ---- */
.btn-red {
  background: var(--red); color: var(--white);
  border-radius: 50px; padding: .75rem 1.8rem;
  font-size: .9rem; font-weight: 600; border: none;
  display: inline-flex; align-items: center; gap: .4rem;
  transition: all .2s;
}
.btn-red:hover { background: var(--red-dark); color: var(--white); transform: translateY(-2px); }

.btn-navy {
  background: var(--navy); color: var(--white);
  border-radius: 50px; padding: .75rem 2rem;
  font-size: .9rem; font-weight: 600; border: none;
  display: inline-flex; align-items: center; gap: .4rem;
  transition: all .2s;
}
.btn-navy:hover { background: var(--navy-dark); color: var(--white); transform: translateY(-2px); }

.btn-outline-navy {
  background: transparent; color: var(--navy);
  border: 2px solid var(--blue-light);
  border-radius: 50px; padding: .7rem 1.8rem;
  font-size: .9rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: .4rem;
  transition: all .2s;
}
.btn-outline-navy:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ---- HERO ---- */
.hero-section {
  position: relative;
  background: var(--navy-dark);
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/banner.jpg') center/cover no-repeat;
}
.hero-slide { display: none; width: 100%; }
.hero-slide.active { display: block; }

.hero-badge {
  display: inline-block;
  background: rgba(228,0,43,.16);
  border: 1.5px solid var(--red);
  color: #ff5c78;
  font-size: .75rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 50px;
  margin-bottom: 1.2rem;
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 1.2rem;
}
.hero-title span { color: #E4002B; }
.hero-desc { color: rgba(255,255,255,.8); font-size: 1rem; max-width: 480px; line-height: 1.75; margin-bottom: 2rem; }

.btn-hero-primary {
  background: var(--red); color: var(--white);
  border-radius: 50px; padding: .75rem 1.8rem;
  font-size: .9rem; font-weight: 600; border: none;
  display: inline-flex; align-items: center; gap: .4rem;
  transition: all .2s;
}
.btn-hero-primary:hover { background: var(--red-dark); color: var(--white); transform: translateY(-2px); }

.btn-hero-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 50px; padding: .75rem 1.8rem;
  font-size: .9rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: .4rem;
  transition: all .2s;
}
.btn-hero-outline:hover { background: rgba(255,255,255,.1); color: var(--white); border-color: rgba(255,255,255,.85); }

.hero-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: perspective(900px) rotateY(-3deg);
  transition: transform .4s;
}
.hero-img-wrap:hover { transform: perspective(900px) rotateY(0deg); }
.hero-img-wrap img { width: 100%; height: 480px; object-fit: cover; display: block; }

.hero-stats { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--white); }
.hero-stat span { font-size: .72rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: 1px; }

.hero-dots { display: flex; gap: .5rem; margin-top: 2rem; }
.hero-dot { width: 8px; height: 8px; background: rgba(255,255,255,.35); border-radius: 50%; cursor: pointer; transition: all .25s; }
.hero-dot.active { background: var(--red); width: 24px; border-radius: 4px; }

/* ---- PAGE HERO (interior banner) ---- */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 70px 0 60px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../img/page-hero.jpg') center/cover;
  opacity: .14;
}
.page-hero::after {
  content: '';
  position: absolute; top: -80px; right: -60px;
  width: 300px; height: 300px;
  background: rgba(228,0,43,.14); border-radius: 50%;
}
.page-hero .container,
.page-hero .page-hero-inner { position: relative; z-index: 2; }
.page-hero .page-hero-inner { max-width: 1400px; margin: 0 auto; padding: 0 5%; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: var(--white); margin-bottom: .6rem; }
.page-hero h1 span, .page-hero h1 em { color: #ff6b85; font-style: normal; }
.page-hero p { color: rgba(255,255,255,.78); font-size: .95rem; max-width: 620px; line-height: 1.7; }

.breadcrumb, .breadcrumb-nv { display: flex; align-items: center; gap: .5rem; font-size: .82rem; margin-bottom: 1rem; flex-wrap: wrap; }
.breadcrumb a, .breadcrumb-nv a { color: rgba(255,255,255,.7); }
.breadcrumb a:hover, .breadcrumb-nv a:hover { color: var(--white); }
.breadcrumb strong, .breadcrumb-nv span { color: #ff6b85; font-weight: 600; }
.breadcrumb span { color: rgba(255,255,255,.4); }
.breadcrumb-nv i { color: rgba(255,255,255,.4); font-size: .9rem; }

/* ---- SECTION HEADING ---- */
.section-label {
  font-size: .72rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red);
  display: block; margin-bottom: .5rem;
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); color: var(--text-dark); line-height: 1.25; }
.section-title span { color: var(--navy); }
.section-divider {
  width: 50px; height: 4px;
  background: linear-gradient(90deg, var(--red), var(--navy));
  border-radius: 2px; margin: 1rem 0 1.5rem;
}

/* ---- SERVICES / WHY CARDS ---- */
.services-section { background: var(--cream); padding: 90px 0 70px; }
.py-section { padding: 90px 0 70px; }
.service-card-nv {
  background: var(--white); border-radius: var(--radius);
  padding: 2rem 1.6rem; box-shadow: var(--shadow-sm);
  border: 1.5px solid transparent; transition: all .3s;
  height: 100%; position: relative; overflow: hidden;
}
.service-card-nv::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--red));
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.service-card-nv:hover { border-color: var(--blue-light); box-shadow: var(--shadow-md); transform: translateY(-6px); }
.service-card-nv:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px; height: 60px; background: var(--blue-light);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--navy); margin-bottom: 1.2rem; transition: all .3s;
}
.service-card-nv:hover .service-icon { background: var(--navy); color: var(--white); }
.service-card-nv h4 { font-size: 1.1rem; color: var(--text-dark); margin-bottom: .6rem; }
.service-card-nv p { font-size: .85rem; color: var(--text-muted); line-height: 1.65; margin: 0; }
.service-learn {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .82rem; font-weight: 600; color: var(--navy);
  margin-top: 1rem; transition: gap .2s;
}
.service-learn:hover { gap: .6rem; color: var(--red); }

/* ---- ABOUT / FEATURED ---- */
.property-featured { padding: 90px 0 70px; background: var(--white); }
.about-img-stack { position: relative; }
.about-img-main { border-radius: var(--radius); width: 100%; height: 460px; object-fit: cover; box-shadow: var(--shadow-lg); }
.about-img-badge {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--red); border-radius: var(--radius);
  padding: 1.4rem 1.8rem; color: var(--white); box-shadow: var(--shadow-md);
}
.about-img-badge strong { font-family: 'Playfair Display', serif; font-size: 2rem; display: block; }
.about-img-badge span { font-size: .78rem; opacity: .9; }

.about-features { list-style: none; padding: 0; margin: 1.5rem 0; }
.about-features li {
  display: flex; align-items: flex-start; gap: .85rem;
  padding: .85rem 0; border-bottom: 1px solid var(--border);
  font-size: .9rem; color: var(--text-mid);
}
.about-features li:last-child { border-bottom: none; }
.about-features li .feat-icon {
  width: 38px; height: 38px; flex-shrink: 0; background: var(--blue-light);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 1rem;
}
.about-features li strong { display: block; color: var(--text-dark); font-size: .9rem; margin-bottom: .1rem; }

.stat-row { display: flex; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.stat-box { text-align: center; }
.stat-box strong { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--navy); }
.stat-box span { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ---- LISTINGS ---- */
.listings-home { padding: 90px 0 70px; background: var(--cream); }
.filter-tabs { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.filter-tab {
  padding: .45rem 1.2rem; border-radius: 50px; border: 1.5px solid var(--border);
  background: var(--white); color: var(--text-muted);
  font-size: .82rem; font-weight: 500; cursor: pointer; transition: all .2s;
}
.filter-tab.active, .filter-tab:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

.listing-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1.5px solid var(--border);
  transition: all .3s; height: 100%;
}
.listing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); border-color: var(--blue-light); }
.listing-img-wrap { position: relative; overflow: hidden; }
.listing-img-wrap img { width: 100%; height: 230px; object-fit: cover; display: block; transition: transform .45s; }
.listing-card:hover .listing-img-wrap img { transform: scale(1.06); }
.listing-badge {
  position: absolute; top: 14px; right: 14px;
  padding: .3rem .85rem; border-radius: 50px;
  font-size: .75rem; font-weight: 700; letter-spacing: .5px;
}
.badge-rent { background: var(--navy); color: var(--white); }
.badge-sale { background: var(--red); color: var(--white); }
.listing-fav {
  position: absolute; top: 14px; left: 14px;
  width: 34px; height: 34px; background: rgba(255,255,255,.92);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 1rem; cursor: pointer; transition: all .2s; border: none;
}
.listing-fav:hover { background: var(--red-soft); color: var(--red); }
.listing-body { padding: 1.3rem 1.4rem 1.5rem; }
.listing-address { display: flex; align-items: flex-start; gap: .5rem; margin-bottom: .9rem; }
.listing-address-bar { width: 4px; min-height: 40px; background: var(--navy); border-radius: 2px; flex-shrink: 0; }
.listing-address h5 { font-family: 'DM Sans', sans-serif; font-size: .95rem; font-weight: 700; color: var(--text-dark); margin: 0; line-height: 1.45; }
.listing-address small { font-size: .78rem; color: var(--text-muted); display: block; margin-top: .1rem; }
.listing-price-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.listing-price strong { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--text-dark); }
.listing-price sup { font-family: 'DM Sans', sans-serif; font-size: .85rem; font-weight: 600; color: var(--text-dark); }
.listing-price sub { font-size: .75rem; color: var(--text-muted); font-family: 'DM Sans', sans-serif; }
.listing-status-badge { padding: .28rem .9rem; border-radius: 6px; font-size: .75rem; font-weight: 700; }
.status-rent { background: var(--blue-light); color: var(--navy); }
.status-sale { background: var(--red-soft); color: var(--red); }
.listing-meta { display: flex; gap: 1.1rem; flex-wrap: wrap; }
.listing-meta-item { display: flex; align-items: center; gap: .35rem; font-size: .8rem; color: var(--text-muted); }
.listing-meta-item i { color: var(--blue); font-size: .95rem; }

/* ---- PROCESS STEPS ---- */
.process-section { padding: 90px 0 70px; background: var(--white); }
.process-step { position: relative; padding: 2rem 1.5rem; background: var(--white); border-radius: var(--radius); border: 1.5px solid var(--border); height: 100%; transition: all .3s; }
.process-step:hover { border-color: var(--blue-light); box-shadow: var(--shadow-md); transform: translateY(-6px); }
.process-num {
  font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 800;
  color: var(--blue-light); line-height: 1; margin-bottom: .8rem;
}
.process-step:hover .process-num { color: var(--red); }
.process-step h4 { font-size: 1.1rem; color: var(--text-dark); margin-bottom: .5rem; }
.process-step p { font-size: .85rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ---- BLOG ---- */
.blog-section { padding: 90px 0 70px; background: var(--cream); }
.blog-card-nv {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1.5px solid var(--border); transition: all .3s; height: 100%;
}
.blog-card-nv:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
.blog-card-nv img { width: 100%; height: 210px; object-fit: cover; display: block; transition: transform .4s; }
.blog-card-nv:hover img { transform: scale(1.05); }
.blog-card-nv .bc-body { padding: 1.4rem; }
.blog-date { font-size: .75rem; color: var(--red); font-weight: 600; letter-spacing: .5px; display: flex; align-items: center; gap: .3rem; margin-bottom: .7rem; }
.blog-card-nv h5 { font-size: 1rem; color: var(--text-dark); line-height: 1.45; margin-bottom: .8rem; }
.blog-read { font-size: .82rem; font-weight: 600; color: var(--navy); display: inline-flex; align-items: center; gap: .3rem; transition: gap .2s; }
.blog-read:hover { gap: .55rem; color: var(--red); }

/* ---- CONTACT / FORMS ---- */
.contact-section { padding: 90px 0 70px; background: var(--cream); }
.contact-info-card {
  background: var(--white); border-radius: var(--radius); padding: 1.6rem;
  border: 1.5px solid var(--border); box-shadow: var(--shadow-sm);
  display: flex; align-items: flex-start; gap: 1rem; height: 100%; transition: all .3s;
}
.contact-info-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--blue-light); }
.ci-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: var(--white);
}
.ci-icon.red { background: var(--red); }
.ci-icon.navy { background: var(--navy); }
.ci-icon.sky { background: var(--sky); }
.contact-info-card .ci-label { font-size: .7rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: .25rem; }
.contact-info-card .ci-value { font-size: .92rem; color: var(--text-dark); font-weight: 600; line-height: 1.5; }
.contact-info-card .ci-value a { color: var(--text-dark); }
.contact-info-card .ci-value a:hover { color: var(--red); }

.form-card { background: var(--white); border-radius: var(--radius); padding: 2.2rem; box-shadow: var(--shadow-md); border: 1.5px solid var(--border); }
.form-label-nv { font-size: .72rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--text-mid); margin-bottom: .4rem; display: block; }
.form-control-nv, .form-select-nv {
  width: 100%; padding: .8rem 1rem; font-size: .88rem;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  background: var(--cream); color: var(--text-dark); outline: none; transition: all .2s; font-family: 'DM Sans', sans-serif;
}
.form-control-nv:focus, .form-select-nv:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 3px rgba(11,87,194,.12); }
textarea.form-control-nv { resize: vertical; min-height: 130px; }
.alert-ok { background: #E7F7ED; border: 1px solid #A6E0BC; color: #17663A; padding: 1rem 1.2rem; border-radius: var(--radius-sm); margin-bottom: 1.2rem; font-size: .9rem; font-weight: 500; display: flex; align-items: center; gap: .5rem; }
.alert-err { background: var(--red-soft); border: 1px solid #f3b6c2; color: var(--red-dark); padding: 1rem 1.2rem; border-radius: var(--radius-sm); margin-bottom: 1.2rem; font-size: .9rem; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1.5px solid var(--border); height: 100%; min-height: 340px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ---- NEWSLETTER ---- */
.newsletter-section { background: linear-gradient(135deg, var(--navy-dark), var(--navy)); padding: 80px 0; position: relative; overflow: hidden; }
.newsletter-section::before { content: ''; position: absolute; top: -80px; right: -80px; width: 350px; height: 350px; background: rgba(228,0,43,.12); border-radius: 50%; }
.newsletter-section::after { content: ''; position: absolute; bottom: -100px; left: -60px; width: 280px; height: 280px; background: rgba(47,128,216,.14); border-radius: 50%; }
.newsletter-icon { width: 64px; height: 64px; background: rgba(255,255,255,.12); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--white); margin-bottom: 1rem; }
.newsletter-title { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--white); margin-bottom: .5rem; }
.newsletter-sub { color: rgba(255,255,255,.72); font-size: .9rem; }

/* ---- FOOTER ---- */
footer { background: var(--navy-dark); color: rgba(255,255,255,.75); }
.footer-top { padding: 70px 0 50px; }
.footer-about { font-size: .85rem; line-height: 1.75; margin-bottom: 1.3rem; max-width: 300px; }
.social-links { display: flex; gap: .6rem; }
.social-link-btn { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.7); font-size: 1rem; transition: all .2s; }
.social-link-btn:hover { background: var(--red); color: var(--white); transform: translateY(-2px); }
.footer-heading { font-family: 'DM Sans', sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--white); margin-bottom: 1.3rem; position: relative; padding-bottom: .65rem; }
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2.5px; background: var(--red); border-radius: 2px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .6rem; }
.footer-links a { color: rgba(255,255,255,.65); font-size: .86rem; display: flex; align-items: center; gap: .4rem; transition: all .2s; }
.footer-links a:hover { color: var(--red); padding-left: 4px; }
.footer-links a i { font-size: .65rem; }
.footer-contact-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: .9rem; }
.footer-contact-item .fc-icon { width: 32px; height: 32px; flex-shrink: 0; background: rgba(255,255,255,.07); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--red); }
.footer-contact-item span { font-size: .83rem; color: rgba(255,255,255,.65); }
.footer-contact-item a { color: rgba(255,255,255,.8); font-size: .83rem; transition: color .2s; }
.footer-contact-item a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 1.3rem 0; }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,.45); margin: 0; }
.footer-bottom a { color: var(--red); }

/* ---- BACK TO TOP ---- */
#backToTop { position: fixed; bottom: 24px; right: 24px; width: 42px; height: 42px; background: var(--red); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; cursor: pointer; box-shadow: var(--shadow-md); transition: all .25s; opacity: 0; visibility: hidden; border: none; z-index: 999; }
#backToTop.show { opacity: 1; visibility: visible; }
#backToTop:hover { background: var(--navy); transform: translateY(-3px); }

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .hero-img-wrap { margin-top: 2.5rem; transform: none; }
  .about-img-badge { right: 0; bottom: -20px; }
  .navbar-collapse { padding-bottom: 1rem; }
}
@media (max-width: 767px) {
  .navbar-ace .container-fluid { padding: 0 1rem; }
  .hero-section { min-height: auto; padding: 70px 0; }
  .about-img-badge { position: static; margin-top: 1rem; display: inline-block; }
  .stat-row { gap: 1.2rem; }
  .form-card { padding: 1.5rem; }
}
@media (max-width: 575px) { .navbar-phone { display: none; } }
