/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a {
	color:black;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.available-units-btn {
  font-size: 0.875rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.available-units-btn:hover {
  color: #6b7280;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-icons {
  display: flex;
  gap: 0.5rem;
}

.icon-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: #f3f4f6;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.icon-btn:hover {
  background: #e5e7eb;
}

.icon {
  width: 1rem;
  height: 1rem;
}

.phone-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s;
}

.phone-link:hover {
  color: #6b7280;
}

.mobile-menu-btn {
  width: 2.25rem;
  height: 2.25rem;
  background: #1a1a1a;
  color: white;
  border: none;
  border-radius: 0.375rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}

.mobile-menu-btn:hover {
  background: #4b5563;
}

/* Buttons */
.btn {
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: #f4e5c3;
  color: #1a1a1a;
}

.btn-primary:hover {
  background: #e8d5a5;
}

.btn-outline {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-dark {
  background: #1a1a1a;
  color: white;
}

.btn-dark:hover {
  background: #4b5563;
}

.btn-large {
  padding: 1.5rem 2rem;
  font-size: 1.125rem;
}

.btn-full {
  width: 100%;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s;
}

.mobile-menu-content {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 300px;
  max-width: 90vw;
  background: white;
  padding: 1.5rem;
  animation: slideInRight 0.3s;
  overflow-y: auto;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.mobile-menu-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu-link {
  font-size: 1.125rem;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f3f4f6;
  transition: color 0.3s;
}

.mobile-menu-link:hover {
  color: #6b7280;
}

.mobile-menu-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

.mobile-menu-phone {
  font-size: 1.125rem;
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
  color: #1a1a1a;
  text-decoration: none;
}

/* Dialog */
.dialog {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: none;
}

.dialog.active {
  display: block;
}

.dialog-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s;
}

.dialog-content {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  animation: scaleIn 0.3s;
}

.dialog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.dialog-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.dialog-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.dialog-close:hover {
  opacity: 1;
}

.dialog-description {
  color: #6b7280;
  margin-bottom: 1.5rem;
}

/* Forms */
.input,
.textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.input:focus,
.textarea:focus {
  outline: none;
  border-color: #1a1a1a;
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
}

.textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

.contact-form,
.partnership-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.phone-input {
  display: flex;
  gap: 0.5rem;
}

.phone-select {
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  background: white;
  cursor: pointer;
}

.phone-input .input {
  flex: 1;
}

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-wrapper input[type="checkbox"] {
  margin-top: 0.25rem;
  cursor: pointer;
}

.checkbox-wrapper label {
  font-size: 0.875rem;
  color: #6b7280;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #374151 0%, #4b5563 50%, #1f2937 100%);
  padding: 5rem 0;
  min-height: 48rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(20%);
}

.hero-chart {
    position: absolute;
    bottom: 0;
    right: 0;
    top: -6%;
    pointer-events: none;
}

.chart-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom left;
  opacity: 0.75;
}

.hero-grid {
	position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.9fr 1fr;
    gap: 0rem;
    align-items: center;
}

.hero-content {
  color: white;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #fef3c7;
  font-weight: 500;
}

.hero-title {
	font-size: 3vw;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-features {
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-features p {
  font-size: 1.125rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-buttons .btn {
  padding: 1.25rem 2rem;
  font-size: 1rem;
}

.hero-image {
  position: relative;
}

.hero-badge {
    position: relative;
top: 22rem;
    right: -4rem;
  background: #f4e5c3;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 20rem;
  z-index: 10;
    text-align: center;
}

.badge-text {
    font-size: 0.875rem;
    color: #4b5563;
    font-weight: bold;
    margin-bottom: 0.5rem;
    text-align: center;
}

.badge-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
}

.representative-img-top {
	max-width: 34rem;
    margin: 0 auto;
    display: block;
    top: -16vh;
    position: relative;
}

.representative-img {
	max-width: 42vh;
    margin: 0 auto;
    display: block;
    top: -16vh;
    position: relative;
}

.chat-btn {
  position: absolute;
  bottom: -14rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background: #f4e5c3;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s;
}

.chat-btn:hover {
  transform: scale(1.1);
}

.chat-icon {
  font-size: 1.5rem;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-white {
  background: white;
}

.section-gray {
  background: #f9fafb;
}

.section-dark {
  background: #1f2937;
  color: white;
  padding: 1rem 0;
}

.section-dark-alt {
  background: #1a1a1a;
  color: white;
  padding: 1rem 0 3rem;
  margin: 0 0 5rem 0;
}

.section-header {
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.125rem;
  color: #6b7280;
}

.section-dark .section-description,
.section-dark-alt .section-description {
  color: #d1d5db;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.stat-card {
  padding: 0;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.stat-divider {
  width: 100%;
  height: 4px;
  background: #e5e7eb;
  margin-bottom: 1rem;
}

.stat-description {
  color: #6b7280;
}

/* Advantages */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.advantage-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.advantage-icon {
  font-size: 2.25rem;
  flex-shrink: 0;
}

.advantage-text {
  font-weight: 500;
}

/* Properties */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
}

.property-card {
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  margin-bottom: 1rem;
}

.property-image {
  position: relative;
  height: 20rem;
  overflow: hidden;
}
.logo a{
	text-decoration: none;
    color: black;
}
.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.property-card:hover .property-image img {
  transform: scale(1.1);
}

.property-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: white;
}

.property-name {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.property-size {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.property-price {
  font-size: 1.25rem;
  color: #f4e5c3;
}

/* CTA Section */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-description {
  color: #d1d5db;
  margin-bottom: 2rem;
}

.cta-image {
  position: relative;
}

.cta-badge {
  position: absolute;
  top: 15rem;
  right: 19rem;
  background: white;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 20rem;
  z-index: 10;
  font-size: 0.875rem;
  color: #4b5563;
}

/* Opportunities */
.opportunities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 1.5rem;
}

.opportunity-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.check-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #169e4f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.check-icon svg {
  width: 1rem;
  height: 1rem;
  color: white;
}

.opportunity-item p {
  color: #d1d5db;
}

/* Team Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.feature-item {
  text-align: center;
}

.feature-number {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: #f4e5c3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.feature-title {
  font-weight: 700;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.team-card {
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-img {
  width: 100%;
  height: 24rem;
  object-fit: cover;
}

.team-info {
    padding: 1.5rem;
    margin-top: -10rem;
    z-index: 10000000;
    position: relative;
    background-color: rgba(0, 0, 0, 0.5);
    min-height: 15rem;
}

.team-info h3, .team-info p{
	color:white;

}

.team-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.team-role {
  color: #6b7280;
}

/* Ticker */
.ticker {
  background: #f4e5c3;
  padding: 1rem 0;
  overflow: hidden;
}

.ticker-content {
  display: flex;
  white-space: nowrap;
}

.ticker-items {
  display: flex;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1a1a;
  animation: scroll 30s linear infinite;
}

.ticker-items span {
  display: inline-block;
  text-transform: uppercase;
}

/* Partnership Section */
.partnership-section {
  position: relative;
  background: linear-gradient(135deg, #374151 0%, #4b5563 50%, #1f2937 100%);
  color: white;
  overflow: hidden;
}

.partnership-chart {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 30%;
  pointer-events: none;
}

.partnership-chart .chart-img {
  object-position: right bottom;
  opacity: 0.7;
}

.partnership-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.partnership-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.partnership-description {
  color: #d1d5db;
  margin-bottom: 2rem;
}

.partnership-form .input,
.partnership-form .phone-select {
  background: white;
  color: #1a1a1a;
}

.partnership-form .checkbox-wrapper label {
  color: #d1d5db;
}

/* Footer */
.footer {
  background: #000000;
  color: white;
  padding: 3rem 0;
}

.footer-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: #1a1a1a;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.contact-title {
  color: white;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-link {
  display: inline-block;
  font-size: 1.125rem;
  color: white;
  text-decoration: none;
  border: 2px solid white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  transition: all 0.3s;
}

.contact-link:hover {
  background: white;
  color: black;
}

.social-buttons {
  display: flex;
  gap: 1rem;
}

.social-btn {
  width: 3rem;
  height: 3rem;
  background: none;
  border: none;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s;
}

.social-btn:hover {
  transform: scale(1.1);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  font-size: 0.875rem;
  color: #9ca3af;
  gap: 1rem;
}

.footer-link {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-link:hover {
  color: white;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #169e4f;
  color: white;
  border: none;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  z-index: 100;
  transition: all 0.3s;
}

.back-to-top:hover {
  background: #127a3d;
  transform: scale(1.1);
}

.back-to-top.visible {
  display: flex;
}

.back-to-top svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.7s, transform 0.7s;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
    max-height: 40vh;
	max-width: 85vw;
}


/* Responsive Design */
@media (max-width: 1024px) {
  .hero-grid,
  .cta-grid,
  .partnership-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 3rem;
  }

  .properties-grid,
  .opportunities-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .available-units-btn,
  .header-icons,
  .phone-link {
    display: none;
  }
  .section-dark-bottom {
	overflow:hidden;
  }	
	
  .mobile-menu-btn {
    display: flex;
  }
  .representative-img {
	  left: 14vh;
	  top:4vh;
}
 .cta-badge {
	right:2rem!important;
	margin-bottom: 2rem;
 }
  .hero {
    padding-top: 4rem 0;
	overflow:hidden;
	right:0rem;
  }
.hero-buttons .btn {
	width: 22vh!important;
}
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-badge {
        position: relative;
        margin-bottom: 0rem;
        right: 0 !important;
        margin-top: -10rem;
  }

  .section-title {
    font-size: 1.875rem;
  }

  .cta-title,
  .partnership-title {
    font-size: 1.4rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .btn-large {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .properties-grid {
    grid-template-columns: 1fr;
  }

  .property-card {
    min-width: unset;
  }
}
/* Property Hero */
.property-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #374151 0%, #4b5563 50%, #1f2937 100%);
  overflow: hidden;
  padding-top: 5rem;
}

.property-hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}

.property-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  padding: 5rem 0;
  top: -6rem;
}
.propertytitle, .propertybutton {
	margin:0 auto;
	text-align:center;
	display:block;
}
.property-hero-subtitle {
  font-size: 0.875rem;
  margin-bottom: 1rem;
  color: #fef3c7;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.property-hero-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 2rem;
  line-height: 1;
}

@media (min-width: 768px) {
  .property-hero-title {
    font-size: 10rem;
	text-transform: uppercase;
  }
}

.property-hero-income {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.property-hero-price {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #f4e5c3;
}

.property-hero-size {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.scroll-down-btn {
  margin-top: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

.chat-btn-fixed {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background: #f4e5c3;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s;
  z-index: 20;
}

.chat-btn-fixed:hover {
  transform: scale(1.1);
}

.chat-icon {
  font-size: 1.5rem;
}

.property-description {
  max-width: 56rem;
  margin: 0 auto;
}

.description-text {
  text-align: center;
  color: #4b5563;
  line-height: 1.8;
}

.description-text p {
  margin-bottom: 1rem;
}

/* Gallery with Carousels */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.samcutoff {
	max-height:20rem;
	overflow:hidden;
}
.carousel-wrapper {
  height: 24rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-track {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s;
}

.carousel-image.active {
  opacity: 1;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
  border: none;
  padding: 0.75rem;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 10;
}

.carousel:hover .carousel-btn {
  opacity: 1;
}

.carousel-prev {
  left: 1rem;
}

.carousel-next {
  right: 1rem;
}

.carousel-btn:hover {
  background: white;
}

.carousel-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  width: 2rem;
  background: white;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Investment Grid */
.investment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.investment-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.investment-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.investment-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.investment-text {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
}

/* Amenities */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem;
}

.amenity-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.amenity-name {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Finishing */
.finishing-image {
  position: relative;
  height: 24rem;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-top: 3rem;
}

.finishing-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Condos */
.condos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.condo-card {
  background: #374151;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  padding: 1.5rem;
}

.floor-plan-wrapper {
  background: white;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

.floor-plan-img {
  width: 100%;
  height: auto;
  display: block;
}

.condo-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.condo-detail {
  color: #d1d5db;
  margin-bottom: 0.5rem;
}

/* CTA */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .cta-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.cta-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-description {
  color: #d1d5db;
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.cta-image {
  position: relative;
}

.cta-badge {
  position: absolute;
  top: 15rem;
  left: 2rem;
  background: white;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 20rem;
  z-index: 10;
  font-size: 0.875rem;
  color: #4b5563;
}

.representative-img {
  border-radius: 0.5rem;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  display: block;
}

/* Advantages */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.advantage-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.check-icon {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #1a1a1a;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.25rem;
  font-weight: 700;
  font-size: 0.875rem;
}

.advantage-item p {
  font-weight: 500;
}

/* Payment */
.payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.payment-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.payment-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.payment-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.payment-list {
  list-style: none;
  padding: 0;
  font-size: 0.875rem;
  color: #6b7280;
}

.payment-list li {
  margin-bottom: 0.5rem;
}

.payment-text {
  font-size: 0.875rem;
  color: #6b7280;
}

.partnership-form-wrapper {
  max-width: 40rem;
  margin: 0 auto;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-btn {
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer;
  padding: 8px 16px;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 250px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-radius: 8px;
  z-index: 1000;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background: #f9f9f9;
}

.dropdown-item-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 4px;
  text-transform:uppercase;
}

.dropdown-item-price {
  font-size: 12px;
  color: #666;
}