/* Global Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #fcfcfc;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #104a21; /* Deep Green */
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Navbar */
.navbar {
    border-bottom: 2px solid #c5a059; /* Gold */
    background-color: #ffffff;
}
.navbar-brand h2 {
    color: #104a21;
    font-weight: 700;
    margin: 0;
    font-size: 24px;
}
.navbar-brand span {
    color: #c5a059;
}
.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: #333 !important;
}
.nav-link:hover {
    color: #c5a059 !important;
}

/* Buttons */
.btn-primary-custom {
    background-color: #104a21;
    color: #fff;
    border: 2px solid #104a21;
    transition: 0.3s;
}
.btn-primary-custom:hover {
    background-color: #c5a059;
    border-color: #c5a059;
    color: #fff;
}

/* Animations & Effects */
.pulse-btn {
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(197, 160, 89, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
}
.hover-zoom {
    transition: transform 0.5s ease;
}
.hover-zoom:hover {
    transform: scale(1.03);
}
.image-border-bg {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100%;
    height: 100%;
    background-color: #c5a059;
    border-radius: 1rem;
    z-index: 1;
}

/* Hero Section */
.hero-section {
    height: 90vh;
    min-height: 500px;
}
.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(16, 74, 33, 0.8), rgba(0, 0, 0, 0.7));
}
.ken-burns-left {
    animation: kenBurnsLeft 15s ease-out forwards;
}
@keyframes kenBurnsLeft {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.1) translate(-2%, 0); }
}

/* Titles */
.title-underline {
    height: 4px;
    width: 80px;
    background-color: #c5a059;
    border-radius: 2px;
    margin: 0 auto;
}
.title-underline-left {
    height: 4px;
    width: 80px;
    background-color: #c5a059;
    border-radius: 2px;
}

/* Highlights Grid */
.group-hover {
    transition: all 0.3s ease;
}
.group-hover:hover {
    transform: translateY(-5px);
}
.text-primary-custom {
    color: #104a21 !important;
}

/* Feature Slider */
.feature-card {
    height: 350px;
}
.feature-card .card-img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.feature-card:hover .card-img {
    transform: scale(1.08);
}
.bg-gradient-dark {
    background: linear-gradient(to top, rgba(16, 74, 33, 0.9) 0%, rgba(0,0,0,0) 100%);
}

/* Amenities */
.amenity-item {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-radius: 12px;
}
.amenity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}
.amenity-icon {
    color: #c5a059;
}
.strongest-amenity {
    background-color: #104a21;
    color: #fff;
    border: none;
}
.strongest-amenity .amenity-icon {
    color: #fff;
}
.ribbon {
    position: absolute;
    top: 15px;
    right: -35px;
    background: #c5a059;
    color: #fff;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

/* Inventory / Floor Plans */
.blur-img {
    filter: blur(8px);
    transition: filter 0.3s ease;
}
.blur-img:hover {
    filter: blur(4px);
}
.inventory-card {
    transition: transform 0.4s ease;
}
.inventory-card:hover {
    transform: scale(1.02);
}

/* Gallery Section */
.gallery-card {
    position: relative;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

.gallery-card img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 74, 33, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.gallery-card:hover .gallery-caption {
    opacity: 1;
}

.gallery-hidden {
    display: none;
}

.gallery-hidden.show {
    display: block;
}

/* Contact Section */
.contact-form-wrapper {
    border: 2px solid #c5a059;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    border-color: #ddd !important;
    color: #333;
}

.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
    color: #bbb;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus {
    border-color: #104a21 !important;
    box-shadow: 0 0 0 0.2rem rgba(16, 74, 33, 0.15);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(197, 160, 89, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Pricing Table (From Source) */
.pricing-section {
    background: #f6f6f6;
    font-family: 'Poppins', sans-serif;
}
.pricing-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}
.table-header {
    background: #104a21;
    color: white;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding: 22px 30px;
    font-weight: 600;
    font-size: 18px;
}
.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid #eee;
    font-size: 18px;
}
.table-row:last-child {
    border-bottom: none;
}
.offer-btn {
    background: #104a21;
    color: white;
    border: 2px solid #c5a059;
    padding: 12px 24px;
    border-radius: 40px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 600;
    width: 100%;
}
.offer-btn:hover {
    background: #c5a059;
    color: white;
}
@media(max-width:768px){
    .table-header { display: none; }
    .table-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 25px;
        text-align: center;
    }
}

/* Location Tabs */
.nav-pills .nav-link {
    background: #e9e9e9;
    color: #555;
    border-radius: 30px;
    padding: 12px 25px;
    font-weight: 500;
    margin: 5px;
    transition: all 0.3s ease;
}
.nav-pills .nav-link:hover {
    background: #dcdcdc;
}
.nav-pills .nav-link.active {
    background: #104a21;
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(16, 74, 33, 0.3);
}
.footer-input::placeholder {
    color: #fff !important;
    opacity: 1;
}
.location-item {
    transition: all 0.3s ease;
}
.location-item:hover {
    background: #f8fbf9;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 10px;
}
.address-card {
    background: linear-gradient(135deg, #104a21 0%, #1a7433 100%);
}
.address-bg-icon {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 200px;
    color: rgba(255,255,255,0.05);
    z-index: 1;
}

/* Testimonials Section */
.testimonial-panel {
    border: 3px solid #c5a059;
    transition: all 0.3s ease;
}

.testimonial-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(16, 74, 33, 0.2) !important;
}

.testimonial-text {
    font-style: italic;
    font-weight: 500;
    color: #555;
    letter-spacing: 0.3px;
}

.testimonial-stars {
    font-size: 18px;
    letter-spacing: 5px;
}

.btn-outline-primary-custom {
    color: #104a21;
    border: 2px solid #104a21;
    transition: all 0.3s ease;
}

.btn-outline-primary-custom:hover {
    background-color: #104a21;
    color: white;
    border-color: #104a21;
}

.testimonial-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #c5a059;
    transform: scale(1.2);
}

.dot:hover {
    background-color: #c5a059;
}

/* Footer */
footer {
    background-color: #104a21;
    color: #fff;
    border-top: 5px solid #c5a059;
}
