/* Enhanced fonts - using Poppins and Lora for professional look */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Lora:wght@400;500;600;700&display=swap');

/* Updated color variables for luxurious golden theme */
:root {
    --primary: #C9A053;
    --primary-dark: #A67C00;
    --primary-light: #E8C77C;
    --secondary: #2C2416;
    --dark: #1A1613;
    --light: #FAF8F5;
    --cream: #F5F1EA;
    --gold: #D4AF37;
    --white: #FFFFFF;
    --black: #000000;
    --reduu:#E53935;
    --maroonuu:#8E0000;
     --blue: blue;
    --shadow: 0 10px 40px rgba(201, 160, 83, 0.15);
    --shadow-lg: 0 20px 60px rgba(201, 160, 83, 0.25);
    --shadow-gold: 0 15px 50px rgba(212, 175, 55, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark);
}

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

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 100px 0;
}

/* Enhanced background colors for sections */
.bg-light-cream {
    background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
}

/* Enhanced Navigation with golden theme */
.navbar {
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: 0 5px 30px rgba(201, 160, 83, 0.15);
}

.navbar-brand {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    font-family: 'Lora', serif;
    /* color: var(--dark); */
}

.navbar-brand i {
    color: var(--primary);
    margin-right: 8px;
}

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

.brand-normal {
    color: var(--white);
}

.nav-link {
    font-weight: 600;
    padding: 8px 18px !important;
    color: var(--dark) !important;
    position: relative;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 70%;
}

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

/* Enhanced buttons with golden theme */
.btn {
    padding: 14px 32px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(201, 160, 83, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(201, 160, 83, 0.5);
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 100%);
    color: var(--white);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    color: var(--white);
    border-color: transparent;
}

.btn-outline-light {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent;
}

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

/* Enhanced Hero Section with overlay and better controls */
.hero-section {
    margin-top: 76px;
}

.carousel {
    height: 100vh;
    min-height: 600px;
}

.carousel-item {
    height: 100vh;
    min-height: 600px;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(42, 36, 22, 0.7) 0%, rgba(26, 22, 19, 0.5) 100%);
    z-index: 1;
}

.carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
}

.carousel-caption h1 {
    font-family: 'Lora', serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.carousel-caption .lead {
    font-size: 1.5rem;
    color: var(--white);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    font-weight: 400;
}

/* Enhanced carousel controls - compact and visible */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    opacity: 0.9;
    transition: all 0.3s ease;
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-icon {
    width: auto;
    height: auto;
    font-size: 1.5rem;
    color: var(--white);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    display: none;
}

/* Enhanced Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--light) 0%, var(--cream) 100%);
    padding: 60px 0;
    margin-top: -80px;
    position: relative;
    z-index: 10;
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--primary);
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-gold);
}

.stat-number {
    font-family: 'Lora', serif;
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Enhanced Section Headers */
.section-header {
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    position: relative;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary));
}

.section-subtitle::after {
    content: '';
    position: absolute;
    right: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), transparent);
}

.section-title {
    font-family: 'Lora', serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Enhanced About Section */
.about-image-wrapper {
    position: relative;
}

.about-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-gold);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.badge-content i {
    font-size: 2.5rem;
}

.badge-content h3 {
    font-size: 2.5rem;
    font-weight: 900;
    margin: 10px 0 0;
    color: var(--white);
}

.badge-content p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.feature-content h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark);
}

/* Compact navigation arrows for property sections */
.property-nav-btn {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-nav-btn:hover:not(:disabled) {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(201, 160, 83, 0.5);
}

.property-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.property-nav-btn.prev-btn {
    left: -20px;
}

.property-nav-btn.next-btn {
    right: -20px;
}

/* Enhanced Property Cards with aligned heights */
.property-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.property-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.property-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(201, 160, 83, 0.4);
}
.property-badge-v1 {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--reduu) 0%, var(--maroonuu) 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(201, 160, 83, 0.4);
}
.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 160, 83, 0.95) 0%, rgba(166, 124, 0, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

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

.btn-property-view {
    background: var(--white);
    color: var(--primary);
    font-weight: 700;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.property-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.property-title {
    font-family: 'Lora', serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.property-location {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.property-location i {
    color: var(--primary);
}

.property-features {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 20px;
}

.property-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 0.85rem;
    font-weight: 600;
}

.property-features i {
    color: var(--primary);
    font-size: 1rem;
}

.property-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.property-price {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Milestone Cards with aligned heights */
.milestone-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.milestone-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.milestone-image {
    height: 300px;
    overflow: hidden;
}

.milestone-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.milestone-card:hover .milestone-image img {
    transform: scale(1.05);
}

.milestone-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.milestone-content h3 {
    font-family: 'Lora', serif;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.milestone-location {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1rem;
}

.milestone-location i {
    color: var(--primary);
}

.milestone-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
}

.milestone-stats {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
}

.milestone-stat {
    text-align: center;
}

.milestone-stat strong {
    display: block;
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.milestone-stat span {
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Team Cards */
.team-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    cursor: pointer;
}

.team-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

/* .team-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
} */
.team-image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(90deg, #f5f5f5 25%, #e0e0e0 50%, #f5f5f5 75%);
    background-size: 200% 100%;
    animation: building-shimmer 2s linear infinite;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* keeps full image visible */
    position: relative;  /* above background */
    z-index: 1;
}
@keyframes building-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}


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

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(201, 160, 83, 0.95) 0%, rgba(166, 124, 0, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

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

.team-social {
    display: flex;
    gap: 15px;
}

.team-social a {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--dark);
    color: var(--primary);
    transform: translateY(-5px) rotate(360deg);
}

.team-content {
    padding: 25px;
    text-align: center;
}

.team-content h3 {
    font-family: 'Lora', serif;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.team-position {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1rem;
}

.team-brief {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.team-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.875rem;
}

/* Enhanced Review Cards with auto-rotation */
.review-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 6rem;
    color: var(--primary);
    opacity: 0.1;
    font-family: 'Lora', serif;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.review-stars {
    color: var(--gold);
}

.review-stars i {
    font-size: 1.3rem;
    margin-right: 3px;
}

.review-text {
    font-style: italic;
    color: var(--dark);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 25px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
}

.review-author h5 {
    font-family: 'Lora', serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.review-author p {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
}

.testimonial-indicators {
    position: relative;
    margin-top: 40px;
}

.testimonial-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.5;
}

.testimonial-indicators button.active {
    opacity: 1;
}

/* Enhanced Contact Section */
.contact-info-card {
    background: var(--white);
    padding: 15px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 1.75rem;
    box-shadow: var(--shadow-gold);
}

.contact-info-card h4 {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.contact-info-card a {
    color: var(--primary);
    font-weight: 700;
    transition: all 0.3s ease;
}

.contact-info-card a:hover {
    color: var(--gold);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.form-label {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
    font-size: 0.95rem;
}

.form-control,
.form-select {
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(201, 160, 83, 0.1);
}

/* Property Detail Modal */
.property-detail-modal .modal-content {
    border-radius: 25px;
    overflow: hidden;
}

.property-gallery-main {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 15px;
}

.property-gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}

.property-gallery-thumb {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.property-gallery-thumb:hover,
.property-gallery-thumb.active {
    border-color: var(--primary);
}

.property-detail-title {
    font-family: 'Lora', serif;
    font-size: 2rem;
    font-weight: 800;
}

.property-detail-price {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--light);
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
}

.amenity-item i {
    color: var(--primary);
    font-size: 1.3rem;
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    color: var(--light);
    padding: 80px 0 30px;
}

.footer-logo {
    font-family: 'Lora', serif;
    font-size: 1.6rem;
    font-weight: 800;
}

.footer-title {
    font-family: 'Lora', serif;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--primary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--light);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(201, 160, 83, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-5px);
}

.footer-newsletter {
    margin-top: 15px;
}

.footer-newsletter .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(201, 160, 83, 0.3);
    color: var(--white);
}

.footer-newsletter .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter .btn-primary {
    border-radius: 0 50px 50px 0;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 160, 83, 0.2);
}

.footer-bottom a {
    color: var(--light);
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--primary);
}

/* Enhanced Scroll to Top Button */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-gold);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(201, 160, 83, 0.5);
}

/* Enhanced WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    z-index: 999;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
    }
}

/* Responsive Design */
@media (max-width: 991px) {
    .carousel-caption h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .property-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
    .carousel-caption h1 {
        font-size: 2rem;
    }
    
    .carousel-caption .lead {
        font-size: 1.1rem;
    }
    
    .property-nav-btn {
        width: 35px;
        height: 35px;
    }
    
    .property-nav-btn.prev-btn {
        left: 10px;
    }
    
    .property-nav-btn.next-btn {
        right: 10px;
    }
}

.unit-color {
    color: var(--dark) !important; /* example: orange */
    font-weight: 600; /* optional */
}
/* Grid */
/* Grid */
.flat-availability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
    gap: 15px;
}

/* Card wrapper */
.flat-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--primary-light);
    box-shadow: var(--shadow);
}

/* Gold shimmer background */
.flat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        var(--cream) 20%,
        var(--primary-light) 40%,
        var(--gold) 55%,
        var(--primary) 70%,
        var(--cream) 90%
    );
    background-size: 250% 100%;
    animation: goldShimmer 2.6s linear infinite;
    z-index: 0;
    opacity: 0.45;
}

/* Gold moving animation */
@keyframes goldShimmer {
    0%   { background-position: 220% 0; }
    100% { background-position: -220% 0; }
}

/* Content box (kept visible over shimmer) */
.flat-box {
    position: relative;
    z-index: 2;
    padding: 18px 10px;
    text-align: center;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    transition: 0.3s ease;
}

/* Hover zoom-in effect */
.flat-card:hover .flat-box {
    transform: scale(1.08);
    box-shadow: var(--shadow-gold);
}

/* Text styling */
.flat-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.flat-size {
    font-size: 14px;
    color: var(--dark);
    margin-bottom: 8px;
    opacity: 0.85;
}
/* White Luxury Modal Styling */
.luxury-modal-white {
    background: var(--white);
    border: none;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    color: var(--secondary);
}

.luxury-header-white {
    background: var(--white);
    border-bottom: 1px solid rgba(201, 160, 83, 0.2);
    padding: 1rem 1.5rem;
}

.property-badge .badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    margin-right: 0.5rem;
}

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

.bg-maroon {
    background-color: var(--maroonuu) !important;
    color: var(--light);
}

.property-icon-white {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-gold);
}

.property-icon-white i {
    font-size: 1.8rem;
    color: var(--dark);
}

.luxury-title-white {
    font-weight: 700;
    color: var(--secondary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.project-description {
    max-width: 600px;
    margin: 0 auto;
}

.project-stats {
    max-width: 400px;
    margin: 0 auto;
}

.stat-item {
    padding: 0.5rem;
}

.price-tag-white {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(201, 160, 83, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(201, 160, 83, 0.2);
}

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

.property-features-white {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.feature-item-white {
    display: flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    background: rgba(201, 160, 83, 0.08);
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--secondary);
}

.section-header-white {
    border-bottom: 1px solid rgba(201, 160, 83, 0.2);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

/* Horizontal Scroll Gallery - White Theme */
.horizontal-scroll-white {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    padding: 0.5rem 0;
    scrollbar-width: thin;
    scrollbar-color: var(--gold) var(--cream);
}

.horizontal-scroll-white::-webkit-scrollbar {
    height: 8px;
}

.horizontal-scroll-white::-webkit-scrollbar-track {
    background: var(--cream);
    border-radius: 10px;
}

.horizontal-scroll-white::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

.scroll-item-white {
    flex: 0 0 auto;
    width: 280px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.scroll-item-white:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.scroll-item-white img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.scroll-item-white:hover img {
    transform: scale(1.05);
}

/* Button Styling */
.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 100%);
    border: none;
    color: var(--dark);
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--dark);
}

.btn-outline-gold {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .property-features-white {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .scroll-item-white {
        width: 220px;
        height: 160px;
    }
    
    .luxury-title-white {
        font-size: 1.8rem;
    }
    
    .project-stats .row {
        gap: 1rem;
    }
}
/* Fix Navbar Toggle Button */
.navbar-toggler {
    border: none;
    background: transparent !important;
    padding: 4px 8px;
    box-shadow: none !important;
    outline: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201, 160, 83, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
}

/* Fix Navbar Collapse for Mobile */
@media (max-width: 991px) {
    .navbar {
        padding: 12px 0;
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 0 0 15px 15px;
        margin-top: 10px;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        border-top: 2px solid var(--primary);
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .nav-link {
        padding: 12px 20px !important;
        margin: 5px 0;
        border-radius: 8px;
        font-weight: 600;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(201, 160, 83, 0.1);
        color: var(--primary) !important;
    }
    
    .nav-link::before {
        display: none; /* Remove underline animation on mobile */
    }
    
    .navbar-nav .btn {
        margin-top: 15px;
        width: 100%;
        text-align: center;
    }
    
    /* Ensure proper spacing */
    .hero-section {
        margin-top: 70px;
    }
}

/* Fix Z-index Stacking */
.navbar {
    z-index: 1030;
}

/* Smooth transitions */
.navbar-collapse {
    transition: all 0.3s ease-in-out;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

.crystal-header {
    background: linear-gradient(135deg, 
        rgba(201, 160, 83, 0.9) 0%, 
        rgba(212, 175, 55, 0.8) 50%, 
        rgba(232, 199, 124, 0.9) 100%);
    border: none;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.crystal-shards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.1) 50%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, rgba(255,255,255,0.1) 50%, transparent 55%);
    background-size: 30px 30px;
    animation: crystalShine 4s linear infinite;
}

@keyframes crystalShine {
    0% { background-position: 0 0; }
    100% { background-position: 30px 30px; }
}



