/* Self-hosted Montserrat Font */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(fonts/montserrat-latin.woff2) format('woff2');
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", Arial, sans-serif;
  color: #333333;
  background: #ffffff;
  line-height: 1.7;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.text-center {
  text-align: center;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.footer-heart {
  color: #c1121f;
}
svg.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}
.section-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #c1121f;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}
.section-title {
  font-size: 38px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 50px;
}
/* TOP BAR */
.top-bar {
  background: #111111;
  padding: 10px 0;
  font-size: 13px;
  color: #ffffff;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left svg,
.top-bar-right svg {
  color: #c1121f;
  margin-right: 8px;
}
.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
/* NAVBAR  */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 14px 0;
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-img {
  width: 120px;
  height: 56px;
  margin-right: 8px;
  display: block;
}
.nav-menu {
  display: flex;
  gap: 28px;
}
.nav-menu a {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  transition: color 0.3s ease;
  position: relative;
}
.nav-menu a:hover {
  color: #c1121f;
}
.btn-cta {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background: #c1121f;
  padding: 10px 24px;
  border-radius: 6px;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}
.btn-cta:hover {
  background: #a00e1a;
  box-shadow: 0 4px 20px rgba(193, 18, 31, 0.35);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 26px;
  height: 2px;
  background: #111111;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* dropdown */

.dropdown {
  position: relative;
}

/* Caret arrow after the toggle link */
.dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: middle;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.25s ease;
}

.dropdown:hover .dropdown-toggle::after,
.dropdown.open .dropdown-toggle::after {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;           /* flush against the nav — no gap */
  left: 0;
  min-width: 220px;
  background: #fff;
  list-style: none;
  padding: 8px 0 8px; /* visual top space comes from padding, not offset */
  margin: 0;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
  border: 1px solid rgba(0,0,0,0.06);
  z-index: 9999;
  animation: dropFadeIn 0.18s ease;
}

/* Invisible bridge fills the gap between nav link and menu panel */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}

@keyframes dropFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #333333;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu li a:hover {
  background: rgba(193, 18, 31, 0.06);
  color: #c1121f;
}

/* Desktop hover */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Mobile: show as stacked block when parent .open */
@media (max-width: 768px) {
  .dropdown-toggle::after {
    float: right;
    margin-top: 6px;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0 0 0 16px;
    background: transparent;
    animation: none;
  }
  .dropdown-menu li a {
    font-size: 13px;
    color: #555555;
    padding: 6px 0;
  }
  .dropdown-menu li a:hover {
    background: transparent;
    color: #c1121f;
  }
  .dropdown.open .dropdown-menu {
    display: block;
  }
}


/*  HERO  */
.hero {
  padding: 40px 0 60px;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 50%, #f5f0f0 100%);
  min-height: 85vh;
  display: flex;
  align-items: center;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: #c1121f;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.hero-left h1 {
  font-size: 52px;
  font-weight: 700;
  color: #111111;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 16px;
  color: #666666;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}
.btn-primary {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: #c1121f;
  padding: 14px 32px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}
.btn-primary:hover {
  background: #a00e1a;
  box-shadow: 0 6px 24px rgba(193, 18, 31, 0.3);
}
.btn-outline {
  font-size: 14px;
  font-weight: 600;
  color: #111111;
  border: 2px solid #111111;
  padding: 12px 32px;
  border-radius: 6px;
  display: inline-block;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}
.btn-outline:hover {
  background: #111111;
  color: #ffffff;
}
.hero-stats {
  display: flex;
  gap: 40px;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat-num {
  font-size: 32px;
  font-weight: 700;
  color: #c1121f;
}
.stat-label {
  font-size: 13px;
  color: #595959;
  margin-top: 2px;
}
.hero-right {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}
.hero-carousel {
  border-radius: 16px;
}
.hero-carousel img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
}
.hero-carousel .owl-nav button.owl-prev,
.hero-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff !important;
  background: rgba(0, 0, 0, 0.3) !important;
  width: 44px;
  height: 44px;
  border-radius: 50% !important;
  font-size: 18px !important;
  line-height: 44px;
  transition: background 0.3s ease;
}
.hero-carousel .owl-nav button.owl-prev {
  left: 12px;
}
.hero-carousel .owl-nav button.owl-next {
  right: 12px;
}
.hero-carousel .owl-nav button:hover {
  background: rgba(0, 0, 0, 0.5) !important;
}
.hero-carousel .owl-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-carousel .owl-dots .owl-dot span {
  background: rgba(255, 255, 255, 0.5);
}
.hero-carousel .owl-dots .owl-dot.active span {
  background: #c1121f;
}

/* FEATURES  */
.features {
  padding: 60px 0;
  background: #111111;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease;
}
.feature-card:hover {
  background: rgba(255, 255, 255, 0.08);
}
.feature-card svg {
  font-size: 32px;
  color: #c1121f;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}
.feature-card p {
  font-size: 13px;
  color: #b0b0b0;
  line-height: 1.6;
}
/*  ABOUT  */
.about {
  padding: 100px 0;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}
.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}
.about-content h2 {
  font-family: "Montserrat", serif;
  font-size: 38px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 20px;
  line-height: 1.2;
}
.about-desc {
  font-size: 15px;
  color: #555555;
  margin-bottom: 28px;
  line-height: 1.8;
}
.about-points {
  margin-bottom: 32px;
}
.about-point {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #333333;
  font-weight: 400;
}
.about-point svg {
  color: #c1121f;
  font-size: 18px;
}

/* PROPERTIES */
.properties {
  padding: 100px 0;
  background: #f9f9f9;
}
.properties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.property-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition:
  transform 0.3s ease,
  box-shadow 0.3s ease;
}
.property-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}
.property-img {
  position: relative;
  overflow: hidden;
}
.property-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.property-card:hover .property-img img {
  transform: scale(1.05);
}
.property-type {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #c1121f;
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.property-info {
  padding: 20px;
}
.property-info h3 {
  font-size: 18px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 6px;
}
.property-location {
  font-size: 13px;
  color: #595959;
  margin-bottom: 16px;
}
.property-location svg {
  color: #c1121f;
  margin-right: 4px;
}
.property-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
}
.property-price {
  font-size: 18px;
  font-weight: 700;
  color: #c1121f;
}
.btn-small {
  font-size: 12px;
  font-weight: 600;
  color: #111111;
  border: 1.5px solid #111111;
  padding: 6px 18px;
  border-radius: 5px;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}
.btn-small:hover {
  background: #111111;
  color: #ffffff;
}
/* TEAM  */
.team {
  padding: 100px 0;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}
.team-card {
  text-align: center;
  background: #ffffff;
  border-radius: 14px;
  padding: 32px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition:
  transform 0.3s ease,
  box-shadow 0.3s ease;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}
.team-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid #f0f0f0;
}
.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-card h3 {
  font-size: 17px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 4px;
}
.team-role {
  font-size: 13px;
  color: #c1121f;
  margin-bottom: 16px;
}
/*  BLOG  */
.blog {
  padding: 100px 0;
  background: #f9f9f9;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}
.blog-img {
  position: relative;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.blog-date {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: #c1121f;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 4px;
}
.blog-content {
  padding: 24px;
}
.blog-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-content p {
  font-size: 14px;
  color: #555555;
  margin-bottom: 18px;
  line-height: 1.7;
}
/* GALLERY  */
.gallery {
  padding: 100px 0;
  background: #111111;
}
.section-subtitle.light {
  color: #c1121f;
}
.section-title.light {
  color: #ffffff;
}

.gallery-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

.gallery-tab {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.25);
  padding: 10px 28px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gallery-tab:hover {
  border-color: rgba(255, 255, 255, 0.5);
}

.gallery-tab.active {
  background: #c1121f;
  border-color: #c1121f;
  color: #ffffff;
}

.gallery-panel {
  display: none;
}

.gallery-panel.active {
  display: block;
}

.gallery-videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay svg {
  font-size: 32px;
  color: #ffffff;
}

.gallery-item video {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* CONTACT  */
.contact {
  padding: 100px 0;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}
.contact-info h2 {
  font-size: 38px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 18px;
  line-height: 1.2;
}
.contact-desc {
  font-size: 15px;
  color: #666666;
  margin-bottom: 36px;
  line-height: 1.8;
}
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-item svg {
  width: 44px;
  height: 44px;
  background: rgba(193, 18, 31, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c1121f;
  font-size: 16px;
  flex-shrink: 0;
}
.contact-item strong {
  font-size: 15px;
  color: #111111;
  display: block;
  margin-bottom: 2px;
}
.contact-item p {
  font-size: 14px;
  color: #555555;
}
.contact-form-wrap {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  padding: 40px;
}
.contact-form h3 {
  font-size: 22px;
  font-weight: 600;
  color: #111111;
  margin-bottom: 24px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
  color: #333333;
  background: #ffffff;
  margin-bottom: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #c1121f;
}
.contact-form textarea {
  resize: vertical;
}
.btn-primary.full-width {
  width: 100%;
  text-align: center;
  font-size: 15px;
  padding: 14px;
}
/* FOOTER  */
.footer {
  background: #111111;
  padding: 70px 0 0;
  color: #bbbbbb;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo {
  display: inline-block;
  margin-bottom: 16px;
  margin-top: -28px;
}
.footer-logo img {
  width: 120px;
  height: 56px;
  border-radius: 4px;
}
.footer-col p {
  font-size: 14px;
  color: #a0a0a0;
  line-height: 1.7;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbbbbb;
  font-size: 14px;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}
.footer-social a:hover {
  background: #c1121f;
  border-color: #c1121f;
  color: #ffffff;
}
.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul a {
  font-size: 14px;
  color: #a0a0a0;
  transition: color 0.3s ease;
}
.footer-col ul a:hover {
  color: #c1121f;
}
.newsletter-form {
  display: flex;
  margin-top: 16px;
}
.newsletter-form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px 0 0 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-family: inherit;
  font-size: 13px;
  outline: none;
}
.newsletter-form input::placeholder {
  color: #a0a0a0;
}
.newsletter-form button {
  padding: 12px 18px;
  background: #c1121f;
  border: none;
  border-radius: 0 6px 6px 0;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.3s ease;
}
.newsletter-form button:hover {
  background: #a00e1a;
}
.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #a0a0a0;
}
/* RESPONSIVE  */
/* Tablet */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-left h1 {
    font-size: 40px;
  }
  .hero-carousel img {
    height: 380px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image img {
    height: 360px;
  }
  .properties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-title {
    font-size: 32px;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 10px 20px;
    gap: 0;
    border-top: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-menu li {
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
  }
  .btn-cta {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .hero {
    padding: 50px 0 40px;
    min-height: auto;
  }
  .hero-inner{
    gap:18px;
  }
  .hero-left h1 {
    font-size: 32px;
  }
  .hero-desc {
    font-size: 14px;
  }
  .hero-buttons {
    flex-direction: row;
    margin-bottom: 32px;
  }
  .hero-buttons a {
    text-align: center;
  }
  .hero-stats {
    display: none;
  }
  .hero-carousel img {
    height: 280px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .about,
  .properties,
  .team,
  .blog,
  .gallery,
  .contact {
    padding: 60px 0;
  }
  .section-title {
    font-size: 28px;
    margin-bottom: 36px;
  }
  .about-content h2,
  .contact-info h2 {
    font-size: 28px;
  }
  .properties-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-videos-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item img {
    height: 180px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .top-bar {
    display: none;
  }
  .contact-form-wrap {
    padding: 28px 20px;
  }
}
@media (max-width: 480px) {
  .hero-left h1 {
    font-size: 28px;
  }
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-videos-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item img {
    height: 220px;
  }
}
