/* ===============================
   GLOBAL STYLES
================================= */
body {
  font-family: 'Poppins', Arial, sans-serif;
  background: #f4f7fb;
  color: #1b1b1b;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
}

/* ===============================
   HEADER
================================= */
header {
  background: linear-gradient(135deg, #003366, #0077cc);
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  z-index: 10;
}

header h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

header p {
  font-size: 18px;
  color: #cce0ff;
}

/* ===============================
   MAIN CONTAINER
================================= */
.container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

/* ===============================
   PROPERTY DETAIL CARD
================================= */
.property-detail {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.property-detail:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
}

.property-detail img,
.property-detail video {
  width: 100%;
  display: block;
  object-fit: cover;
  border-bottom: 1px solid #e0e0e0;
  border-radius: 0;
  transition: transform 0.5s ease;
}

.property-detail img:hover,
.property-detail video:hover {
  transform: scale(1.05);
}

/* ===============================
   DESCRIPTION
================================= */
.description {
  padding: 30px 35px;
}

.description p {
  font-size: 17px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ===============================
   PROPERTY FEATURES
================================= */
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}

.features div {
  flex: 1 1 30%;
  background: linear-gradient(135deg, #0077cc, #00bcd4);
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 12px 0;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.features div:hover {
  transform: translateY(-3px);
}

/* ===============================
   CTA BUTTON
================================= */
.contact-btn {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(135deg, #003366, #00bcd4);
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  text-align: center;
  transition: transform 0.3s ease, background 0.4s ease;
}

.contact-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #004b8d, #00e5ff);
}

/* ===============================
   FOOTER
================================= */
.footer {
  background: #0a0a23;
  color: #ccc;
  padding: 50px 20px;
  margin-top: 60px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo img {
  width: 60px;
  margin-bottom: 10px;
}

.footer-logo h3 {
  font-size: 20px;
  color: #fff;
}

.footer-logo p {
  font-size: 14px;
  color: #cce0ff;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 6px 0;
}

.footer-links a {
  color: #ccc;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact p,
.footer-contact a {
  color: #ccc;
  font-size: 15px;
}

.footer-contact a:hover {
  color: #fff;
}

.social-links a {
  display: inline-block;
  margin-right: 10px;
  font-size: 18px;
  color: #ccc;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 14px;
  color: #aaa;
}

.developer-credit a {
  color: #00bcd4;
  text-decoration: none;
}

.developer-credit a:hover {
  text-decoration: underline;
}

/* ===============================
   RESPONSIVE DESIGN
================================= */
@media (max-width: 992px) {
  .features div {
    flex: 1 1 45%;
  }
}

@media (max-width: 768px) {
  header h1 {
    font-size: 28px;
  }

  .features div {
    flex: 1 1 100%;
  }

  .contact-btn {
    width: 100%;
    text-align: center;
  }

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


/* ===============================
   CONTACT AGENT BUTTON
================================= */
.contact-agent {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(135deg, #ff4b2b, #ff416c); /* radiant gradient */
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(255, 65, 108, 0.4);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-agent::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

.contact-agent:hover::after {
  top: 100%;
  left: 100%;
}

.contact-agent:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255, 65, 108, 0.6);
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
}


