 @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Roboto:wght@300;400;500&display=swap');

:root {
    --primary-color: #432f24;
    --primary-dark: #1a4a40;
    --accent-color: #f1c40f;
    --text-dark: #212529;
    --text-light: #6c757d;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* section-bhk */
.section-bhk {
    background: var(--primary-color);
}

.section-bhk h2 {
    color: #fff !important;
}

.card-image {
    text-align: center;
    padding: 20px;
    border: 2px solid #6EB57D;
    border-radius: 10px;
}

/* --- Utilities --- */
.section-padding {
    padding: 80px 0;
}

.text-primary-color {
    color: var(--primary-color) !important;
}

.bg-primary-color {
    background-color: var(--primary-color) !important;
}

.bg-primary-dark {
    background-color: var(--primary-dark) !important;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* --- Header --- */
.logo {
    width: 100px;
    height: 100px;
}

.navbar {
    padding: 15px 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 50px;
    width: 200px;
}

.nav-link {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--text-dark) !important;
    margin: 0 10px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* --- Intro Section (New) --- */
.intro-section {
    padding: 120px 0 80px;
    background: url('bgg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.intro-section p {
    font-size: 1.1rem;
}

.info-box {
    display: inline-block;
    padding: 10px 40px;
    border-top: 2px solid #1a4a40;
    border-bottom: 2px solid #1a4a40;
    background: rgba(255, 255, 255, 0.4);
    font-weight: 700;
    color: #1a4a40;
    margin: 20px 0;
}

.price-badge {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid #1a4a40;
    background: rgba(67, 141, 122, 0.3);
    border-radius: 8px;
    font-size: 1.5rem;
}

.btn-intro-enquiry {
    border: 2px solid var(--white);
    background: rgba(67, 141, 122, 0.6);
    color: var(--primary-dark);
    padding: 12px 50px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-intro-enquiry:hover {
    background: var(--primary-color);
    color: var(--white);
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

.bounce-text {
    display: inline-block;
    /*animation: bounce 2s infinite;*/
}

/* --- Hero --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

/* --- Section Headers --- */
.section-title {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    color: var(--primary-dark);
    font-size: 2.5rem;
    text-transform: uppercase;
}

.section-title .divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 15px auto;
}

/* --- Cards --- */
.custom-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    background: #f3ebe6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    padding: 20px
}

.custom-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.custom-card img {
    height: 250px;
    object-fit: cover;
}

.card-body {
    padding: 20px 10px;
    background: var(--bg-light);
}

/* --- Highlights Section --- */
.highlights-section {
    background-color: var(--primary-color);
    padding: 80px 0;
}

.timeline-container {
    position: relative;
    padding-left: 50px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 13px;
    bottom: 0;
    width: 2px;
    height: 80%;
    background: rgba(255, 255, 255, 0.5);
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.timeline-icon {
    position: absolute;
    left: -50px;
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    font-size: 0.9rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.timeline-content {
    background: var(--white);
    color: var(--text-dark);
    padding: 20px 30px;
    border-radius: 8px;
    width: 100%;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.timeline-content h5 {
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.timeline-content::after {
    content: '';
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid var(--white);
}

/* --- Amenities Icons --- */
.amenity-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.card-icon {
    font-size: 3.5rem;
    color: #333;
    /* Dark/Black line art style as in image */
    margin-bottom: 5px;

}

.card-icon img {
    width: 100px;
    height: 100px;
}

.amenity-card h5 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0;
}

/* --- Gallery --- */
.gallery-grid .gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.gallery-grid .gallery-item img {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-grid .gallery-item:hover {
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.gallery-grid .gallery-item:hover img {
    transform: scale(1.08);
}

/* --- Refined Footer --- */
.footer-refined {
    background: var(--primary-color);
}

.rera-info p {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* --- Site Visit Form --- */
.custom-input {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 1rem;
    transition: var(--transition);
}

.custom-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(67, 141, 122, 0.1);
}

/* --- Modal --- */
.modal-content {
    border-radius: 20px;
    border: none;
}

.modal-header {
    background: var(--primary-color);
    color: var(--white);
}

