.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.price-card {
    background: #fff;
    padding: 50px 40px;
    border: 1px solid #eee;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* THE HIGHLIGHTED CARD */
.price-card.featured {
    border: 2px solid var(--logo-green);
    position: relative;
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.featured-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--logo-green);
    color: #fff;
    padding: 5px 20px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 20px;
}

.price-header h3 { font-size: 1.4rem; margin-bottom: 5px; }
.price-sub { color: var(--logo-gray); font-size: 0.9rem; margin-bottom: 25px; }

.main-price { font-size: 2.2rem; font-weight: 700; color: var(--black); }
.main-price span { font-size: 1rem; color: #aaa; font-weight: 400; }
.sqm-price { color: var(--logo-green); font-weight: 600; margin-top: 5px; margin-bottom: 30px; }

.price-features {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #f0f0f0;
}

.price-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f9f9f9;
    font-size: 0.95rem;
    color: #555;
}

.price-features li strong { color: var(--black); }


.btn-select {
    margin-top: auto; /* Pushes button to the bottom of the card */
    padding: 15px;
    background: #f8f8f8;
    border: 1px solid #ddd;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 2px;
}

.btn-select:hover {
    background: var(--black);
    color: #fff;
    border-color: var(--black);
}

.featured-btn {
    background: var(--logo-green);
    color: #fff;
    border-color: var(--logo-green);
}

.featured-btn:hover {
    background: #3e8e41; /* Slightly darker green */
    transform: translateY(-2px);
}

/* Specific styling for the "Not Included" list item */
.extra-cost {
    font-size: 0.8rem !important;
    color: #999 !important;
    font-style: italic;
    border-bottom: none !important;
}



.item-status {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 25px;
    margin-bottom: 10px;
    padding: 4px 8px;
    display: inline-block;
}

.item-status.included {
    color: var(--logo-green);
    background: #f4fbf4;
    border-radius: 2px;
}

.item-status.additional {
    color: #888;
    background: #f5f5f5;
    border-radius: 2px;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.price-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--black);
    position: relative;
    padding-left: 20px;
}

/* Checkmark for Included */
.price-features:not(.excludes) li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--logo-green);
}

/* Dash for Excluded */
.price-features.excludes li {
    color: #777;
}

.price-features.excludes li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #ccc;
}


.land-card {
    background: #fff;
    width: 90%;
    max-width: 800px;
    padding: 40px;
    border-radius: 4px;
    position: relative;
    animation: slideUp 0.4s ease;
}

.land-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 30px 0;
}

.surroundings-list h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--logo-gray);
    margin: 20px 0 10px 0;
}

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

.surroundings-list li {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #444;
}

.plot-plan {
    width: 100%;
    border-radius: 2px;
    border: 1px solid #eee;
}

.full-width { width: 100%; margin-top: 20px; }

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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



.card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

.btn-outline {
    padding: 12px;
    background: transparent;
    border: 1px solid #ddd;
    color: #666;
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #f9f9f9;
    color: var(--black);
}

/* Visual cue for the Upgrades section highlight */
.highlight-pulse {
    animation: pulse-bg 1.5s ease-out;
}

@keyframes pulse-bg {
    0% { background-color: rgba(76, 175, 80, 0); }
    30% { background-color: rgba(76, 175, 80, 0.1); }
    100% { background-color: rgba(76, 175, 80, 0); }
}



.btn-outline-minimal {
    display: block;
    text-align: center;
    padding: 12px;
    background: transparent;
    border: 1px solid #eee;
    color: #888;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.btn-outline-minimal:hover {
    border-color: #ccc;
    color: var(--black);
    background: #f9f9f9;
}


.footnote {
  margin: 35px 0px;
  padding: 25px;
  border-left: 2px solid var(--logo-green);
  margin-bottom: 10px;
  padding-bottom: 1px;
  background-color: #f8f8f8;
}
