
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f2d;
    letter-spacing: 1px;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.call-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #2c5f2d;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 95, 45, 0.3);
}

.call-button:hover {
    background: #1e4620;
    box-shadow: 0 6px 20px rgba(44, 95, 45, 0.4);
}

.call-button:active {
    transform: scale(0.98);
}

.phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: ring 2s ease-in-out infinite;
}

.phone-icon svg {
    stroke: white;
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-10deg);
    }
    20%, 40% {
        transform: rotate(10deg);
    }
}

.call-text {
    white-space: nowrap;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('/assets/images/zenvillas/ZEN Villas 3 copy.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content {
    max-width: 900px;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* About Section */
.about {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 500px;
    background: linear-gradient(rgba(44, 95, 45, 0.1), rgba(44, 95, 45, 0.1)), url('/assets/images/zenvillas/Screenshot1.png');
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    position: relative;
}

.about-image a.image-popup {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    cursor: zoom-in;
    display: block;
    border-radius: 15px;
}

.about-image:hover {
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
    transform: scale(1.02);
    transition: all 0.3s ease;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #2c5f2d;
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Properties Section */
.properties {
    padding: 6rem 2rem;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5f2d;
    margin-bottom: 3rem;
}

.properties-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.property-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.property-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.property-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #2c5f2d;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.property-info {
    padding: 2rem;
}

.property-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.property-location {
    color: #666;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.property-details {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    color: #666;
}

.property-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.property-price {
    font-size: 1.8rem;
    color: #2c5f2d;
    font-weight: 700;
    margin-top: 1rem;
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: #2c5f2d;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #2c5f2d;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Phone Element Section */
.phone_element {
    background: linear-gradient(135deg, #2c5f2d 0%, #1e4620 100%);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.phone_element.no_borders {
    border: none;
}

.phone_element h6 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.phone_element a {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    color: #2c5f2d;
    padding: 1rem 2rem;
    margin: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.phone_element a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
    background: #f8f9fa;
}

.phone_element a img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.phone_element a span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.phone_element a span em {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #2c5f2d;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }
}

/* WhatsApp Popup Styles */
.whatsapp-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  display: none;
}

.whatsapp-popup.show {
  display: block;
  animation: zoomIn 0.5s ease-out;
}

@keyframes zoomIn {
  from {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.whatsapp-popup-content {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.2);
  padding: 20px;
  max-width: 350px;
  width: 90vw;
  position: relative;
}

.whatsapp-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  display: none;
}

.whatsapp-popup-overlay.show {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.whatsapp-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 20px;
  cursor: pointer;
  color: #999;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
}

.whatsapp-popup-close:hover {
  background: #f0f0f0;
  color: #333;
}

.whatsapp-popup-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.whatsapp-popup-header img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.whatsapp-popup-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.whatsapp-popup-header p {
  margin: 0;
  font-size: 12px;
  color: #999;
}

.whatsapp-popup-body {
  background: #f0f0f0;
  padding: 12px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.whatsapp-popup-body p {
  margin: 0;
  font-size: 14px;
  color: #333;
}

.whatsapp-popup-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25D366;
  color: #fff;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
}

.whatsapp-popup-button:hover {
  background: #128C7E;
  color: #fff;
  transform: scale(1.05);
}

.whatsapp-popup-button i {
  margin-right: 8px;
  font-size: 20px;
}

.whatsapp-float-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  transition: all 0.3s;
  animation: whatsappPulse 2s infinite;
  z-index: 9997;
}

.whatsapp-float-btn:hover {
  background: #128C7E;
  transform: scale(1.1);
}

.whatsapp-float-btn i {
  color: #fff;
  font-size: 30px;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
  }
  100% {
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  }
}

@media (max-width: 768px) {
  .whatsapp-popup-content {
    max-width: 320px;
    padding: 15px;
  }
  
  .whatsapp-float-btn {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
  
  .whatsapp-float-btn i {
    font-size: 25px;
  }
}
