/* HERO BASE */
.hero-section {
    min-height: 100vh;
    padding: 4rem 0;
}

/* Background image & overlay */
.hero-bg img {
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right,
            rgba(11, 27, 90, 0.8),
            rgba(11, 27, 90, 0.6),
            rgba(217, 192, 119, 0.4));
}

.hero-content {
    margin-top: 50px;
}

/* GOLD GRADIENT HEADING TEXT */
.gradient-gold-text {
    background: linear-gradient(to right, var(--gold), var(--cream), var(--gold));
    -webkit-background-clip: text;
    color: transparent;
}

/* FLOATING BLOBS */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float 6s ease-in-out infinite alternate;
}

.blob-gold {
    width: 130px;
    height: 130px;
    background: var(--gold);
    top: 8%;
    right: 8%;
}

.blob-emerald {
    width: 150px;
    height: 150px;
    background: var(--emerald);
    bottom: 20%;
    left: 10%;
    animation-delay: 1s;
}

.blob-cream {
    width: 100px;
    height: 100px;
    background: var(--cream);
    right: 25%;
    top: 45%;
    filter: blur(40px);
    animation: float 7s ease-in-out infinite alternate-reverse;
}

.step-number {
    width: 48px;
    height: 48px;
}

.step-icon {
    width: 48px;
    height: 48px;
}

@media screen and (max-width: 768px) {
    .hero-buttons {
        align-items: center;
    }

    .hero-buttons .btn {
        width: 80%;
        justify-content: center;
    }
}

@keyframes float {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-20px);
    }
}

/* Top properties section styles */
/* Heading underline */
.heading-underline {
    width: 120px;
    height: 6px;
    border-radius: 30px;
    background: var(--gold);
}

/* Toggle buttons */
.toggle-wrapper {
    background: #e5e5e5;
    padding: 6px;
    border-radius: 50px;
}

.toggle-btn {
    border: none;
    background: transparent;
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 50px;
    color: var(--royal-blue);
    transition: 0.3s;
}

.toggle-btn.active {
    background: linear-gradient(to right, #FF7C32, #FFD644);
    color: #fff;
}

/* Property cards */
.property-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: 0.5s;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(255, 214, 68, 0.8) 0px 0px 1px 0px;
}

.property-card:hover {
    box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 7px 0px, rgba(255, 214, 68, 0.8) 0px 0px 1px 0px;
}

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

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

.property-card:hover img {
    transform: scale(1.1);
}
/* Share icon button */
.btn-share-icon {
    position: absolute;
    top: 12px;
    right: 12px;

    width: 38px;
    height: 38px;

    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--royal);

    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.18);

    display: flex;
    align-items: center;
    justify-content: center;

    transition: all 0.2s ease;
    z-index: 3;
}

.btn-share-icon:hover {
    background: var(--royal);
    color: #fff;
    transform: translateY(-1px);
}

.share-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    text-align: center;
}

.share-item {
    border: none;
    background: #f8f9fb;
    border-radius: 14px;
    padding: 14px 10px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.share-item i {
    font-size: 22px;
    display: block;
    margin-bottom: 6px;
}

.share-item:hover {
    transform: translateY(-2px);
    background: #eef1f8;
}

/* Brand colors */
.share-item.whatsapp i { color: #25D366; }
.share-item.facebook i { color: #1877F2; }
.share-item.twitter i { color: #000; }
.share-item.telegram i { color: #229ED9; }
.share-item.link i { color: var(--royal); }


.property-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
    opacity: 0;
    transition: 0.3s;
}

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

/* Tags */
.property-tags {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tag-gold {
    background: var(--gold);
    color: var(--royal-blue);
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    border-radius: 30px;
}

.tag-blue {
    background: var(--royal-blue);
    color: white;
    padding: 6px 12px;
    font-size: 11px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Text */
.property-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--royal-blue);
    transition: 0.3s;
}

.property-card:hover .property-title {
    color: var(--gold);
}

.property-location {
    color: #6b7280;
}

.property-desc {
    font-size: 0.9rem;
    color: #374151;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
}

/* Buttons */
.btn-emerald {
    background: linear-gradient(to right, #FF7C32, #FFD644);
    color: #fff;
    border: none;
    font-weight: bold;
}

.btn-emerald:hover {
    background: transparent;
    border: 1px solid #FF7C32;
    color: #FF7C32;
}

.btn-outline-royal {
    border: 2px solid var(--royal-blue);
    color: var(--royal-blue);
}

.btn-outline-royal:hover {
    background: var(--royal-blue);
    color: #fff;
}

/* Top properties section styles -end */

/* Our services section */
/* Background gradient */
.services-section {
    background: linear-gradient(to bottom right,
            var(--royal-blue),
            #1f2c45,
            var(--royal-blue));
    position: relative;
}

/* SVG pattern */
.pattern-bg {
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.05;
}

/* Floating blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.25;
    animation: float 6s ease-in-out infinite alternate;
}

.blob-gold {
    width: 150px;
    height: 150px;
    background: var(--gold);
    top: 80px;
    right: 80px;
}

.blob-emerald {
    width: 180px;
    height: 180px;
    background: var(--emerald);
    bottom: 80px;
    left: 80px;
    animation-delay: 2s;
}

@keyframes float {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-18px);
    }
}

/* Heading underline */
.heading-gradient {
    width: 140px;
    height: 6px;
    border-radius: 10px;
    background: linear-gradient(to right, var(--gold), var(--cream));
}

/* Service cards */
.service-card {
    background: rgba(255, 255, 255, 0.12);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    transition: 0.4s;
    cursor: pointer;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.20);
}

/* Icon box */
.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(to bottom right, var(--gold), var(--cream));
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--royal-blue);
}

/* Titles */
.service-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    transition: 0.3s;
}

.service-card:hover .service-title {
    color: var(--gold);
}

/* Text */
.service-text {
    color: #d1d5db;
    font-size: 1rem;
    line-height: 1.6;
}

/* Learn More link */
.learn-more {
    margin-top: 1rem;
    color: var(--gold);
    font-weight: 600;
    opacity: 0;
    transform: translateX(-10px);
    transition: 0.3s;
}

.service-card:hover .learn-more {
    opacity: 1;
    transform: translateX(0);
}

/* CTA Button */
.btn-emerald-gradient {
    background: linear-gradient(to right, #FF7C32, #FFD644);
    color: white;
    border: none;
    transition: 0.3s;
}

.btn-emerald-gradient:hover {
    box-shadow: 0 0 15px rgba(0, 139, 108, 0.5);
}

/* Our services section -- end */

/* About us section */
/* ABOUT SECTION BASE */
.about-section {
    background: #f9fafb;
}

/* About Badge */
.about-badge {
    padding: 8px 18px;
    background: #fff;
    border: 2px solid var(--gold);
    color: var(--royal-blue);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Dropcap Letter */
.about-dropcap {
    float: left;
    font-size: 3.2rem;
    line-height: 1;
    margin-right: 12px;
    font-weight: 700;
    color: var(--orange);
}

/* Paragraphs */
.about-text p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Stats */
.about-stat-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange);
}

.about-stat-label {
    font-size: 0.85rem;
    color: #6b7280;
}

/* CTA Button */
.btn-orange {
    background: var(--orange);
    color: #fff;
    border: none;
    transition: 0.3s ease;
}

.btn-orange:hover {
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.4);
}

/* IMAGES */
.about-main-img {
    border-radius: 20px;
}

/* Floating small image */
.about-small-img {
    width: 260px;
    height: 180px;
    bottom: -30px;
    left: -30px;
    border-radius: 18px;
    overflow: hidden;
    border: 4px solid #fff;
}

/* Dot pattern */
.about-dots {
    width: 110px;
    height: 110px;
    top: -20px;
    right: -20px;
    opacity: 0.25;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

.about-dots::before {
    content: "";
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    background-image:
        radial-gradient(circle, var(--gold) 60%, transparent 61%);
    background-size: 10px 10px;
}

/* Purple glow blob */
.about-blob {
    width: 120px;
    height: 120px;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(75, 0, 130, 0.2);
    filter: blur(60px);
    border-radius: 50%;
}

@media screen and (min-width: 769px) {
    .about-us-image-container {
        width: 80%;
        float: right;
    }
}

/* About us section -- end */

/* Testimonials styles */
/* Underline */
.testi-underline {
    width: 120px;
    height: 6px;
    border-radius: 4px;
    background: var(--gold);
}

/* Testimonial Card */
.testi-card {
    background: #fff;
    border-radius: 22px;
}

/* Photo Wrapper */
.testi-photo-wrapper {
    width: 160px;
    height: 160px;
    padding: 10px;
    border: 8px solid rgba(255, 140, 0, 0.20);
    /* orange transparent border */
    border-radius: 50%;
    overflow: hidden;
}

/* Star Boxes */
.star-box {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Review Text */
.testi-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #4b5563;
    font-family: "Georgia", serif;
}

/* Slider Arrows */
.testi-arrow {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid var(--royal-blue);
    background: transparent;
    color: var(--royal-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.testi-arrow:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

/* Dots */
.testi-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
    transition: 0.3s;
}

.testi-dot.active {
    background: var(--orange);
    width: 28px;
    /* elongated pill like your design */
    border-radius: 12px;
}

/* Testimonials styles -- end */

/* Subscriber section styles */
/* Gradient Section Background */
.subscriber-section {
    background: linear-gradient(to right, #efbf31, var(--cream), #f4bf26);
}

/* Pattern Background */
.sub-pattern {
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000'%3E%3Cpath d='M20 20c0 11.046-8.954 20-20 20s-20-8.954-20-20 8.954-20 20-20 20 8.954 20 20zm-20-18c-9.941 0-18 8.059-18 18s8.059 18 18 18 18-8.059 18-18-8.059-18-18-18z'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

/* Floating Blobs */
.sub-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(45px);
    opacity: 0.22;
    animation: float 6s ease-in-out infinite alternate;
}

.sub-blob-royal {
    width: 100px;
    height: 100px;
    top: 50px;
    left: 50px;
    background: var(--royal-blue);
}

.sub-blob-emerald {
    width: 150px;
    height: 150px;
    bottom: 50px;
    right: 50px;
    background: var(--emerald);
    animation-delay: 1.2s;
}

@keyframes float {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-18px);
    }
}

/* Icon Bubble */
.sub-icon {
    width: 110px;
    height: 110px;
    background: var(--royal-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.sub-icon i {
    color: var(--gold);
}

/* Input */
.sub-input {
    border-radius: 50px;
    padding: 14px 20px;
    border: 2px solid rgba(0, 0, 128, 0.2);
    color: var(--royal-blue);
}

.sub-input:focus {
    border-color: var(--royal-blue);
    box-shadow: 0 0 0 4px rgba(11, 27, 90, 0.2);
}

/* Button */
.btn-royal {
    background: var(--royal-blue);
    color: #fff;
    border-radius: 50px;
    transition: 0.3s;
}

.btn-royal:hover {
    background: #1b2345;
    box-shadow: 0 0 10px rgba(11, 27, 90, 0.4);
}

/* Benefits */
.sub-benefits {
    font-size: 0.95rem;
}

.text-slate {
    color: #64748b;
}

@media screen and (min-width: 769px) {
    .sub-form .sub-input {
        width: 60%
    }
}

/* Subscriber section styles - end */

/* -----------------------------------------
   ABOUT US STYLE
----------------------------------------- */
/* -------------------------------------------------
   GLOBAL SECTION STYLES
--------------------------------------------------- */

.section-title {
    font-family: inherit;
    font-weight: 700;
    font-size: 2.5rem;
    color: #6a1b9a;
}

.section-underline {
    width: 120px;
    height: 6px;
    background: #ffeb3b;
    border-radius: 6px;
}

/* -------------------------------------------------
   CUSTOM CARDS (Why Choose Us)
--------------------------------------------------- */
.custom-card {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    transition: 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.custom-card:hover {
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.12);
}

.icon-circle {
    width: 90px;
    height: 90px;
    background: linear-gradient(to bottom right, #ff7043, #ffeb3b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Titles inside cards */
.custom-card-title {
    color: #6a1b9a;
    font-weight: 700;
    margin-bottom: 1rem;
}

.custom-card-text {
    color: #666;
    line-height: 1.6;
}

/* -------------------------------------------------
   HOW WE WORK - Steps
--------------------------------------------------- */

.work-line {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 6px;
    background: #ffeb3b;
    z-index: 1;
}

.step-circle {
    width: 90px;
    height: 90px;
    background: linear-gradient(to bottom right, #ff7043, #ffeb3b);
    border-radius: 50%;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    z-index: 2;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.step-title {
    color: #6a1b9a;
    font-weight: 700;
    margin-bottom: .5rem;
}

.step-text {
    color: #666;
    font-size: .9rem;
}

/* -------------------------------------------------
   FAQ (Accordion)
--------------------------------------------------- */

.custom-accordion .accordion-button {
    font-weight: 600;
    color: #6a1b9a;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background: #fff;
    color: #e65100;
    box-shadow: none;
}

.custom-accordion .accordion-body {
    background: #f7f7f7;
    line-height: 1.6;
}

/* -------------------------------------------------
   PARTNERS GRID
--------------------------------------------------- */

.partner-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    font-weight: 600;
    color: #999;
    border: 1px solid #eee;
    transition: 0.3s ease;
    cursor: pointer;
}

.partner-card:hover {
    color: #6a1b9a;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* -------------------------------------------------
   CONTACT PAGE — FORM
--------------------------------------------------- */

/* Page Titles */
.contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: #6a1b9a;
}

/* Labels */
.contact-label {
    font-weight: 600;
    color: #6a1b9a;
}

/* Inputs + Selects + Textarea */
.contact-input {
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 0.95rem;
    transition: all .3s ease;
}

.contact-input:focus {
    border-color: transparent;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, .35);
}

/* Submit Button */
.btn-contact-submit {
    padding: 0.9rem 1rem;
    font-weight: 600;
    border-radius: 10px;
    background: linear-gradient(to right, #ff7043, #ffeb3b);
    color: #fff;
    box-shadow: 0 3px 15px rgba(255, 140, 0, 0.45);
    transition: 0.3s ease;
}

.btn-contact-submit:hover {
    box-shadow: 0 6px 25px rgba(255, 140, 0, 0.6);
    transform: translateY(-2px);
}

/* -------------------------------------------------
   RIGHT SIDE INFO CARDS
--------------------------------------------------- */
.info-card {
    background: #fff;
    transition: 0.3s ease;
}

.info-card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* Circle Icons */
.info-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(to bottom right, #ff7043, #ffeb3b);
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-title {
    color: #6a1b9a;
    font-size: 1.15rem;
    font-weight: 700;
}

.info-link {
    color: #555;
    text-decoration: none;
    transition: 0.3s ease;
}

.info-link:hover {
    color: #ff7043;
}

/* Shadows */
.shadow-medium {
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
}

.shadow-light {
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.06);
}

/* Fade-up animation */
.fade-up {
    animation: fadeUp .6s ease forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Soft hover lift */
.card-hover {
    transition: transform .3s ease, box-shadow .3s ease;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, .08);
}

/* Number badge */
.step-badge {
    width: 34px;
    height: 34px;
}

.shadow-soft {
    box-shadow: 0 .75rem 1.5rem rgba(0, 0, 0, .08);
}

.blur-glow {
    background: linear-gradient(90deg, #60a5fa, #a855f7, #ec4899);
    opacity: .25;
    filter: blur(30px);
}

.gradient-text {
    background: linear-gradient(90deg, #2563eb, #9333ea, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-bar {
    height: 4px;
    background: linear-gradient(to right, var(--gold), #b8a350);
}

.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .15);
    transition: .3s;
}

.icon-box:hover {
    transform: translateY(-4px);
}

.bg-purple {
    background: #9333ea;
}

.bg-pink {
    background: #ec4899;
}

.bg-orange {
    background: #f97316;
}

.btn-purple {
    background: #9333ea;
    color: #fff;
}

.btn-pink {
    background: #ec4899;
    color: #fff;
}

.btn-orange {
    background: #f97316;
    color: #fff;
}

.animate-btn {
    transition: .3s;
    background: linear-gradient(to right, var(--gold), #b8a350);
    font-weight: 600;
    border: none;
}

.animate-btn:hover {
    box-shadow: 0 10px 25px var(--gold);
    transform: translateY(-2px);
}


/* Tabs */
.toggle-wrapper {
    background: #f1f3f5;
    padding: 6px;
    border-radius: 50px;
}

.toggle-btn {
    border: 0;
    background: transparent;
    padding: 10px 22px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

/* Panels */
.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}


.featured-owl .owl-stage,
.prelaunch-owl .owl-stage {
    display: flex;
}

.featured-owl .owl-item,
.prelaunch-owl .owl-item {
    display: flex;
}

.featured-owl .property-card,
.prelaunch-owl .property-card {
    width: 100%;
    height: 100%;
}

.owl-nav {
    display: none;
}

.price-main {
    color: #FF7C32;
    font-weight: 900;
    font-size: 1.5rem;
}

.price-cut {
    text-decoration-line: line-through;
}

.badge-discount {
    display: inline-block;
    padding: 4px 12px;
    background-color: #d1fae5;
    color: #065f46;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 9999px;
    line-height: 1.2;
    white-space: nowrap;
}

.rounded-pill {
    display: flex;
    align-items: center;
}

.bg-royal-slate-gradient {
    border: 1px solid var(--royal-blue);
}

.zoom-pulse {
    animation: zoomPulse 1.6s ease-in-out infinite;
    transform-origin: center;
}

@keyframes zoomPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.status-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

/* Status colors */
.dot-success {
    background-color: #198754;
    /* Bootstrap success */
}

.dot-warning {
    background-color: #ffc107;
    /* Bootstrap warning */
}

.dot-info {
    background-color: #0dcaf0;
}

.dot-danger {
    background-color: #dc3545;
}

/* Sticky state */
.property-tabs.sticky-tabs {
    position: fixed;
    top: var(--navbar-height);
    left: 0;
    right: 0;
    z-index: 1021;
    border-bottom: none;
}

/* Prevent layout shift */
#propertyTabWrapper {
    position: relative;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .property-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .property-tabs::-webkit-scrollbar {
        display: none;
    }

    .property-tabs .nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

.sticky-tabs {
    animation-name: slide-in-top;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: 1;
    animation-direction: normal;
    animation-fill-mode: none;
    background-color: #fff !important;
}

.property-tabs.sticky-tabs {
    padding: 0;
    margin-bottom: 0 !important;
}

.property-tabs.sticky-tabs .nav-link.active, .property-tabs.sticky-tabs .nav-link:hover {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 15px !important;
    border-bottom-right-radius: 15px !important;
}
.mt-100{
    margin-top: 100px;
}

