
/* =========================================
   GLOBAL
========================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Playfair Display", serif;
}

html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.6;
  background-color: #fdfdfd;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 0;
}


/* =========================================
   HERO
========================================= */

.hero {
  background: #f7f0e8;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 7.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: "Anton";
}

.hero p {
  font-size: 2.2rem;
  margin-bottom: 30px;
}




/* =========================================
   ABOUT US
========================================= */

.about {
  background: #fff;
}

.about h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.about p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.about .badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 25px;
}

.badge {
  background: #e6f4ea;
  padding: 10px 15px;
  border-radius: 8px;
  font-weight: 500;

  display: flex;
  align-items: center;
  gap: 8px;
}

.badge i {
  color: #28a745;
  font-size: 1rem;
}


/* =========================================
   OUR SERVICES
========================================= */

.services {
  background: #f7f7f7;
}

.services h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.services .subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px 20px;
  text-align: center;

  box-shadow:
    0 4px 10px rgba(0, 0, 0, 0.05);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.10);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #222;
}

.card p {
  font-size: 0.95rem;
  color: #555;
}


/* =========================================
   PRICING
========================================= */

.pricing {
  background: #1a1818;
  padding: 70px 20px;
  text-align: center;
}

.pricing .container {
  padding-top: 0;
  padding-bottom: 0;
}

.pricing h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #fff
}

.pricing .subtitle {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 45px;
}

.pricing-category {
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: #fff;
}

.package-heading {
  margin-top: 60px;
}


/* Pricing Grids */

.pricing-cards {
  display: grid;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.basic-cards {
  grid-template-columns: repeat(4, 1fr);
}

.essential-cards {
  grid-template-columns: repeat(4, 1fr);
  gap: 100px;
}

.complete-cards {
  grid-template-columns: repeat(1, 1fr);
}

/* Price Cards */

.price-card {
  position: relative;
  background: #778288;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px 20px;

  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.06);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.price-card:hover {
  transform: translateY(-5px);

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.10);
}

.price-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #222;
}


/* Prices */

.price {
  font-size: 2.2rem;
  font-weight: 600;
  color: #f30606;
  margin-bottom: 15px;
}

.price span {
  font-size: 1rem;
  vertical-align: top;
  margin-left: 2px;
}


/* Floor Plan Prices */

.floor-plan-price {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}

.floor-plan-price strong {
  font-size: 1.1rem;
  color: #f3dd06;
}

.floor-plan-price span {
  font-size: 1.7rem;
  font-weight: 600;
  color: #f30606;
}

.floor-plan-card p {
  margin-top: 15px;
}


/* Price Descriptions */

.price-card p {
  font-size: 1.2rem;
  color: #fff;
  line-height: 1.6;
}


/* Package Cards */

.package-card {
  padding: 35px 25px;
}

.package-card p {
  font-size: 1.2rem;
}

.spacer{ 
  height: 100px;
}



/* Popular Badge */

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);

  background: #ff7b54;
  color: #fff;

  padding: 5px 15px;
  border-radius: 20px;

  font-size: 0.75rem;
  font-weight: bold;

  white-space: nowrap;
}


/* Pricing Note */

.pricing-note {
  margin-top: 35px;
  font-size: 1rem;
  color: #fff;
}




/* =========================================
   FOOTER
========================================= */

.footer {
  background: #035afc;
  color: #fff;

  padding: 50px 20px;

  font-size: 1.5rem;
}

.footer .container {
  padding-top: 0;
  padding-bottom: 0;
}

.footer .footer-content {
  display: flex;

  justify-content: space-between;
  align-items: flex-start;

  flex-wrap: wrap;

  gap: 40px;

  text-align: left;
}

.footer-left,
.footer-right {
  flex: 1 1 300px;
}

.footer h3 {
  margin-bottom: 15px;
  font-size: 2.5rem;
}

.footer p {
  margin-bottom: 10px;
}


/* Phone & Email */

.footer-icon {
  width: 20px;
  margin-right: 8px;
  color: #fff;
}

.footer a {
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
}

.footer a:hover {
  color: #ffcfbf;
}


/* Divider */

.footer-divider {
  border: none;

  border-top:
    1px solid rgba(255, 255, 255, 0.3);

  margin: 30px 0;
}


/* Copyright */

.footer-bottom {
  text-align: center;

  font-size: 0.85rem;

  opacity: 0.9;
}


/* =========================================
   MOBILE FOOTER
========================================= */

@media (max-width: 600px) {

  .footer .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

}
```
