/* ==========================================================================
   CILENTO REAL ESTATE - HOME PAGE (index.html)
   Styles specific to the homepage only
   ========================================================================== */

/* ==========================================================================
   HERO SECTION (Homepage)
   ========================================================================== */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background:
      linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
      url(https://pub-7161d024d86c4d04b3a2c7f8d3fce4ca.r2.dev/images/cilento_home.png) center/cover no-repeat;
}

.hero-content {
  z-index: 2;
  padding: 100px 20px 20px;
  color: white;
  max-width: 850px;
  padding: 0 2rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--text-primary);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

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

.hero-video {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, var(--secondary-dark), var(--accent-dark));
  opacity: 0.3;
}

/* ==========================================================================
   SECTIONS (Homepage specific backgrounds)
   ========================================================================== */

.metodologia,
.featured-properties,
.testimonials,
.bio {
  padding: 1.5rem 0 4rem;
}

/* Alternanza colori tra sezioni - specifica per ogni sezione */
section.metodologia {
  background: var(--secondary-dark);
}

/* Bio About Section - "Chi sono" con foto */
section.bio-about {
  background: var(--primary-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--accent-gold);
}


/* Bio Metodo Section - "Il mio metodo" con video e background */
section.bio-metodo {
  padding: 80px 0;
  position: relative;
  border-bottom: #f39c12 1px solid;
  overflow: hidden;
}


section.testimonials {
  background: var(--secondary-dark);
}

.featured-properties {
  background: var(--primary-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  margin-top: 3rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-in .section-header {
  opacity: 1;
  transform: translateY(0);
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-gray);
}


/* ==========================================================================
   METODOLOGIA GRID (Homepage)
   ========================================================================== */

.metodologia-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: var(--space-3xl);
}

.metodo-card {
  text-align: center;
  padding: 20px 0;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

/* Animazione card con delay casuali */
.metodologia.animate-in .metodo-card:nth-child(1) {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.1s;
}

.metodologia.animate-in .metodo-card:nth-child(2) {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.25s;
}

.metodologia.animate-in .metodo-card:nth-child(3) {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.15s;
}

.metodologia.animate-in .metodo-card:nth-child(4) {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0.3s;
}

.metodo-card .card-icon {
  width: 100px;
  height: auto;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.metodo-card .card-icon svg {
  width: 80px;
  height: 80px;
  color: var(--accent-gold);
}

.metodo-card .card-icon img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.metodo-card:hover .card-icon {
  transform: scale(1.1);
}

.metodo-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-primary);
  font-weight: 600;
}

.metodo-card p {
  color: var(--text-muted);
  line-height: 1.6;
}

.metodologia-action {
  text-align: center;
  margin-top: var(--space-2xl);
}

/* ==========================================================================
   SEZIONE GARANZIA
   ========================================================================== */

.garanzia-section {
  background: #338700;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.garanzia-content {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.garanzia-section.animate-in .garanzia-content {
  opacity: 1;
  transform: scale(1);
}

.garanzia-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.garanzia-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.garanzia-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.garanzia-text p {
  font-size: 1rem;
  color: white;
  margin-bottom: 1rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  line-height: 1.4;
}

.garanzia-highlight {
  font-weight: 700;
  font-size: 2.2rem !important;
  color: #fff700;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
  margin-top: 1.5rem !important;
}

/* ==========================================================================
   BIO SECTIONS (Homepage)
   ========================================================================== */

.bio-content {
  padding: 80px 20px;
  color: var(--text-primary);
  text-align: center;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3.5rem;
}

.bio-content img {
  width: 450px;
  height: auto;
  object-fit: cover;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(212, 175, 55, 0.3);
  margin: 50px 20px 50px 0;
  border-radius: 30px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, box-shadow 0.4s ease;
}

/* Animazione attivata allo scroll */
.bio-about.animate-in .bio-content img {
  opacity: 1;
  transform: scale(1);
}

.bio-content img:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 0 2px var(--accent-gold);
}

.bio-video {
  position: relative;
  width: 450px;
  flex-shrink: 0;
  cursor: pointer;
}

.bio-video .video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.bio-video .video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.bio-video:hover .video-thumbnail img {
  transform: scale(1.05);
}

.bio-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Video locale HTML5 */
.bio-video-local {
  height: 100%;
  width: auto;
  max-width: 400px;
  flex-shrink: 0;
  aspect-ratio: 9/16;
  opacity: 0;
  transform: scale(0.9) rotate(-3deg);
  transition: opacity 0.9s ease-out 0.2s, transform 0.9s ease-out 0.2s;
  position: relative;
  cursor: pointer;
}

.bio-metodo.animate-in .bio-video-local {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* Icona Play sopra il video - overlay cliccabile */
.video-play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-play-overlay::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(212, 175, 55, 0.9);
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

.video-play-overlay::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 0 18px 30px;
  border-color: transparent transparent transparent #fff;
  margin-left: 6px;
  z-index: 1;
}

.video-play-overlay:hover::before {
  background: rgba(212, 175, 55, 1);
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.7);
}

.video-play-overlay:hover::after {
  margin-left: 8px;
}

/* Nascondi overlay quando il video è in play */
.bio-video-local.playing .video-play-overlay,
.video-review-card.playing .video-play-overlay {
  opacity: 0 !important;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.bio-video-local video {
  height: 100%;
  width: auto;
  border-radius: 8px;
    max-width: 400px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.bio-content p {
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.bio-content h2 {
  margin-bottom: 3rem;
}

.bio-text {
  flex: 1;
  text-align: left;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s ease-out 0.3s, transform 0.8s ease-out 0.3s;
}

/* Animazione attivata allo scroll */
.bio-about.animate-in .bio-text,
.bio-metodo.animate-in .bio-text {
  opacity: 1;
  transform: translateX(0);
}

.bio-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.bio-about .bio-text h2 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.bio-text p {
  margin-bottom: 1.2rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.bio-text p:last-child {
  margin-bottom: 0;
}

.bio-text strong {
  color: var(--accent-gold);
  font-weight: 700;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.bio-text strong:hover {
  color: var(--accent-gold-light);
  transform: translateY(-2px);
}

/* Blockquote migliorato */
.bio-text blockquote {
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 4px solid var(--accent-gold);
  font-style: italic;
  color: var(--text-secondary);
  position: relative;
}

.bio-text blockquote p {
  color: var(--accent-gold);
  font-size: 1.15rem;
  font-weight: 500;
}

/* Bio Metodo - Container settings */
.bio-metodo .container {
  max-width: 1200px;
  margin: 0 auto;
  background: transparent;
  position: relative;
  z-index: 1;
}

/* Border decorativo */
.bio-metodo {
  border-bottom: 1px solid var(--accent-gold);
}


.metodo-title {
  color: var(--text-primary);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-in .metodo-title {
  opacity: 1;
  transform: translateY(0);
}

.metodo-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.7s ease-out 0.2s, transform 0.7s ease-out 0.2s;
}

.animate-in .metodo-subtitle {
  opacity: 1;
  transform: translateY(0);
}

.metodo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.metodo-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(185, 150, 34, 0.2);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, border-color 0.3s ease, box-shadow 0.3s ease;
}

.metodo-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 10px 40px rgba(185, 150, 34, 0.15);
}

.animate-in .metodo-card:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.animate-in .metodo-card:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.animate-in .metodo-card:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.animate-in .metodo-card:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }

.metodo-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-gold);
  opacity: 0.3;
  margin-bottom: 1rem;
  line-height: 1;
}

.metodo-card h3 {
  color: var(--text-primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent-gold);
  display: inline-block;
}

.metodo-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.metodo-card p:last-child {
  margin-bottom: 0;
}

.metodo-card strong {
  color: var(--accent-gold);
}

.metodo-cta {
  text-align: center;
  padding: 1.25rem 1.5rem;
  background: rgba(185, 150, 34, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(185, 150, 34, 0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out 0.5s, transform 0.6s ease-out 0.5s;
  max-width: 700px;
  margin: 0 auto;
}

.animate-in .metodo-cta {
  opacity: 1;
  transform: translateY(0);
}

.metodo-cta p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.metodo-cta strong {
  color: var(--accent-gold);
}

@media (max-width: 768px) {
  .metodo-grid {
    grid-template-columns: 1fr;
  }

  .metodo-title {
    font-size: 2rem;
  }
}

/* ==========================================================================
   PROPERTIES GRID (Homepage)
   ========================================================================== */

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  padding: 2rem 0;
}

.property-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

.property-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.property-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border-color: rgba(212, 175, 55, 0.5);
}

.property-card:hover::before {
  opacity: 1;
}

.property-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

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

.property-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--accent-gold);
  color: var(--primary-dark);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
  backdrop-filter: blur(10px);
  z-index: 3;
}

.property-badge.in-evidenza {
  background: #e74c3c;
  color: white;
}

.property-badge.in-vendita {
  background: #27ae60;
  color: white;
}

.property-badge.prezzo-top {
  background: #f39c12;
  color: white;
}

.property-price-overlay {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(30, 32, 30, 0.9) 100%);
  color: var(--accent-gold);
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  z-index: 3;
}

.property-content {
  padding: 25px;
  position: relative;
  z-index: 2;
}

.property-location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  color: var(--text-gray);
  font-size: 0.85rem;
}

.property-content h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.3;
}

.property-features {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.property-features span {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-gray);
  font-size: 0.85rem;
  font-weight: 500;
}

.property-features svg {
  width: 14px;
  height: 14px;
  color: var(--accent-gold);
}

.property-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.stars {
  color: #ffd700;
  font-size: 0.9rem;
}

.rating-text {
  color: var(--text-gray);
  font-size: 0.85rem;
  font-weight: 500;
}

.property-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: auto;
}

.price-main {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.price-per-sqm {
  font-size: 0.85rem;
  color: var(--text-gray);
  font-weight: 500;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 24px 0;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--accent-gold);
  transform: scale(1.2);
}

.carousel-dot:hover {
  background: var(--text-gray);
}

.properties-action {
  text-align: center;
  margin-top: 1rem;
}

/* ==========================================================================
   TESTIMONIALS / VIDEO REVIEWS (Homepage)
   ========================================================================== */

.video-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.video-review-card {
  background: var(--secondary-dark);
  width: 70%;
  border-radius: 50px;
  border: 1px solid var(--secondary-dark);
  transition: all 0.3s ease, opacity 0.8s ease-out, transform 0.8s ease-out;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(50px) rotate(-2deg);
}

/* Animazione video con delay casuali e rotazioni */
.testimonials.animate-in .video-review-card:nth-child(1) {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
  transition-delay: 0.2s;
}

.testimonials.animate-in .video-review-card:nth-child(2) {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
  transition-delay: 0.45s;
}

.testimonials.animate-in .video-review-card:nth-child(3) {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
  transition-delay: 0.15s;
}

.video-review-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}

.video-review-card:hover {
  border-color: var(--accent-gold);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16; /* Formato verticale (Instagram/TikTok) */
  overflow: hidden;
  background: #000;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-review-card:hover .video-thumbnail img {
  transform: scale(1.05);
}

.video-review-card iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16; /* Mantiene formato verticale */
  border: none;
}

video::-webkit-media-controls {
  opacity: 0;
  transition: opacity 0.3s;
}

video:hover::-webkit-media-controls {
  opacity: 1;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 768px) {

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

  .garanzia-section {
    padding: 60px 0;
  }

  .garanzia-title {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }

  .garanzia-text p {
    font-size: 1.4rem;
  }

  .garanzia-highlight {
    font-size: 1.6rem !important;
  }

  .bio-content {
    flex-direction: column;
    padding: 40px 20px;
  }

  .bio-content img {
    width: 300px;
    height: auto;
    object-fit: cover;
    margin: 50px 20px 50px 0;
  }

  .bio-video,
  .bio-video-local {
    width: 100%;
    max-width: 450px;
  }

  .properties-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem;
  }

  .video-reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .video-review-card {
    max-width: 100%;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .metodologia-grid {
    grid-template-columns: 1fr;
  }

  .metodo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 0;
  }

  .metodo-card .card-icon {
    margin: 0 0 0.75rem 0;
    width: 80px;
    height: 80px;
  }

  .metodo-card .card-icon img {
    width: 80px;
    height: 80px;
  }

  .metodo-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .metodo-card p {
    font-size: 0.95rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-video {
    display: none;
  }

  .hero-content {
    max-width: 100%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .properties-carousel {
    padding: 10px 0;
  }

  .property-card {
    flex: 0 0 100%;
    max-width: 350px;
  }

  .carousel-dots {
    margin: 20px 0;
  }

  .carousel-dot {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }

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

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

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

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

@media (min-width: 768px) {
  .properties-carousel-container {
    max-width: 800px;
  }
}
