/* ===== ROOT COLORS ===== */
:root {
    --primary: #1a5632;
    --secondary: #d4a017;
    --dark: #333;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
    --radius: 8px;
}

/* ===== BASE ===== */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: var(--white);
}

.container {
    max-width: 1200px;
}

/* ===== HEADER BAR ===== */
.header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.action-buttons {
    display: flex;
    gap: 10px;
}

.custom-arrow {
    width: 60px;
}

.arrow-icon {
    background: rgba(0,0,0,0.7);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    transition: 0.3s;
}

.arrow-icon:hover {
    background: #1a5632; /* your primary color */
}

/*  */
/* Sidebar hover */
.developer-item:hover {
    background: #f8f9fa;
    transition: 0.3s;
}

/* Project Card */
.project-card {
    border-radius: 12px;
    transition: 0.3s ease;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Image zoom */
.project-img {
    transition: 0.5s;
    height: 220px;
    object-fit: cover;
}

.project-card:hover .project-img {
    transform: scale(1.08);
}

/* Overlay */
.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

/* ===== BUTTON ===== */
.btn-custom {
    background: var(--primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: var(--radius);
    text-decoration: none;
    border: none;
}

.btn-outline-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: 8px 18px;
    border-radius: var(--radius);
    text-decoration: none;
}

/* ===== BOOTSTRAP SLIDER FIX ===== */
.image-gallery-slider {
    margin: 20px 0 30px 0;
    position: relative;
}
.carousel-item img {
    height: 500px;
    object-fit: cover;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    padding: 20px;
}

/* ===== PROPERTY HEADER ===== */

.property-header {
    text-align: center;
    padding: 30px;
    background: var(--light);
    border-radius: var(--radius);
    margin: 30px 0;
}

.property-header h1 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.property-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== SECTION ===== */
.section {
    background: #fff;
    padding: 30px;
    margin: 30px 0;
    border-radius: var(--radius);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.section-title {
    color: var(--primary);
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

/* ===== SPECS GRID ===== */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.spec-item {
    background: var(--light);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
}

/* ===== TABLE ===== */
.pricing-table th,
.pricing-table td {
    padding: 14px;
    vertical-align: middle;
}

.pricing-table th {
    background: var(--primary);
    color: white;
    padding: 15px;
}

.pricing-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

/* ===== AMENITIES ===== */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
}

.amenity-item {
    background: var(--light);
    padding: 15px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .carousel-item img {
        height: 300px;
    }

    .property-badges {
        flex-direction: column;
        align-items: center;
    }

    .section {
        padding: 20px;
    }
}


/* ===== PROPERTY HEADER ===== */



.property-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.badge {
    background-color: var(--white);
    padding: 15px 20px;
    border-radius: var(--radius);
    min-width: 150px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.badge h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--primary);
}

.badge p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--gray);
}
/* LOCATION */
.location-wrapper {
    padding: 60px 0;
}

.location-title {
    text-align: center;
    font-size: 36px;
    letter-spacing: 2px;
    color: #1a5632;
}
.location-underline {
    width: 150px;
    height: 3px;
    background: #c0392b;
    margin: 15px auto 40px;
}

/* .location-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
} */

/* CONTACT FORM */
.floating-enquiry {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.floating-enquiry button {
    background: #1a5632;
    color: white;
    border: none;
    padding: 15px 22px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transition: 0.3s;
}

.floating-enquiry button:hover {
    transform: scale(1.05);
    background: #144626;
}

.floating-enquiry {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.floating-enquiry button {
    background: #1a5632;
    color: white;
    border: none;
    padding: 15px 22px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    transition: 0.3s;
}

.floating-enquiry button:hover {
    transform: scale(1.05);
    background: #144626;
}


.floor-card {
    transition: 0.3s ease;
    border: none;
}

.floor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.floor-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent 60%);
}

.floor-bhk {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #1a5632;
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
}

.floor-area {
    color: #1a5632;
    font-weight: 600;
    font-size: 18px;
}