:root {
    --primary-color: #C6A43F;    /* Gold/Brass - Main accent */
    --primary-dark: #A8882E;      /* Darker gold */
    --secondary-color: #1A2A3A;   /* Deep navy blue */
    --secondary-light: #243645;   /* Lighter navy */
    --dark-bg: #0F1A24;           /* Very dark blue for footer */
    --text-light: #FFFFFF;
    --text-dark: #2C3E50;
    --text-muted: #7F8C8D;
    --gray-bg: #F8F9FA;
    --white: #FFFFFF;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transform: translateY(0) !important;
}

.navbar.scrolled {
    padding: 8px 0;
    background: rgba(255,255,255,0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.12);
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    transform: translateY(0) !important;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo img {
    height: 45px;
    transition: var(--transition);
}

.logo img:hover {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    margin: 0;
    flex: 1;
    justify-content: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.nav-phone-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    border: none;
    cursor: pointer;
}

.nav-phone-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(198, 164, 63, 0.3);
}

.nav-phone-btn:active {
    transform: translateY(0);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .nav-container {
        padding: 0 15px;
        gap: 10px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        gap: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        padding: 12px 20px;
        display: block;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-right {
        margin-left: 0;
        gap: 10px;
    }
    
    .nav-phone-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 60px;
    }
    
    .navbar {
        padding: 8px 0;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .nav-menu {
        top: 60px;
        max-height: calc(100vh - 60px);
    }
    
    .nav-phone-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .hamburger span {
        width: 22px;
        height: 2.5px;
    }
}
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .about-grid,
    .contact-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--secondary-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/banner.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 42, 58, 0.7);
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--text-light);
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* About Section */
.about {
    background: var(--gray-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin: 20px 0;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.8;
}

.quote {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.quote i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 15px;
}

.quote h4 {
    margin-top: 15px;
    color: var(--secondary-color);
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Split Highlights Section */
.highlight-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.highlight-label {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.highlight-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.highlight-list {
    list-style: none;
    padding: 0;
}

.highlight-list li {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Icon style like your UI */
.highlight-list li::before {
    content: "▣";
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Highlights Split Section */
.highlights-split {
    padding: 80px 0;
    background: var(--white);
}

.highlights-split .container {
    padding: 0 20px;
}

.highlights-split .row {
    display: flex;
    align-items: center;
    gap: 50px;
}

.highlights-split .col-lg-6 {
    flex: 1;
}

.highlights-split .highlight-image {
    overflow: hidden;
    border-radius: 15px;
}

.highlights-split .highlight-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.highlights-split .highlight-image:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {
    .highlights-split .row {
        gap: 30px;
    }
    
    .highlight-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .highlights-split {
        padding: 50px 0;
    }
    
    .highlights-split .row {
        flex-direction: column;
        gap: 30px;
    }
    
    .highlights-split .col-lg-6 {
        width: 100%;
    }
    
    .highlight-title {
        font-size: 1.5rem;
    }
    
    .highlight-list li {
        font-size: 0.9rem;
    }
}


.price {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
}

.price .section-header h2,
.price .section-header p {
    color: var(--white);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.price-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.price-card.featured {
    transform: scale(1.05);
    box-shadow: var(--shadow);
    border: 2px solid var(--primary-color);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price-card:hover {
    transform: translateY(-10px);
}

.price-card h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.price-card ul {
    list-style: none;
    margin: 20px 0;
}

.price-card li {
    padding: 8px 0;
    color: var(--text-muted);
}

.price-card li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.price-btn {
    display: inline-block;
    padding: 10px 30px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
}

.price-btn:hover {
    background: var(--primary-dark);
}

/* Amenities Section */
.amenities {
    background: var(--gray-bg);
    padding: 60px 0;
}

.amenities .section-header {
    margin-bottom: 50px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 51px;
    max-width: 1200px;
    margin: 0 auto;
}

.amenity-item {
    text-align: center;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.amenity-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Amenity Images */
.amenity-image {
    width: 100%;
    height: 220px;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.amenity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.amenity-item:hover .amenity-image img {
    transform: scale(1.15) rotate(2deg);
}

.amenity-item h4 {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 20px 15px;
    margin: 0;
    transition: color 0.3s ease;
}

.amenity-item:hover h4 {
    color: var(--primary-color);
}

/* Floor Plans */
.floorplans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.floorplan-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.floorplan-card:hover {
    transform: translateY(-5px);
}

.floorplan-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.floorplan-card h3 {
    margin: 15px 0 5px;
    color: var(--secondary-color);
}

.view-plan {
    margin: 15px 0 20px;
    padding: 8px 20px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.view-plan:hover {
    background: var(--primary-dark);
}

/* Location Section */
.location {
    background: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.location-map img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.location-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    margin-bottom: 15px;
    background: var(--gray-bg);
    border-radius: 10px;
    transition: var(--transition);
}

.location-item:hover {
    transform: translateX(10px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.location-item i {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.location-item h4 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

/* Contact Section */
.contact {
    background: var(--gray-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.developer-info h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-details {
    margin-top: 30px;
}

.contact-details p {
    margin: 10px 0;
}

.contact-details i {
    color: var(--primary-color);
    width: 30px;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(198, 164, 63, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: var(--primary-dark);
}

/* Footer Image Section */
.footer-hero {
    position: relative;
    color: #fff;
    overflow: hidden;
}

/* Background Image */
.footer-bg {
    background: url('../images/footer-bg.webp') center/cover no-repeat;
    height: 350px;
}

/* Dark Overlay */
.footer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

/* Text Styling */
.footer-rera {
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.footer-disclaimer {
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 900px;
    margin: 20px auto;
    color: #ddd;
}

/* Read More */
.footer-read {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
}

/* Links */
.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 5px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Lighten modal background overlay */
.modal-backdrop.show {
    opacity: 0.5 !important; /* default is 0.8 */
}

/* Modal content styling */
.modal-content {
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* Center spacing fix */
.modal-dialog {
    max-width: 500px;
}

/* Optional: smooth animation */
.modal.fade .modal-dialog {
    transform: translateY(-20px);
    transition: 0.3s ease;
}
.modal.show .modal-dialog {
    transform: translateY(0);
}

.modal-backdrop.show {
    background: rgba(0,0,0,0.4) !important;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Carousel Hero Section Styles */
/* HERO SECTION - CLEAN BACKGROUND IMAGE */
#home.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

/* Hero Background with Image */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 2;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-text {
    animation: slideInUp 1s ease-out;
    max-width: 600px;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-location {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--white);
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-highlights {
    margin-bottom: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.5;
}

.highlight-item img {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    flex-shrink: 0;
}

.hero-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.meta-typology span,
.meta-price span {
    display: inline-block;
    border: 2px solid var(--white);
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    transition: all 0.3s ease;
}

.meta-typology span:hover,
.meta-price span:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.meta-price span {
    font-size: 1.1rem;
    font-weight: 700;
}

.meta-price span strong {
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* Banner Form Positioning */
.banner-form {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    width: 100%;
    max-width: 380px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    z-index: 4;
}

.banner-form .form-heading {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-align: center;
}

.banner-form .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.banner-form .form-control:focus {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}

.banner-form .form-control::placeholder {
    color: #999;
}

/* Carousel */
.banner-dule {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background: #000;
}

.carousel-inner {
    width: 100%;
    height: 100vh;
    position: relative;
}

.carousel-item {
    width: 100%;
    height: 100vh;
    display: none !important;
}

.carousel-item.active {
    display: block !important;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    padding: 20px;
}

/* Banner Form */
.banner-form {
    position: absolute;
    bottom: 50px;
    right: 50px;
    background: rgba(60, 60, 60, 0.55);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 28px 24px;
    border-radius: 16px;
    width: 360px;
    z-index: 20;
}

.form-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    text-align: center;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    padding-bottom: 12px;
}

.from-banner .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    color: #333;
    font-size: 0.95rem;
    margin-bottom: 10px;
    transition: var(--transition);
}

.from-banner .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(198, 164, 63, 0.2);
}

.appbtn {
    width: 100%;
    background: #b39234;
    color: var(--white);
    border: none;
    padding: 13px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.03em;
}

.appbtn:hover {
    background: #a07f2c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

.inp-box {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.inp-txt {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.45;
}

/* Carousel Responsive */
@media (max-width: 1024px) {
    #home.hero-section {
        height: 80vh;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-location {
        font-size: 0.9rem;
    }
    
    .highlight-item {
        font-size: 1rem;
    }
    
    .banner-form {
        bottom: 30px;
        right: 30px;
        width: 320px;
    }
    
    #home {
        min-height: 80vh;
    }
    
    .banner-dule {
        min-height: 80vh;
    }
    
    .carousel-inner {
        height: 80vh;
    }
    
    .carousel-item {
        height: 80vh;
    }
}

@media (max-width: 768px) {
    #home.hero-section {
        height: 100vh;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .hero-location {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    
    .highlight-item {
        font-size: 0.95rem;
        margin-bottom: 10px;
    }
    
    .highlight-item img {
        width: 20px;
        height: 20px;
    }
    
    .meta-typology span,
    .meta-price span {
        font-size: 0.9rem;
        padding: 8px 18px;
    }
    
    .banner-form {
        position: absolute;
        bottom: 20px;
        right: 20px;
        width: 290px;
        padding: 25px;
        max-width: none;
    }
    
    .banner-form .form-heading {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    #home {
        min-height: 100vh;
    }
    
    body {
        padding-top: 70px;
    }
    
    .banner-dule {
        min-height: 100vh;
    }
    
    .carousel-inner {
        height: 100vh;
    }
    
    .carousel-item {
        height: 100vh;
    }
    
    .banner-text {
        position: relative;
        transform: none;
        top: auto;
        background: rgba(0, 0, 0, 0.5);
        padding: 40px 20px;
        margin: 0;
    }
    
    .slide-text {
        background: transparent;
        backdrop-filter: none;
        padding: 20px;
        max-width: 100%;
        margin-left: 0;
    }
    
    .banner-head {
        font-size: 2.2rem;
    }
    
    .banner-high {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    #home.hero-section {
        height: 100vh;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .hero-location {
        font-size: 0.75rem;
        margin-bottom: 8px;
    }
    
    .highlight-item {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    
    .highlight-item img {
        width: 18px;
        height: 18px;
        margin-right: 8px;
    }
    
    .meta-typology span,
    .meta-price span {
        font-size: 0.85rem;
        padding: 8px 16px;
    }
    
    .banner-form {
        position: absolute;
        bottom: 15px;
        right: 15px;
        left: 15px;
        width: auto;
        padding: 20px;
        max-width: none;
    }
    
    .banner-form .form-heading {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .banner-form .form-control {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
    
    .appbtn {
        padding: 10px;
        font-size: 0.95rem;
    }
    
    body {
        padding-top: 60px;
    }
    
    .carousel-inner {
        height: 60vh;
    }
    
    .carousel-item {
        height: 60vh;
    }
    
    .banner-text {
        padding: 20px 15px;
    }
    
    .slide-text {
        padding: 15px;
    }
    
    .banner-head {
        font-size: 1.8rem;
        margin: 10px 0;
    }
    
    .banner-high {
        font-size: 0.9rem;
        margin: 8px 0;
    }
    
    .form-heading {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
}

/* Amenities Responsive */
@media (max-width: 1024px) {
    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 25px;
    }
    
    .amenity-image {
        height: 200px;
    }
    
    .amenity-item h4 {
        font-size: 1rem;
        padding: 15px 10px;
    }
}

@media (max-width: 768px) {
    .amenities {
        padding: 40px 0;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 20px;
    }
    
    .amenity-image {
        height: 180px;
    }
    
    .amenity-item {
        border-radius: 12px;
    }
    
    .amenity-item:hover {
        transform: translateY(-8px);
    }
    
    .amenity-item h4 {
        font-size: 0.95rem;
        padding: 12px 8px;
    }
}

@media (max-width: 576px) {
    .amenities {
        padding: 30px 0;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .amenity-image {
        height: 150px;
    }
    
    .amenity-item {
        border-radius: 10px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    }
    
    .amenity-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    
    .amenity-item h4 {
        font-size: 0.9rem;
        padding: 10px 8px;
    }
    
    .amenity-item:hover .amenity-image img {
        transform: scale(1.1) rotate(0deg);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .banner-text {
        position: relative;
        top: auto;
        transform: none;
        padding: 20px;
        margin-top: 70px;
    }
    
    .slide-text {
        padding: 20px;
    }
    
    .banner-head {
        font-size: 2rem;
    }
    
    .banner-form {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 20px;
        border-radius: 0;
    }
    
    .carousel-item img {
        height: 50vh;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .banner-head {
        font-size: 1.5rem;
    }
    
    .banner-price-detail {
        font-size: 1.2rem;
    }
    
    .banner-price-detail span {
        font-size: 1.5rem;
    }
}