:root {
  --red: #d50012;
  --dark: #111;
  --muted: #666;
  --soft: #f6f6f6;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  color: #111;
  background: #fff;
  overflow-x: hidden;
}
.container {
  max-width: 1180px;
}
.navbar {
  background: #fff;
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.navbar-brand img {
  width: 126px;
}
.navbar-nav {
  gap: 16px;
}
.nav-link {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: #111 !important;
  padding: 8px 2px !important;
  position: relative;
}
.nav-link.active,
.nav-link:hover {
  color: var(--red) !important;
}
.nav-link.active:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  height: 3px;
  background: var(--red);
  border-radius: 9px;
}
.dropdown-menu {
  border: 0;
  border-radius: 10px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.16);
  padding: 10px;
  max-height: 430px;
  overflow-y: auto;
}
.dropdown-item {
  font-size: 13px;
  font-weight: 700;
  border-radius: 8px;
  padding: 9px 12px;
}
.dropdown-item:hover {
  background: #fff0f0;
  color: var(--red);
}
.call-btn {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 11px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(213, 0, 18, 0.25);
  line-height: 1;
}
.call-btn i {
  font-size: 26px;
}
.call-btn small {
  display: block;
  font-size: 10px;
  font-weight: 800;
}
.call-btn span {
  font-size: 20px;
}
.hero {
  position: relative;
  background: linear-gradient(
    90deg,
    #fff 0%,
    #fff 39%,
    #fafafa 39%,
    #fafafa 100%
  );
  min-height: 570px;
  overflow: hidden;
}
.hero:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 55%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.97)),
    url("assets/images/home-hero-house.jpg") center/cover;
  filter: grayscale(1);
  opacity: 0.18;
}
.hero-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 43% 57%;
  align-items: start;
  min-height: 570px;
}
.hero-copy {
  padding: 64px 0 40px;
}
.kicker {
  color: var(--red);
  font-weight: 900;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero h1 {
  font-family: Oswald, Montserrat, sans-serif;
  font-size: 78px;
  line-height: 0.96;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -1px;
  margin: 0;
}
.hero h1 span {
  color: var(--red);
  font-size: 102px;
  display: block;
}
.underline {
  width: 70px;
  height: 4px;
  background: var(--red);
  margin: 22px 0;
}
.hero p {
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
  max-width: 470px;
}
.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 30px 0 30px;
}
.feat {
  display: flex;
  align-items: center;
  gap: 9px;
  border-right: 1px solid #ddd;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.15;
}
.feat:last-child {
  border-right: 0;
}
.feat i {
  color: var(--red);
  font-size: 25px;
}
.btn-red {
  background: var(--red);
  color: #fff;
  border: 0;
  text-decoration: none;
  padding: 15px 20px;
  border-radius: 9px;
  font-weight: 900;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 8px 18px rgba(213, 0, 18, 0.2);
}
.btn-red .circle {
  background: #fff;
  color: var(--red);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.hero-visual {
  position: relative;
  height: 525px;
  margin-top: 18px;
}
.hero-visual:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 95px;
  background: #fff;
  clip-path: polygon(100% 0, 30% 0, 0 45%, 30% 100%, 100% 100%);
  z-index: 2;
}
.hero-visual:after {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 9px;
  background: var(--red);
  transform: skewX(-36deg);
  z-index: 3;
  border-radius: 9px;
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.priority {
  position: absolute;
  right: 70px;
  bottom: 0;
  background: linear-gradient(135deg, #d90012, #b9000e);
  color: #fff;
  padding: 20px 54px 20px 86px;
  clip-path: polygon(8% 0, 100% 0, 93% 100%, 0 100%);
  z-index: 4;
  min-width: 360px;
  font-size: 22px;
  font-weight: 800;
}
.priority i {
  position: absolute;
  left: 40px;
  top: 30px;
  font-size: 35px;
}
.priority em {
  font-family: Pacifico, cursive;
  font-size: 32px;
  font-weight: 400;
}
.search-card {
  position: relative;
  margin-top: -32px;
  z-index: 5;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.14);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: center;
  padding: 15px 18px;
  gap: 10px;
}
.search-item {
  display: flex;
  gap: 15px;
  align-items: center;
  border-right: 1px solid #ddd;
  padding: 0 20px;
}
.search-item i {
  font-size: 30px;
  color: var(--red);
}
.search-item small {
  display: block;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.search-item span {
  color: #444;
  font-size: 15px;
}
.section {
  padding: 55px 0;
  margin-top: 40px;
}
.section:first-of-type {
  margin-top: 0;
}
.why {
  margin: 65px 0 0 !important;
}
.services-grid,
.prop-row,
.bottom-area,
.why-grid {
  animation: fadeUp 0.9s ease both;
}
.property-card,
.service-card,
.testimonial,
.dream {
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}
.property-card:hover,
.service-card:hover,
.testimonial:hover,
.dream:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 16px;
}
.eyebrow {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 14px;
}
.section h2 {
  font-size: 25px;
  font-weight: 900;
  margin: 4px 0 0;
}
.outline-btn {
  border: 1px solid var(--red);
  color: var(--red);
  text-decoration: none;
  border-radius: 7px;
  padding: 12px 22px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  background: #fff;
}
.prop-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.property-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  position: relative;
}
.property-card img {
  height: 150px;
  width: 100%;
  object-fit: cover;
}
.tag {
  position: absolute;
  top: 12px;
  left: 13px;
  background: var(--red);
  color: #fff;
  border-radius: 3px;
  padding: 5px 10px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
}
.property-body {
  padding: 13px;
}
.property-body small {
  font-size: 11px;
  color: #333;
}
.property-body small i {
  color: var(--red);
  margin-right: 5px;
}
.property-body h4 {
  font-size: 14px;
  font-weight: 900;
  margin: 8px 0;
}
.price-line {
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-size: 13px;
}
.price {
  font-size: 19px;
  color: var(--red);
  font-weight: 900;
}
.why {
  background: linear-gradient(135deg, #d50012, #9e0009);
  color: #fff;
  padding: 42px 0;
  margin-top: 65px;
  margin-bottom: 55px;
}
.why-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 20px;
  align-items: center;
}
.why h3 {
  font-size: 30px;
  font-weight: 900;
  margin: 0;
}
.stat {
  display: flex;
  align-items: center;
  gap: 14px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 20px;
}
.stat i {
  font-size: 38px;
}
.stat b {
  font-size: 26px;
  line-height: 1;
}
.stat span {
  display: block;
  font-size: 12px;
  font-weight: 700;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.service-card {
  border: 1px solid #e6e6e6;
  border-radius: 8px;
  padding: 22px;
  background: #fff;
  min-height: 145px;
}
.service-card i {
  color: var(--red);
  font-size: 42px;
  margin-bottom: 13px;
}
.service-card h4 {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
}
.bottom-area {
  display: grid;
  grid-template-columns: 1fr 1fr 390px;
  gap: 18px;
  padding-bottom: 28px;
}
.testimonial {
  border: 1px solid #e4e4e4;
  border-radius: 8px;
  padding: 25px;
  background: #fff;
  min-height: 150px;
}
.testimonial .quote {
  color: var(--red);
  font-size: 28px;
}
.testimonial p {
  font-size: 13px;
  font-weight: 600;
}
.stars {
  color: #ffbd00;
}
.dream {
  background:
    linear-gradient(90deg, #fff1f1, #fff),
    url("assets/images/home-hero-house.jpg") right bottom/auto 100% no-repeat;
  border-radius: 8px;
  padding: 30px;
}
.dream h3 {
  color: var(--red);
  font-weight: 900;
}
.whats {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #d77;
  background: #fff;
  color: #111;
  text-decoration: none;
  padding: 11px 16px;
  border-radius: 6px;
  font-weight: 900;
  font-size: 13px;
}
.whats i {
  background: #22c45e;
  color: white;
  border-radius: 6px;
  font-size: 26px;
  padding: 7px;
}
.contact-strip {
  background: var(--red);
  color: #fff;
  padding: 16px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 700;
}
.contact-item:last-child {
  border: 0;
}
.contact-item i {
  font-size: 30px;
}
.contact-item b {
  display: block;
}
.footer {
  background: #111;
  color: #ddd;
  padding: 25px 0 12px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr 1fr 1.2fr;
  gap: 35px;
}
.footer-logo {
  width: 420px;
  filter: brightness(0) invert(1);
}
.footer h5 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 900;
}
.footer a {
  display: block;
  color: #ddd;
  text-decoration: none;
  font-size: 12px;
  margin: 5px 0;
}
.footer .social a {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #333;
  margin-right: 8px;
}
.newsletter {
  display: flex;
}
.newsletter input {
  background: #202020;
  border: 1px solid #333;
  color: #fff;
  padding: 10px;
  width: 100%;
  font-size: 12px;
}
.newsletter button {
  background: var(--red);
  border: 0;
  color: #fff;
  width: 45px;
}
.copy {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 18px;
  padding-top: 12px;
  font-size: 11px;
}
.reveal,
.reveal-card {
  opacity: 0;
  transform: translateY(36px);
  animation: none;
}
.reveal.show,
.reveal-card.show {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal-card:nth-child(2) {
  transition-delay: 0.1s;
}
.reveal-card:nth-child(3) {
  transition-delay: 0.2s;
}
.reveal-card:nth-child(4) {
  transition-delay: 0.3s;
}
.reveal-card:nth-child(5) {
  transition-delay: 0.4s;
}
@media (max-width: 991px) {
  .navbar-brand img {
    width: 100px;
  }
  .navbar-nav {
    gap: 5px;
  }
  .hero-wrap {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
  }
  .hero-copy {
    padding: 35px 0 20px;
  }
  .hero h1 {
    font-size: 55px;
  }
  .hero h1 span {
    font-size: 70px;
  }
  .hero-visual {
    height: 330px;
    margin: 0 -12px;
  }
  .features {
    grid-template-columns: repeat(2, 1fr);
  }
  .search-card {
    grid-template-columns: 1fr;
  }
  .search-item {
    border-right: 0;
    border-bottom: 1px solid #eee;
    padding: 12px;
  }
  .prop-row,
  .services-grid,
  .why-grid,
  .bottom-area,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .section-head {
    display: block;
  }
  .property-card img {
    height: 190px;
  }
  .stat {
    border-left: 0;
    padding-left: 0;
  }
  .priority {
    right: 15px;
    min-width: 270px;
    font-size: 17px;
  }
  .priority em {
    font-size: 24px;
  }
  .call-btn {
    display: inline-flex;
    margin-top: 10px;
  }
  .hero-visual:before,
  .hero-visual:after {
    display: none;
  }
}

/* FINAL HOME PAGE ALIGNMENT FIX - matches provided reference hero */
@media (min-width: 992px) {
  .navbar {
    padding: 8px 0 !important;
  }
  .navbar-brand img {
    width: 115px !important;
    height: auto !important;
    display: block !important;
  }
  .hero {
    min-height: 525px !important;
    background: linear-gradient(
      90deg,
      #fff 0%,
      #fff 46%,
      #fafafa 46%,
      #fafafa 100%
    ) !important;
  }
  .hero-wrap {
    grid-template-columns: 50% 50% !important;
    min-height: 525px !important;
    align-items: start !important;
  }
  .hero-copy {
    padding: 42px 0 28px !important;
    position: relative;
    z-index: 6;
  }
  .kicker {
    font-size: 20px !important;
    margin-bottom: 16px !important;
    line-height: 1.1 !important;
  }
  .hero h1 {
    font-size: 70px !important;
    line-height: 1.02 !important;
    letter-spacing: -0.5px !important;
    white-space: normal !important;
  }
  .hero h1 span {
    font-size: 92px !important;
    line-height: 1 !important;
  }
  .hero p {
    font-size: 17px !important;
    max-width: 500px !important;
    margin-bottom: 0 !important;
  }
  .features {
    margin: 26px 0 28px !important;
    gap: 10px !important;
    max-width: 520px !important;
  }
  .hero-visual {
    height: 500px !important;
    margin-top: 0 !important;
    overflow: visible !important;
  }
  .hero-visual img {
    height: 500px !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
  .hero-visual:before {
    width: 110px !important;
    left: -2px !important;
  }
  .hero-visual:after {
    left: 32px !important;
    width: 8px !important;
    transform: skewX(-33deg) !important;
  }
  .priority {
    right: 70px !important;
    bottom: 0 !important;
    min-width: 350px !important;
    padding: 18px 48px 18px 82px !important;
  }
  .search-card {
    margin-top: -18px !important;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1210px !important;
  }
  .hero h1 {
    font-size: 74px !important;
  }
  .hero h1 span {
    font-size: 98px !important;
  }
}
@media (min-width: 992px) and (max-width: 1140px) {
  .hero h1 {
    font-size: 60px !important;
  }
  .hero h1 span {
    font-size: 82px !important;
  }
  .kicker {
    font-size: 18px !important;
  }
  .features {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  .hero {
    min-height: 500px !important;
  }
  .hero-wrap {
    min-height: 500px !important;
  }
  .hero-visual,
  .hero-visual img {
    height: 480px !important;
  }
}

/* CLEAN HOME HERO FIX: remove duplicate diagonal overlays and use the ready reference image neatly */
.hero {
  background: #fff !important;
  min-height: 520px !important;
  overflow: hidden !important;
}
.hero:before {
  display: none !important;
}
.hero-wrap {
  grid-template-columns: 44% 56% !important;
  min-height: 520px !important;
  align-items: start !important;
}
.hero-copy {
  padding: 46px 0 24px !important;
  z-index: 2 !important;
}
.hero h1 {
  font-size: 68px !important;
  line-height: 0.98 !important;
  letter-spacing: -1px !important;
}
.hero h1 span {
  font-size: 90px !important;
  line-height: 0.98 !important;
}
.hero-visual {
  height: 520px !important;
  margin-top: 0 !important;
  overflow: hidden !important;
  border-radius: 0 !important;
}
.hero-visual:before,
.hero-visual:after {
  display: none !important;
  content: none !important;
}
.hero-visual img {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
  object-fit: cover !important;
  object-position: center center !important;
}
.hero-visual .priority {
  display: none !important;
}
.search-card {
  margin-top: -12px !important;
}
.reveal,
.reveal-card {
  opacity: 0;
  transform: translateY(36px);
  animation: none;
}
.reveal.show,
.reveal-card.show {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal-card:nth-child(2) {
  transition-delay: 0.1s;
}
.reveal-card:nth-child(3) {
  transition-delay: 0.2s;
}
.reveal-card:nth-child(4) {
  transition-delay: 0.3s;
}
.reveal-card:nth-child(5) {
  transition-delay: 0.4s;
}
@media (max-width: 991px) {
  .hero-wrap {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }
  .hero-copy {
    padding: 30px 12px 20px !important;
  }
  .hero h1 {
    font-size: 48px !important;
  }
  .hero h1 span {
    font-size: 64px !important;
  }
  .hero-visual {
    height: auto !important;
    margin: 0 !important;
  }
  .hero-visual img {
    height: auto !important;
    object-fit: contain !important;
  }
  .search-card {
    margin-top: 10px !important;
  }
}
@media (max-width: 575px) {
  .hero h1 {
    font-size: 38px !important;
  }
  .hero h1 span {
    font-size: 52px !important;
  }
  .kicker {
    font-size: 18px !important;
  }
}

/* VC Assets final logo and hero fixes */
.navbar-brand img {
  height: 72px !important;
  width: auto !important;
  max-width: 150px !important;
  object-fit: contain !important;
  display: block !important;
}
.navbar {
  min-height: 86px !important;
}
.footer-logo {
  width: 420px !important;
  height: auto !important;
}
.hero-visual img {
  object-position: center center !important;
}
@media (max-width: 420px) {
  .navbar-brand img {
    height: 58px !important;
    max-width: 420px !important;
  }
  .navbar {
    min-height: 72px !important;
  }
}

/* FINAL FIX: same home-style navbar, bigger readable logo, full hero image, sticky scroll */
html {
  scroll-behavior: smooth !important;
}
body {
  overflow-x: hidden !important;
}
.navbar,
.navbar.sticky-top {
  position: sticky !important;
  top: 0 !important;
  z-index: 99999 !important;
  background: #fff !important;
  min-height: 86px !important;
  padding: 8px 0 !important;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08) !important;
}
.navbar .container {
  display: flex !important;
  align-items: center !important;
}
.navbar-brand {
  width: 190px !important;
  height: 72px !important;
  flex: 0 0 190px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  overflow: visible !important;
  margin-right: 22px !important;
}
.navbar-brand img,
.navbar .logo-img {
  width: auto !important;
  height: 88px !important;
  max-width: 190px !important;
  object-fit: contain !important;
  display: block !important;
  transform: none !important;
  animation: none !important;
}
.navbar-nav {
  align-items: center !important;
  gap: 14px !important;
}
.navbar-nav .nav-link {
  font-size: 13px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  color: #111 !important;
  letter-spacing: 0.1px !important;
  white-space: nowrap !important;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--red, #d50012) !important;
}
.call-btn {
  background: var(--red, #d50012) !important;
  color: #fff !important;
  border-radius: 12px !important;
  padding: 12px 18px !important;
  white-space: nowrap !important;
}
.call-btn span {
  font-size: 15px !important;
  font-weight: 900 !important;
}
.hero-visual {
  height: 525px !important;
  margin-top: 18px !important;
  background: #fff !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.hero-visual:before,
.hero-visual:after {
  display: none !important;
  content: none !important;
}
.hero-visual img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
  background: #fff !important;
}
.priority {
  display: none !important;
}
.section,
.section-pad,
.featured-carousel-section {
  scroll-margin-top: 105px !important;
}
.footer .footer-logo {
  width: 420px !important;
  height: auto !important;
  max-width: 420px !important;
  object-fit: contain !important;
  animation: none !important;
  transform: none !important;
}
@media (max-width: 420px) {
  .navbar,
  .navbar.sticky-top {
    min-height: 76px !important;
  }
  .navbar-brand {
    width: 150px !important;
    height: 62px !important;
    flex-basis: 150px !important;
  }
  .navbar-brand img,
  .navbar .logo-img {
    height: 72px !important;
    max-width: 150px !important;
  }
  .navbar-collapse {
    background: #fff !important;
    border-radius: 16px !important;
    margin-top: 10px !important;
    padding: 14px !important;
    max-height: 78vh !important;
    overflow-y: auto !important;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.16) !important;
  }
  .hero-visual {
    height: auto !important;
    min-height: 300px !important;
    margin: 0 !important;
  }
  .hero-visual img {
    height: auto !important;
    min-height: 300px !important;
    object-fit: contain !important;
  }
}
@media (max-width: 575px) {
  .navbar,
  .navbar.sticky-top {
    min-height: 68px !important;
    padding: 5px 0 !important;
  }
  .navbar-brand {
    width: 125px !important;
    height: 55px !important;
    flex-basis: 125px !important;
  }
  .navbar-brand img,
  .navbar .logo-img {
    height: 62px !important;
    max-width: 125px !important;
  }
}

/* Final small fixes: active menu, phone display */
.navbar .nav-link.active {
  color: #d50012 !important;
}
.navbar .call-btn span {
  font-size: 14px !important;
  line-height: 1.15 !important;
  white-space: nowrap !important;
}
@media (max-width: 991px) {
  .navbar .call-btn span {
    font-size: 13px !important;
    white-space: normal !important;
  }
}

/* === FINAL USER FIX: footer logo top aligned + compact dream property card === */
.footer-grid {
  align-items: flex-start !important;
}
.footer-brand {
  min-height: 0 !important;
  height: auto !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  padding-top: 0 !important;
}
.footer .footer-logo,
.footer-logo {
  width: 420px !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 260px !important;
  object-fit: contain !important;
  object-position: left top !important;
  margin: 0 !important;
  display: block !important;
}
.footer-col h5 {
  margin-top: 0 !important;
}
.clients-section {
  padding-bottom: 30px !important;
}
.client-slider-area {
  align-items: start !important;
}
.dream {
  min-height: 175px !important;
  height: 175px !important;
  padding: 20px 28px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: flex-start !important;
  border-radius: 10px !important;
}
.dream h3 {
  font-size: 24px !important;
  line-height: 1.08 !important;
  margin: 0 0 9px !important;
}
.dream p {
  font-size: 14px !important;
  margin: 0 0 12px !important;
}
.dream .whats {
  padding: 8px 13px !important;
  font-size: 12px !important;
  line-height: 1.1 !important;
}
.dream .whats i {
  font-size: 22px !important;
  padding: 6px !important;
}
.dream:after {
  width: 70% !important;
  opacity: 0.42 !important;
  background:
    linear-gradient(
      to right,
      rgba(255, 245, 245, 0.78),
      rgba(255, 245, 245, 0.18)
    ),
    url("assets/images/home-hero-house.jpg") right center/cover no-repeat !important;
}
@media (max-width: 991px) {
  .footer .footer-logo,
  .footer-logo {
    width: 420px !important;
    max-height: 210px !important;
    margin: 0 auto !important;
    object-position: center top !important;
  }
  .footer-brand {
    align-items: center !important;
    justify-content: center !important;
  }
  .dream {
    height: auto !important;
    min-height: 170px !important;
  }
}
@media (max-width: 575px) {
  .footer .footer-logo,
  .footer-logo {
    width: 420px !important;
    max-height: 190px !important;
  }
  .dream h3 {
    font-size: 21px !important;
  }
}

/* Final requested fixes: footer email normal, mobile dropdowns, career image, map link */
.contact-strip .contact-item:nth-child(3) b,
.contact-strip .contact-item:nth-child(3) a,
.footer-contact a[href*="myhome@investinmysore.in"] {
  font-weight: 400 !important;
}
.career-openings {
  display: flex !important;
  flex-direction: column !important;
}
.career-openings .career-side-image {
  margin-top: 18px !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  min-height: 230px !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12) !important;
}
.career-openings .career-side-image img {
  width: 100% !important;
  height: 100% !important;
  min-height: 230px !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.45s ease !important;
}
.career-openings:hover .career-side-image img {
  transform: scale(1.05) !important;
}
.map-link {
  display: block !important;
  cursor: pointer !important;
}
.navbar .dropdown-menu {
  z-index: 1055 !important;
}
@media (max-width: 991px) {
  .search-card {
    overflow: visible !important;
    position: relative !important;
  }
  .search-card .search-item {
    position: relative !important;
    overflow: visible !important;
    z-index: auto !important;
  }
  .search-card .dropdown {
    position: static !important;
    width: 100% !important;
  }
  .search-card .dropdown-menu.show {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    min-width: 100% !important;
    margin-top: 10px !important;
    max-height: 220px !important;
    overflow-y: auto !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16) !important;
    border-radius: 12px !important;
  }
  .location-btn,
  .property-type-btn {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }
  .dropdown-submenu > .dropdown-menu {
    position: static !important;
    left: auto !important;
    top: auto !important;
    margin-left: 12px !important;
    margin-top: 6px !important;
    box-shadow: none !important;
    max-height: 240px !important;
    overflow-y: auto !important;
  }
  .dropdown-submenu.open > .dropdown-menu {
    display: block !important;
  }
}

/* FINAL FIX: restore services submenu and clean click-toggle behavior */
.navbar .nav-item.dropdown {
  position: relative !important;
}
.navbar .nav-item.dropdown > .dropdown-menu {
  display: none !important;
}
.navbar .nav-item.dropdown.show > .dropdown-menu,
.navbar .nav-item.dropdown > .dropdown-menu.show {
  display: block !important;
}
.navbar .services-main-menu {
  min-width: 270px !important;
  overflow: visible !important;
  max-height: none !important;
}
.navbar .dropdown-submenu {
  position: relative !important;
}
.navbar .dropdown-submenu > .dropdown-menu {
  display: none !important;
  position: absolute !important;
  left: 100% !important;
  top: 0 !important;
  min-width: 270px !important;
  margin-left: 8px !important;
  margin-top: 0 !important;
  overflow-y: auto !important;
  max-height: 430px !important;
}
.navbar .dropdown-submenu.open > .dropdown-menu,
.navbar .dropdown-submenu:hover > .dropdown-menu {
  display: block !important;
}
.navbar .dropdown-submenu > a.dropdown-toggle::after {
  position: absolute !important;
  right: 12px !important;
  top: 50% !important;
  transform: translateY(-50%) rotate(-90deg) !important;
}
@media (max-width: 991px) {
  .navbar .services-main-menu {
    max-height: 420px !important;
    overflow-y: auto !important;
  }
  .navbar .dropdown-submenu > .dropdown-menu {
    position: static !important;
    left: auto !important;
    top: auto !important;
    margin: 6px 0 8px 12px !important;
    min-width: 100% !important;
    max-height: 240px !important;
    box-shadow: none !important;
  }
}

/* FINAL FIX: Home Featured Properties real 4-card carousel */
#featured-properties .featured-slider-wrap {
  position: relative !important;
  overflow: hidden !important;
  padding: 6px 8px 22px !important;
}
#featured-properties .featured-properties-grid {
  display: flex !important;
  grid-template-columns: none !important;
  gap: 18px !important;
  transition: transform 0.6s ease !important;
  will-change: transform !important;
  align-items: stretch !important;
}
#featured-properties .featured-properties-grid .ref-property {
  flex: 0 0 calc((100% - 54px) / 4) !important;
  min-width: calc((100% - 54px) / 4) !important;
}
#featured-properties .featured-arrow {
  display: grid !important;
  top: 50% !important;
  width: 42px !important;
  height: 42px !important;
  z-index: 20 !important;
}
#featured-properties .featured-prev {
  left: 2px !important;
}
#featured-properties .featured-next {
  right: 2px !important;
}
a[href^="tel:"],
.phone-number,
.contact-item b,
.nav-phone-lines,
.nav-phone-lines a {
  font-weight: 400 !important;
}
@media (max-width: 991px) {
  #featured-properties .featured-properties-grid .ref-property {
    flex-basis: calc((100% - 18px) / 2) !important;
    min-width: calc((100% - 18px) / 2) !important;
  }
  #featured-properties .featured-arrow {
    display: grid !important;
    width: 38px !important;
    height: 38px !important;
  }
}
@media (max-width: 575px) {
  #featured-properties .featured-properties-grid .ref-property {
    flex-basis: 100% !important;
    min-width: 100% !important;
  }
  #featured-properties .featured-prev {
    left: 5px !important;
  }
  #featured-properties .featured-next {
    right: 5px !important;
  }
}

/* VC services simplified dropdown + premium services module */
.navbar .services-main-menu {
  min-width: 230px;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  padding: 10px;
  background: #fff;
  overflow: visible !important;
}
.navbar .services-main-menu .dropdown-item {
  font-weight: 500 !important;
  border-radius: 10px;
  padding: 12px 16px;
  color: #1b1b1b;
}
.navbar .services-main-menu .dropdown-item:hover,
.navbar .services-main-menu .dropdown-item:focus {
  background: #d40000;
  color: #fff;
}
.vc-service-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #090909 0%, #2a0505 58%, #d40000 100%);
  padding: 92px 0;
  color: #fff;
}
.vc-service-hero:after {
  content: "";
  position: absolute;
  right: -90px;
  top: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}
.vc-service-hero h1 {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -1px;
}
.vc-service-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}
.vc-premium-section {
  padding: 86px 0;
  background: #fff;
}
.vc-soft {
  background: #f7f7f7;
}
.vc-section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  color: #111;
}
.vc-section-title span {
  color: #d40000;
}
.vc-section-kicker {
  font-weight: 800;
  color: #d40000;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
}
.vc-angle-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: 100%;
  transition: 0.35s;
  position: relative;
}
.vc-angle-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 70px rgba(212, 0, 0, 0.18);
}
.vc-angle-card .img-wrap {
  height: 210px;
  clip-path: polygon(0 0, 100% 0, 100% 82%, 0 100%);
  overflow: hidden;
}
.vc-angle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.vc-angle-card:hover img {
  transform: scale(1.08);
}
.vc-angle-card .content {
  padding: 22px;
}
.vc-angle-card h4 {
  font-weight: 850;
  font-size: 20px;
}
.vc-angle-card p {
  color: #666;
  font-size: 14px;
}
.vc-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: #d40000;
  color: #fff !important;
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 12px 30px rgba(212, 0, 0, 0.25);
}
.vc-link-btn:hover {
  background: #111;
  color: #fff !important;
}
.vc-stagger-grid .vc-angle-card:nth-child(even) {
  margin-top: 38px;
}
.vc-diagonal {
  background: linear-gradient(
    135deg,
    #d40000 0%,
    #9e0000 50%,
    #111 50%,
    #111 100%
  );
  color: #fff;
  border-radius: 34px;
  padding: 54px;
  overflow: hidden;
}
.vc-icon-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 22px;
  padding: 24px;
  height: 100%;
  transition: 0.35s;
}
.vc-icon-card:hover {
  transform: translateY(-8px);
  border-color: #ffd0d0;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.1);
}
.vc-icon-card i {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #d40000;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.vc-icon-card h4 {
  font-size: 19px;
  font-weight: 850;
}
.vc-icon-card p {
  color: #666;
  font-size: 14px;
}
.vc-pyramid {
  display: grid;
  gap: 18px;
  justify-items: center;
}
.vc-pyramid-row {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.vc-pyramid-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  padding: 18px 20px;
  min-width: 220px;
  text-align: center;
  font-weight: 800;
  transition: 0.35s;
}
.vc-pyramid-item:hover {
  background: #d40000;
  color: #fff;
  transform: translateY(-8px);
}
.vc-circle-zone {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vc-circle-core {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #d40000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  box-shadow: 0 20px 60px rgba(212, 0, 0, 0.28);
  z-index: 2;
}
.vc-orbit-card {
  position: absolute;
  width: 170px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  animation: vcFloat 4s ease-in-out infinite;
}
.vc-orbit-card:nth-child(2) {
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}
.vc-orbit-card:nth-child(3) {
  right: 8%;
  top: 32%;
}
.vc-orbit-card:nth-child(4) {
  right: 18%;
  bottom: 8%;
}
.vc-orbit-card:nth-child(5) {
  left: 18%;
  bottom: 8%;
}
.vc-orbit-card:nth-child(6) {
  left: 8%;
  top: 32%;
}
@keyframes vcFloat {
  0%,
  100% {
    margin-top: 0;
  }
  50% {
    margin-top: -12px;
  }
}
.vc-detail-hero {
  padding: 82px 0;
  background: linear-gradient(
    120deg,
    #111 0%,
    #111 52%,
    #d40000 52%,
    #d40000 100%
  );
  color: #fff;
  overflow: hidden;
}
.vc-detail-hero img {
  border-radius: 30px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 360px;
  object-fit: cover;
}
.vc-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.vc-feature-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  color: #333;
}
.vc-feature-list i {
  color: #d40000;
  margin-top: 4px;
}
.vc-enquiry-box {
  background: #111;
  color: #fff;
  border-radius: 28px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.vc-enquiry-box:before {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: #d40000;
  opacity: 0.5;
}
.vc-enquiry-box .btn {
  position: relative;
  z-index: 1;
}
.vc-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: all 0.75s ease;
}
.vc-reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 991px) {
  .vc-stagger-grid .vc-angle-card:nth-child(even) {
    margin-top: 0;
  }
  .vc-diagonal {
    padding: 34px;
  }
  .vc-circle-zone {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .vc-circle-core,
  .vc-orbit-card {
    position: static !important;
    transform: none !important;
    width: 100%;
    animation: none;
  }
  .vc-detail-hero {
    background: #111;
  }
  .vc-detail-hero img {
    height: 260px;
  }
}
