* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Contenedor principal con background */
.main-container {
    width: 100vw;
    min-height: 100vh;
    background: none;
    background-attachment: fixed;
    position: relative;
}

/* Navbar fijo */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.1);
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: #f0f2ff;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links li a:hover {
    color: #fbca0a;
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #fbca0a;
    transition: width 0.3s ease;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Menú hamburguesa para móviles */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Contenido principal */
.main-content {
    background-color: none;

}

/* Hero Section */
.hero {
    height: 100vh ;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

  .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: -2;
        }


.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-family: 'Archivo';
    font-weight: 700;
    font-size: 3.5rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Botones */
.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
     background: linear-gradient(45deg, #fbca0a, #f57f17, #fbca0a);
    background-size: 200% 200%;
    color: #3e3e3e;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(251, 202, 10, 0.4);
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-primary:hover {
  transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 202, 10, 0.6);
    animation-duration: 1s;
}

/* Botón Secundario - Versión elegante */
.btn-secondary {
    background: transparent;
    color: #fbca0a;
    border: 2px solid #fbca0a;
}

.btn-secondary:hover {
    background: #fbca0a;
    color: #3e3e3e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(251, 202, 10, 0.3);
}

/* Container genérico */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Sección de búsqueda */
.search-section {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.search-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}

.search-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.search-input {
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    min-width: 150px;
    flex: 1;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #667eea;
}

.btn-search {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Propiedades destacadas */
.featured-properties {
    background: #f8f9fa;
    padding: 80px 0;
}

.featured-properties h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 60px;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.property-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.property-image {
    height: 250px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    position: relative;
}

.property-image::after {
    content: '📷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    opacity: 0.7;
}

.property-info {
    padding: 25px;
}

.property-info h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 5px;
}

.location {
    color: #666;
    margin-bottom: 15px;
}

.property-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.property-features span {
    background: #f0f2ff;
    color: #667eea;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Footer */
.footer {
 background: #333;
  color: white;
  padding: 40px 0 20px;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #fbca0a;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
  border-top: 1px solid #555;
  color: #ccc;
}


/*CARD PROPIEDADES*/

/* Container genérico */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Propiedades destacadas */
.featured-properties {
    background: #f8f9fa;
    padding: 80px 0;
}

.featured-properties h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 60px;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.property-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.property-image {
    height: 250px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    position: relative;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-image::after {
    content: '📷';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    opacity: 0.7;
}

.property-image.has-image::after {
    display: none;
}

.property-info {
    padding: 25px;
}

.property-info h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 10px;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 5px;
}

.location {
    color: #666;
    margin-bottom: 15px;
}

.property-description {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.property-features {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.property-features span {
    background: #f0f2ff;
    color: #667eea;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Loading y estados */
.loading {
    text-align: center;
    padding: 40px;
    color: #666;
    font-size: 1.2rem;
}

.loading::before {
    content: '⏳';
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
}

.no-properties {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.no-properties::before {
    content: '🏠';
    display: block;
    font-size: 4rem;
    margin-bottom: 20px;
}

.error-message {
    text-align: center;
    padding: 40px;
    color: #d32f2f;
    background: #ffebee;
    border-radius: 10px;
    margin: 20px;
}





    /* ===============================
   SECCIÓN SOBRE NOSOTROS
   =============================== */

.about-section {
    padding: 80px 0;
    background: white;
}

.about-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.about-header h2 {
    font-family: 'Archivo', serif;
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.about-header .subtitle {
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-header .description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    text-align: left;
    margin-bottom: 0;
}

.about-header .description strong {
    color: #333;
    font-weight: 600;
}

.about-header .highlight {
    color: #fbca0a;
    font-weight: 600;
}

/* Cards de estadísticas */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    aspect-ratio: 1;

    /* background: linear-gradient(135deg, rgba(251, 202, 10, 0.1), rgba(102, 126, 234, 0.1)); */
    background-size: 200% 200%;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}


.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #fbca0a, #667eea);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.stat-card:hover::before {
    opacity: 0.1;
}

.stat-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(251, 202, 10, 0.2);
    background-position: 100% 100%;
}

.stat-card.experiencia {
background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('assets/loteo1.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.stat-card.propiedades {
background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('assets/loteo2.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}

.stat-card.compromiso {
background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('assets/loteo3.jpg');
background-size: cover;
background-position: center;
background-repeat: no-repeat;
}


.stat-text {
    font-family: 'Archivo', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.stat-card:hover .stat-text {
    color: #2c3e50;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-header h2 {
        font-size: 2.2rem;
    }
    
    .about-header .description {
        font-size: 1rem;
        text-align: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    
    .stat-card {
        min-height: 150px;
        padding: 20px 15px;
    }
    
    .stat-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .about-header h2 {
        font-size: 1.8rem;
    }
    
    .about-header .subtitle {
        font-size: 0.9rem;
    }
    
    .about-header .description {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .stat-text {
        font-size: 1rem;
    }
}

/* ===============================
   SECCIÓN SERVICIOS
   =============================== */

.services-section {
    padding: 80px 0;
   background: #909085;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-family: 'Archivo', serif;
    font-size: 2.8rem;
    color: white;
    font-weight: 700;
}

/* Grid de servicios */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    height: 300px;
    aspect-ratio: 1;
    background: #F1F1E4;
    border: 5px solid #fbca0a; /* Borde amarillo */
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 20px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 202, 10, 0.1), rgba(102, 126, 234, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);

}

.service-card h3 {
    font-family: 'Archivo', serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.service-card:hover h3 {
    color: #2c3e50;
    transform: translateY(-3px);
}

.service-card:hover p {
    color: #444;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-header h2 {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        min-height: 250px;
        padding: 30px 20px;
        aspect-ratio: auto;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .services-header h2 {
        font-size: 1.8rem;
    }
    
    .services-grid {
        gap: 15px;
    }
    
    .service-card {
        min-height: 220px;
        padding: 25px 15px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}


/* Estilos para la sección de propiedades destacadas con imágenes */
.featured-properties {
  padding: 80px 0;
  background: #f8f9fa;
}

.featured-properties h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #333;
  margin-bottom: 50px;
  font-family: 'Archivo', serif;
}

.featured-images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1400px; /* Más ancho */
  margin: 0 auto;
  padding: 0 20px;
}

.featured-image {
  position: relative;
  height: 350px; /* Más alto */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.featured-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.featured-image:hover img {
  transform: scale(1.05);
}

/* Overlay que aparece al hacer hover */
.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 30px 20px 20px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  text-align: center;
}

.featured-image:hover .image-overlay {
  transform: translateY(0);
}

.image-overlay span {
  font-weight: 600;
  font-size: 1rem;
}

/* Modal para imagen en grande */
.image-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.3s ease;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}

.modal-content {
  position: relative;
  background: white;
  border-radius: 12px;
  max-width: 90vw;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUpModal 0.3s ease;
  z-index: 10001;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
}

.modal-header h3 {
  margin: 0;
  color: #333;
  font-size: 1.3rem;
  font-family: 'Archivo', serif;
}

.close-modal {
  background: none;
  border: none;
  font-size: 2rem;
  color: #666;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.close-modal:hover {
  background: #e9ecef;
  color: #333;
}

.modal-image-container {
  position: relative;
  max-width: 1200px;
  max-height: 80vh;
  overflow: hidden;
}

.modal-image-container img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

/* Animaciones */
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUpModal {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive para tablets */
@media (max-width: 768px) {
  .featured-images-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 600px; /* Más ancho en tablet */
  }
  
  .featured-image {
    height: 300px;
  }
  
  .featured-properties {
    padding: 60px 0;
  }
  
  .featured-properties h2 {
    margin-bottom: 40px;
  }
  
  .modal-content {
    max-width: 95vw;
    max-height: 95vh;
  }
  
  .modal-header {
    padding: 15px 20px;
  }
  
  .modal-header h3 {
    font-size: 1.1rem;
  }
}

/* Responsive para móviles */
@media (max-width: 480px) {
  .featured-image {
    height: 250px;
  }
  
  .featured-properties {
    padding: 40px 0;
  }
  
  .featured-properties h2 {
    margin-bottom: 30px;
  }
  
  .featured-images-grid {
    padding: 0 15px;
    max-width: 400px; /* Más ancho en móvil */
  }
  
  .modal-content {
    margin: 20px;
  }
  
  .close-modal {
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
  }
}

/* ===============================
   SECCIÓN CALL TO ACTION
   =============================== */

.cta-section {
    height: 500px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('assets/loteo4.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(251, 202, 10, 0.1), rgba(102, 126, 234, 0.1));
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-section h2 {
    font-family: 'Archivo', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 25px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button {
    display: flex;
    justify-content: center;
}

.btn-cta {
    background: linear-gradient(45deg, #fbca0a, #f57f17, #fbca0a);
    background-size: 200% 200%;
    color: #333;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 20px rgba(251, 202, 10, 0.4);
    transition: all 0.3s ease;
    animation: gradientShift 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 202, 10, 0.6);
    animation-duration: 1s;
    color: #333;
}

.btn-cta:active {
    transform: translateY(-1px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-section h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .cta-section p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .btn-cta {
        font-size: 1.1rem;
        padding: 16px 35px;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-section h2 {
        font-size: 1.7rem;
        line-height: 1.3;
    }
    
    .cta-section p {
        font-size: 1rem;
        line-height: 1.5;
        padding: 0 15px;
    }
    
    .btn-cta {
        font-size: 1rem;
        padding: 15px 30px;
        letter-spacing: 0.5px;
    }
}



/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        margin: 10px 0;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-input {
        min-width: auto;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .search-section h2,
    .featured-properties h2 {
        font-size: 2rem;
    }
    
    .property-card {
        margin: 0 10px;
    }
}