html,body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6{
    font-family: 'Inter', sans-serif;
}
p{
    font-size: 16px;
    color: #595c5f;
}
a{
    color: #000;
}

:root {
    --maroon-dark: #8B0000;
    --maroon-light: #DC143C;
    --maroon-hover: #A52A2A;
}

.section{
    padding: 54px 0px;
}
.main-heading{
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 14px;
}
.sub-heading{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 14px;
}
.mini-heading{
    font-size: 18px;
    color: #595c5f;
}
.text-half-white{
    color: #ccc;
}

.logo-navbar{
    width: 300px;
}





/* ==================== NAVBAR STYLES ==================== */
.main-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.5s ease;
    background: transparent;
    padding: 1.5rem 0;
    /* border-bottom: 1px solid #5d5656; */
}

.main-navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 0;
}

.navbar-logo {
    padding: 0.75rem 1.5rem;
    background: var(--maroon-dark);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: 2px;
    position: relative;
    transition: all 0.5s ease;
    border: 2px solid white;
}

.main-navbar.scrolled .navbar-logo {
    background: white;
    color: var(--maroon-dark);
    border: 2px solid var(--maroon-dark);
}

.navbar-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--maroon-dark), var(--maroon-light));
    border-radius: 50px;
    filter: blur(20px);
    opacity: 0.5;
    z-index: -1;
    transition: opacity 0.5s;
}

.navbar-logo:hover::before {
    opacity: 0.75;
}

.nav-link {
    color: white;
    position: relative;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.main-navbar.scrolled .nav-link {
    color: #333;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--maroon-dark), var(--maroon-light));
    transition: width 0.5s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover {
    color: var(--maroon-light) !important;
    transform: translateY(-2px);
}

.enquire-btn {
    position: relative;
    padding: 0.75rem 2rem;
    background: linear-gradient(to right, var(--maroon-dark), var(--maroon-light));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    overflow: hidden;
    transition: all 0.3s ease;
}

.enquire-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--maroon-dark), var(--maroon-light));
    filter: blur(20px);
    opacity: 0.75;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.75; }
    50% { opacity: 1; }
}

.enquire-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.4);
}

.enquire-btn i {
    animation: arrowMove 1.5s infinite;
}

@keyframes arrowMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(139,0,0,0.6) 100%), 
                url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1920&q=80') center/cover;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.location-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 60px;
    margin-bottom: 14px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.hero-title {
    font-size: 50px;
    font-weight: 900;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.4s backwards;
}

.hero-title-gradient {
    background: linear-gradient(to right, var(--maroon-light), #FF6B6B, var(--maroon-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInUp 1s ease 0.6s backwards;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0.5rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.feature-pill:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
}

.cta-primary {
    position: relative;
    padding: 1rem 2.5rem;
    background: linear-gradient(to right, var(--maroon-dark), var(--maroon-light));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0.5rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 1s backwards;
}

.cta-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--maroon-dark), var(--maroon-light));
    filter: blur(20px);
    opacity: 0.75;
    z-index: -1;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.5);
}

.cta-secondary {
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0.5rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 1s backwards;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.mouse-scroll {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 8px;
}

.mouse-dot {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: mouseScroll 2s infinite;
}

@keyframes mouseScroll {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(12px); }
}

/* ==================== SECTION ANIMATIONS ==================== */
.section-title-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(to right, rgba(139,0,0,0.1), rgba(220,20,60,0.1));
    color: var(--maroon-dark);
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(to right, var(--maroon-dark), var(--maroon-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== STATS CARDS ==================== */
.stat-card {
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.2);
}

.stat-card i {
    font-size: 2rem;
    color: var(--maroon-dark);
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

/* ==================== FEATURES SECTION ==================== */
.feature-card {
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    border: 1px solid #eee;
    transition: all 0.5s ease;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 0, 0, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(to right, rgba(139,0,0,0.1), rgba(220,20,60,0.1));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.5s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 2rem;
    color: var(--maroon-dark);
}

/* ==================== GALLERY FLIP CARDS ==================== */
.flip-card {
    perspective: 1500px;
    height: 400px;
    margin-bottom: 2rem;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 1rem;
    overflow: hidden;
}

.flip-card-front {
    background-size: cover;
    background-position: center;
}

.flip-card-back {
    background: linear-gradient(135deg, var(--maroon-dark), var(--maroon-hover), var(--maroon-light));
    transform: rotateY(180deg);
    padding: 2rem;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.flip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4), transparent);
}

.flip-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
}

.hover-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.property-stat {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 0.75rem;
}

/* ==================== FLOATING BUTTONS ==================== */
.floating-buttons {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: floatUpDown 2s infinite;
}

.float-btn.whatsapp {
    background: #25D366;
    animation-delay: 0s;
}

.float-btn.call {
    background: linear-gradient(to right, var(--maroon-dark), var(--maroon-light));
    animation-delay: 0.5s;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.float-btn:hover {
    transform: scale(1.1) !important;
}

.float-btn i {
    font-size: 1.75rem;
    color: white;
}

.float-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    opacity: 0.75;
    filter: blur(15px);
    animation: glowPulse 2s infinite;
}

.float-btn.whatsapp::before {
    background: #25D366;
}

.float-btn.call::before {
    background: linear-gradient(to right, var(--maroon-dark), var(--maroon-light));
}

@keyframes glowPulse {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0; transform: scale(1.1); }
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--maroon-dark), var(--maroon-light));
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fff;
}
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255,255,255,0.2) 0%, transparent 70%);
    animation: ctaBackground 10s infinite;
}
@keyframes ctaBackground {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
.cta-para{
    font-size: 22px;
    font-weight: 400;
    color: #fff;
}

.cta-btn-white {
    padding: 1.25rem 3rem;
    background: white;
    color: var(--maroon-dark);
    border: none;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    transition: all 0.3s ease;
    position: relative;
}

.cta-btn-white::before {
    content: '';
    position: absolute;
    inset: 0;
    background: white;
    filter: blur(30px);
    opacity: 0.5;
    animation: ctaGlow 2s infinite;
    z-index: -1;
    border-radius: 50px;
}

@keyframes ctaGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.05); }
}

.cta-btn-white:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ==================== POPUP FORM ==================== */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background: white;
    border-radius: 1.5rem;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: popupSlideIn 0.5s ease;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.popup-close:hover {
    background: var(--maroon-dark);
    color: white;
    transform: rotate(90deg);
}

.form-control:focus {
    border-color: var(--maroon-dark);
    box-shadow: 0 0 0 0.2rem rgba(139, 0, 0, 0.25);
}

/* ==================== FOOTER ==================== */
footer {
    background: linear-gradient(to bottom, #1a1a1a, #000);
    color: white;
    padding: 4rem 0 2rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    color: #fff;
}

.social-icon:hover {
    background: linear-gradient(to right, var(--maroon-dark), var(--maroon-light));
    transform: scale(1.1);
}

.footer-link {
    color: #999;
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--maroon-light);
    padding-left: 0.5rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .floating-buttons {
        bottom: 1rem;
        right: 1rem;
    }

    .float-btn {
        width: 48px;
        height: 48px;
    }
}

/* ==================== UTILITIES ==================== */
.bg-gradient-maroon {
    background: linear-gradient(to right, var(--maroon-dark), var(--maroon-light));
}

.text-maroon {
    color: var(--maroon-dark);
}

.border-maroon {
    border-color: var(--maroon-dark) !important;
}
