/* ============================================================
   SSBR REAL TORS & INFRAHEIGHT PRIVATE LIMITED — Luxury Real Estate Design System
   ============================================================ */

:root {
    --primary-red: #A31313;
    --dark-red: #7A0C0C;
    --deep-red: #5a0808;
    --gold: #C9A227;
    --light-gold: #E5C76B;
    --white: #FFFFFF;
    --dark: #170707;
    --light-bg: #FAF8F3;
    --text-color: #333333;
    --text-muted: #6b6b6b;
    --border-color: rgba(201, 162, 39, 0.25);
    --font-body: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.18);
    --shadow-gold: 0 10px 30px rgba(201, 162, 39, 0.25);
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius: 10px;
    --radius-lg: 18px;
}

/* ----------------------- Reset & Base ----------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background: var(--light-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark-red);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

::selection {
    background: var(--gold);
    color: var(--dark);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 5px;
}

/* ----------------------- Typography Helpers ----------------------- */
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 42px;
}

    .section-tag::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        width: 32px;
        height: 2px;
        background: var(--gold);
        transform: translateY(-50%);
    }

    .section-tag.center {
        padding-left: 42px;
        padding-right: 42px;
    }

        .section-tag.center::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            width: 32px;
            height: 2px;
            background: var(--gold);
            transform: translateY(-50%);
        }

.section-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto;
}

.text-gold {
    color: var(--gold) !important;
}

.text-red {
    color: var(--primary-red) !important;
}

.text-white {
    color: var(--white) !important;
}

.bg-dark-red {
    background: var(--dark-red) !important;
}

.bg-dark {
    background: var(--dark) !important;
}

.bg-light {
    background: var(--light-bg) !important;
}

/* ----------------------- Buttons ----------------------- */
.btn-gold, .btn-red, .btn-outline-gold, .btn-outline-white, .btn-dark {
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-gold {
    background: linear-gradient(135deg, var(--light-gold), var(--gold));
    color: var(--dark);
    border-color: var(--gold);
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.35);
}

    .btn-gold:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(201, 162, 39, 0.5);
        background: linear-gradient(135deg, var(--gold), var(--light-gold));
    }

.btn-red {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    border-color: var(--primary-red);
    box-shadow: 0 4px 15px rgba(163, 19, 19, 0.35);
}

    .btn-red:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(163, 19, 19, 0.5);
    }

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}

    .btn-outline-gold:hover {
        background: var(--gold);
        color: var(--dark);
        transform: translateY(-3px);
    }

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
}

    .btn-outline-white:hover {
        background: var(--white);
        color: var(--dark-red);
        transform: translateY(-3px);
    }

.btn-dark {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

    .btn-dark:hover {
        background: var(--dark-red);
        border-color: var(--dark-red);
        transform: translateY(-3px);
    }

.btn-gold::before, .btn-red::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.btn-gold:hover::before, .btn-red:hover::before {
    left: 100%;
}

/* ----------------------- Sections ----------------------- */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-header.left {
        text-align: left;
        margin-bottom: 2rem;
    }

.divider-gold {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--light-gold));
    margin: 1rem 0;
    border-radius: 2px;
}

    .divider-gold.center {
        margin-left: auto;
        margin-right: auto;
    }

/* ----------------------- Navbar ----------------------- */
.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
    padding: 0.9rem 0;
    transition: var(--transition);
    background: transparent;
}

    .navbar-custom.scrolled {
        background: linear-gradient(135deg, var(--dark-red), var(--deep-red));
        box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        padding: 0.6rem 0;
    }

.navbar-brand-custom {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: 1px;
}

    .navbar-brand-custom i {
        color: var(--gold);
        font-size: 1.3rem;
    }

    .navbar-brand-custom span {
        color: var(--gold);
    }

.navbar-nav-custom {
    gap: 0.3rem;
}

.nav-link-custom {
    color: rgba(255,255,255,0.9) !important;
    font-size: 0.92rem;
    font-weight: 500;
    padding: 0.5rem 0.9rem !important;
    position: relative;
    letter-spacing: 0.3px;
}

    .nav-link-custom::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--gold);
        transition: var(--transition);
        transform: translateX(-50%);
    }

    .nav-link-custom:hover, .nav-link-custom.active {
        color: var(--gold) !important;
    }

        .nav-link-custom:hover::after, .nav-link-custom.active::after {
            width: 60%;
        }

.navbar-toggler-custom {
    border: 1px solid var(--gold);
    padding: 0.4rem 0.6rem;
}

    .navbar-toggler-custom:focus {
        box-shadow: 0 0 0 3px rgba(201,162,39,0.3);
    }

    .navbar-toggler-custom i {
        color: var(--gold);
        font-size: 1.4rem;
    }

.navbar-collapse-custom {
    transition: var(--transition);
}

@media (max-width: 991px) {
    .navbar-collapse-custom {
        background: linear-gradient(135deg, var(--dark-red), var(--deep-red));
        margin-top: 0.8rem;
        padding: 1rem;
        border-radius: var(--radius);
        border: 1px solid var(--border-color);
    }

    .nav-link-custom {
        padding: 0.6rem 0.5rem !important;
    }
}

/* ----------------------- Hero ----------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(23,7,7,0.85) 0%, rgba(122,12,12,0.7) 50%, rgba(23,7,7,0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 4rem;
}

.hero h1 {
    color: var(--white);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero .hero-sub {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--light-gold);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.05rem;
    max-width: 560px;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Page hero (inner pages) */
.page-hero {
    position: relative;
    padding: 9rem 0 4rem;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(23,7,7,0.88), rgba(122,12,12,0.75));
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.4rem);
    margin-bottom: 0.5rem;
}

.page-hero .breadcrumb-custom {
    display: inline-flex;
    gap: 0.5rem;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
}

    .page-hero .breadcrumb-custom a {
        color: var(--light-gold);
    }

        .page-hero .breadcrumb-custom a:hover {
            color: var(--white);
        }

    .page-hero .breadcrumb-custom span {
        color: rgba(255,255,255,0.5);
    }

/* ----------------------- Search Box ----------------------- */
.search-box {
    background: rgba(255,255,255,0.97);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    position: relative;
    z-index: 3;
}

    .search-box label {
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--dark-red);
        letter-spacing: 0.5px;
        margin-bottom: 0.3rem;
        text-transform: uppercase;
    }

    .search-box select, .search-box input {
        border: 1px solid #e0d9c5;
        border-radius: 8px;
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
        width: 100%;
        background: var(--light-bg);
        color: var(--text-color);
    }

        .search-box select:focus, .search-box input:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
            outline: none;
        }

/* ----------------------- Cards (generic) ----------------------- */
.card-luxury {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #ece5d3;
    transition: var(--transition);
    height: 100%;
}

    .card-luxury:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: var(--gold);
    }

/* ----------------------- Property Cards ----------------------- */
.property-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #ece5d3;
    transition: var(--transition);
    height: 100%;
    position: relative;
}

    .property-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: var(--gold);
    }

.property-img-wrap {
    position: relative;
    overflow: hidden;
    height: 240px;
}

    .property-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.property-card:hover .property-img-wrap img {
    transform: scale(1.12);
}

.property-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--dark);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.property-status-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.status-sale {
    background: var(--primary-red);
    color: var(--white);
}

.status-rent {
    background: var(--dark);
    color: var(--gold);
}

.favorite-btn {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

    .favorite-btn i {
        color: var(--primary-red);
        font-size: 1.1rem;
        transition: var(--transition);
    }

    .favorite-btn:hover {
        background: var(--primary-red);
    }

        .favorite-btn:hover i {
            color: var(--white);
        }

    .favorite-btn.active i {
        color: var(--primary-red);
        transform: scale(1.2);
    }

    .favorite-btn.active {
        background: var(--light-gold);
    }

.property-type-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(23,7,7,0.85));
    padding: 1.5rem 1rem 0.6rem;
    color: var(--white);
    font-size: 0.78rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.property-body {
    padding: 1.25rem 1.5rem 1.5rem;
}

.property-title {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
    color: var(--dark-red);
}

    .property-title a {
        color: inherit;
    }

        .property-title a:hover {
            color: var(--gold);
        }

.property-location {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

    .property-location i {
        color: var(--gold);
    }

.property-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

    .property-price span {
        font-size: 0.85rem;
        color: var(--text-muted);
        font-weight: 400;
    }

.property-specs {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid #f0e9d6;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.property-spec {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-color);
}

    .property-spec i {
        color: var(--gold);
    }

    .property-spec strong {
        font-weight: 600;
    }

/* List view */
.property-list-view .property-card {
    display: flex;
    flex-direction: row;
}

.property-list-view .property-img-wrap {
    width: 340px;
    flex-shrink: 0;
    height: auto;
}

.property-list-view .property-body {
    flex: 1;
}

@media (max-width: 767px) {
    .property-list-view .property-card {
        flex-direction: column;
    }

    .property-list-view .property-img-wrap {
        width: 100%;
        height: 220px;
    }
}

/* ----------------------- Category Cards ----------------------- */
.category-card {
    position: relative;
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

    .category-card .cat-bg {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        transition: transform 0.6s ease;
    }

    .category-card:hover .cat-bg {
        transform: scale(1.1);
    }

    .category-card .cat-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(23,7,7,0.9), rgba(122,12,12,0.4));
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 1.5rem;
        transition: var(--transition);
    }

    .category-card:hover .cat-overlay {
        background: linear-gradient(to top, rgba(122,12,12,0.95), rgba(23,7,7,0.6));
    }

    .category-card h4 {
        color: var(--white);
        font-size: 1.4rem;
        margin-bottom: 0.25rem;
    }

    .category-card p {
        color: var(--light-gold);
        font-size: 0.85rem;
        margin: 0;
    }

    .category-card .cat-icon {
        position: absolute;
        top: 1.25rem;
        right: 1.25rem;
        width: 50px;
        height: 50px;
        background: rgba(201,162,39,0.2);
        border: 1px solid var(--gold);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold);
        font-size: 1.3rem;
        backdrop-filter: blur(8px);
    }

/* ----------------------- Feature / Why Choose Cards ----------------------- */
.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 1.5rem;
    text-align: center;
    border: 1px solid #ece5d3;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--gold), var(--light-gold));
        transform: scaleX(0);
        transition: var(--transition);
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-md);
        border-color: var(--gold);
    }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201,162,39,0.12), rgba(229,199,107,0.18));
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 2rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--dark);
    transform: rotate(360deg);
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin: 0;
}

/* ----------------------- Project Cards ----------------------- */
.project-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #ece5d3;
    background: var(--white);
    transition: var(--transition);
    height: 100%;
}

    .project-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: var(--gold);
    }

.project-img-wrap {
    position: relative;
    overflow: hidden;
    height: 260px;
}

    .project-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.project-card:hover .project-img-wrap img {
    transform: scale(1.1);
}

.project-status {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.status-ongoing {
    background: var(--gold);
    color: var(--dark);
}

.status-upcoming {
    background: var(--primary-red);
    color: var(--white);
}

.status-completed {
    background: #1a7a4c;
    color: var(--white);
}

.project-body {
    padding: 1.5rem;
}

    .project-body h4 {
        font-size: 1.3rem;
        margin-bottom: 0.3rem;
    }

.project-loc {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 1rem;
}

.project-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.project-meta-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
}

    .project-meta-row span:first-child {
        color: var(--text-muted);
    }

    .project-meta-row span:last-child {
        font-weight: 600;
        color: var(--dark-red);
    }

.project-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f0e9d6;
}

    .project-price-row .price {
        font-family: var(--font-heading);
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--primary-red);
    }

        .project-price-row .price small {
            font-size: 0.78rem;
            color: var(--text-muted);
            font-weight: 400;
            display: block;
        }

/* ----------------------- Agent Cards ----------------------- */
.agent-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #ece5d3;
    transition: var(--transition);
    height: 100%;
    text-align: center;
}

    .agent-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: var(--gold);
    }

.agent-img-wrap {
    position: relative;
    height: 320px;
    overflow: hidden;
}

    .agent-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.agent-card:hover .agent-img-wrap img {
    transform: scale(1.08);
}

.agent-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(23,7,7,0.85));
    transform: translateY(100%);
    transition: var(--transition);
}

.agent-card:hover .agent-social {
    transform: translateY(0);
}

.agent-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}

    .agent-social a:hover {
        background: var(--white);
        color: var(--primary-red);
    }

.agent-body {
    padding: 1.5rem;
}

    .agent-body h4 {
        font-size: 1.25rem;
        margin-bottom: 0.2rem;
    }

.agent-role {
    color: var(--gold);
    font-size: 0.88rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.agent-meta {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

    .agent-meta div {
        margin-bottom: 0.3rem;
    }

    .agent-meta i {
        color: var(--gold);
        width: 16px;
    }

/* ----------------------- Testimonial Cards ----------------------- */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid #ece5d3;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

    .testimonial-card:hover {
        box-shadow: var(--shadow-md);
        border-color: var(--gold);
        transform: translateY(-5px);
    }

.testimonial-quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    color: rgba(201,162,39,0.18);
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

    .testimonial-author img {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid var(--gold);
    }

    .testimonial-author h6 {
        margin: 0;
        font-size: 1.05rem;
        color: var(--dark-red);
    }

    .testimonial-author span {
        font-size: 0.82rem;
        color: var(--text-muted);
    }

/* ----------------------- Blog Cards ----------------------- */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid #ece5d3;
    transition: var(--transition);
    height: 100%;
}

    .blog-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-lg);
        border-color: var(--gold);
    }

.blog-img-wrap {
    position: relative;
    overflow: hidden;
    height: 220px;
}

    .blog-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.blog-card:hover .blog-img-wrap img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-red);
    color: var(--white);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.blog-body {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

    .blog-meta i {
        color: var(--gold);
    }

.blog-body h4 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
}

    .blog-body h4 a {
        color: var(--dark-red);
    }

        .blog-body h4 a:hover {
            color: var(--gold);
        }

.blog-body p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 1rem;
}

.blog-read-more {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.88rem;
}

    .blog-read-more:hover {
        color: var(--primary-red);
    }

/* ----------------------- Service Cards ----------------------- */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.75rem;
    border: 1px solid #ece5d3;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .service-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 0;
        background: linear-gradient(to top, rgba(201,162,39,0.06), transparent);
        transition: var(--transition);
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--shadow-md);
        border-color: var(--gold);
    }

        .service-card:hover::after {
            height: 100%;
        }

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotate(-8deg) scale(1.05);
}

.service-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
}

/* ----------------------- Stats ----------------------- */
.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255,255,255,0.85);
    font-size: 0.92rem;
    letter-spacing: 1px;
}

.stats-dark {
    background: linear-gradient(135deg, var(--dark), var(--dark-red));
}

/* ----------------------- CTA Section ----------------------- */
.cta-section {
    position: relative;
    padding: 5rem 0;
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(122,12,12,0.92), rgba(23,7,7,0.88));
}

.cta-content {
    position: relative;
    z-index: 2;
}

    .cta-content h2 {
        color: var(--white);
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        margin-bottom: 1rem;
    }

    .cta-content p {
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto 2rem;
        opacity: 0.95;
    }

/* ----------------------- Forms ----------------------- */
.form-luxury label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark-red);
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.form-luxury .form-control, .form-luxury .form-select {
    border: 1px solid #e0d9c5;
    border-radius: 8px;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    background: var(--light-bg);
    transition: var(--transition);
}

    .form-luxury .form-control:focus, .form-luxury .form-select:focus {
        border-color: var(--gold);
        box-shadow: 0 0 0 3px rgba(201,162,39,0.15);
        background: var(--white);
    }

.form-luxury textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.form-error {
    color: var(--primary-red);
    font-size: 0.8rem;
    margin-top: 0.3rem;
    display: none;
}

    .form-error.show {
        display: block;
    }

.form-control.invalid, .form-select.invalid {
    border-color: var(--primary-red);
}

/* ----------------------- Filter Panel ----------------------- */
.filter-panel {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

    .filter-panel label {
        font-size: 0.78rem;
        font-weight: 600;
        color: var(--dark-red);
        letter-spacing: 0.5px;
        margin-bottom: 0.3rem;
        text-transform: uppercase;
    }

/* ----------------------- Timeline ----------------------- */
.timeline {
    position: relative;
    padding: 1rem 0;
}

    .timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 3px;
        background: linear-gradient(var(--gold), var(--light-gold));
        transform: translateX(-50%);
    }

.timeline-item {
    position: relative;
    width: 50%;
    padding: 1.5rem 2.5rem;
}

    .timeline-item:nth-child(odd) {
        left: 0;
        text-align: right;
    }

    .timeline-item:nth-child(even) {
        left: 50%;
        text-align: left;
    }

.timeline-dot {
    position: absolute;
    top: 2rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--gold);
    border: 4px solid var(--white);
    box-shadow: 0 0 0 3px var(--gold);
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -9px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -9px;
}

.timeline-content {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid #ece5d3;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

    .timeline-content:hover {
        border-color: var(--gold);
        box-shadow: var(--shadow-md);
    }

.timeline-year {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.timeline-content h5 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

@media (max-width: 767px) {
    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        text-align: left !important;
        padding-left: 3rem;
        padding-right: 0;
    }

        .timeline-item .timeline-dot {
            left: 11px !important;
            right: auto !important;
        }
}

/* ----------------------- Accordion (FAQ) ----------------------- */
.accordion-luxury .accordion-item {
    border: 1px solid #ece5d3 !important;
    border-radius: var(--radius) !important;
    margin-bottom: 1rem;
    overflow: hidden;
    background: var(--white);
}

.accordion-luxury .accordion-button {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--dark-red) !important;
    font-size: 1.05rem;
    padding: 1.25rem 1.5rem;
    background: var(--light-bg) !important;
}

    .accordion-luxury .accordion-button:not(.collapsed) {
        background: linear-gradient(135deg, var(--dark-red), var(--primary-red)) !important;
        color: var(--white) !important;
        box-shadow: none !important;
    }

    .accordion-luxury .accordion-button:focus {
        box-shadow: 0 0 0 3px rgba(201,162,39,0.2) !important;
        border-color: var(--gold) !important;
    }

    .accordion-luxury .accordion-button::after {
        filter: brightness(0) saturate(100%) invert(41%) sepia(60%) saturate(2400%) hue-rotate(340deg);
    }

    .accordion-luxury .accordion-button:not(.collapsed)::after {
        filter: brightness(0) invert(1);
    }

.accordion-luxury .accordion-body {
    padding: 1.5rem;
    color: var(--text-color);
    font-size: 0.95rem;
}

/* ----------------------- Pagination ----------------------- */
.pagination-luxury {
    gap: 0.4rem;
    justify-content: center;
    margin-top: 3rem;
}

    .pagination-luxury .page-link {
        border: 1px solid #e0d9c5;
        color: var(--dark-red);
        border-radius: 8px !important;
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        background: var(--white);
    }

        .pagination-luxury .page-link:hover, .pagination-luxury .active .page-link {
            background: linear-gradient(135deg, var(--gold), var(--light-gold));
            color: var(--dark);
            border-color: var(--gold);
        }

/* ----------------------- Footer ----------------------- */
.footer {
    background: linear-gradient(135deg, var(--dark), var(--dark-red));
    color: rgba(255,255,255,0.8);
    padding-top: 4rem;
    position: relative;
}

.footer-top {
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(201,162,39,0.2);
}

.footer h5 {
    color: var(--gold);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: var(--font-body);
    font-weight: 600;
}

.footer .footer-brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .footer .footer-brand i {
        color: var(--gold);
    }

    .footer .footer-brand span {
        color: var(--gold);
    }

.footer p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .footer-links a::before {
        content: '\f105';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        color: var(--gold);
        font-size: 0.8rem;
    }

    .footer-links a:hover {
        color: var(--gold);
        padding-left: 5px;
    }

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    font-size: 0.9rem;
}

    .footer-contact-item i {
        color: var(--gold);
        margin-top: 4px;
    }

.footer-social {
    display: flex;
    gap: 0.6rem;
    margin-top: 1.25rem;
}

    .footer-social a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(201,162,39,0.15);
        border: 1px solid var(--border-color);
        color: var(--gold);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1rem;
    }

        .footer-social a:hover {
            background: var(--gold);
            color: var(--dark);
            transform: translateY(-3px);
            border-color: var(--gold);
        }

.footer-bottom {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

    .footer-bottom a {
        color: var(--gold);
    }

/* ----------------------- Back to top ----------------------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--light-gold));
    color: var(--dark);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

    .back-to-top.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top:hover {
        transform: translateY(-5px);
    }

/* ----------------------- Preloader ----------------------- */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.5s, visibility 0.5s;
}

    .preloader.hidden {
        opacity: 0;
        visibility: hidden;
    }

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(201,162,39,0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ----------------------- Toast ----------------------- */
.toast-container {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 1100;
}

.toast-luxury {
    background: linear-gradient(135deg, var(--dark-red), var(--primary-red));
    color: var(--white);
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    min-width: 320px;
    box-shadow: var(--shadow-lg);
}

    .toast-luxury .toast-body {
        padding: 1rem 1.25rem;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

        .toast-luxury .toast-body i {
            color: var(--gold);
            font-size: 1.4rem;
        }

/* ----------------------- Animations / Reveal ----------------------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.fade-in {
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-up {
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.float {
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ----------------------- Property Details ----------------------- */
.gallery-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 460px;
    background: var(--dark);
}

    .gallery-main img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.gallery-thumbs {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.gallery-thumb {
    width: 110px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

    .gallery-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .gallery-thumb.active, .gallery-thumb:hover {
        border-color: var(--gold);
    }

.detail-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 1px solid #ece5d3;
    box-shadow: var(--shadow-sm);
}

.detail-price {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-red);
}

.detail-spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.detail-spec-item {
    text-align: center;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: var(--radius);
    border: 1px solid #ece5d3;
}

    .detail-spec-item i {
        color: var(--gold);
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
    }

    .detail-spec-item strong {
        display: block;
        font-size: 1.1rem;
        color: var(--dark-red);
    }

    .detail-spec-item span {
        font-size: 0.8rem;
        color: var(--text-muted);
    }

.amenity-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

    .amenity-list li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.92rem;
    }

    .amenity-list i {
        color: var(--gold);
    }

@media (max-width: 575px) {
    .amenity-list {
        grid-template-columns: 1fr;
    }
}

.map-placeholder {
    height: 320px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    border: 1px solid var(--border-color);
}

    .map-placeholder i {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

/* ----------------------- Agent Details ----------------------- */
.agent-detail-header {
    background: linear-gradient(135deg, var(--dark), var(--dark-red));
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    color: var(--white);
}

.agent-detail-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--gold);
    margin: 0 auto;
}

.agent-detail-name {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--white);
    margin-top: 1rem;
}

.agent-detail-role {
    color: var(--light-gold);
    margin-bottom: 1rem;
}

/* ----------------------- Blog Details ----------------------- */
.blog-article {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--text-color);
}

    .blog-article h2, .blog-article h3 {
        margin: 2rem 0 1rem;
    }

    .blog-article p {
        margin-bottom: 1.25rem;
    }

    .blog-article img {
        border-radius: var(--radius);
        margin: 1.5rem 0;
    }

    .blog-article blockquote {
        border-left: 4px solid var(--gold);
        padding: 1.5rem 2rem;
        margin: 2rem 0;
        background: var(--light-bg);
        border-radius: 0 var(--radius) var(--radius) 0;
        font-style: italic;
        color: var(--dark-red);
        font-size: 1.1rem;
    }

.blog-share {
    display: flex;
    gap: 0.6rem;
    align-items: center;
}

    .blog-share a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--light-bg);
        border: 1px solid #ece5d3;
        color: var(--dark-red);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .blog-share a:hover {
            background: var(--primary-red);
            color: var(--white);
            border-color: var(--primary-red);
        }

/* ----------------------- Misc ----------------------- */
.view-toggle {
    display: inline-flex;
    border: 1px solid #e0d9c5;
    border-radius: 8px;
    overflow: hidden;
}

    .view-toggle button {
        background: var(--white);
        border: none;
        padding: 0.55rem 0.9rem;
        color: var(--text-muted);
        cursor: pointer;
        transition: var(--transition);
    }

        .view-toggle button.active {
            background: var(--gold);
            color: var(--dark);
        }

.sort-select {
    border: 1px solid #e0d9c5;
    border-radius: 8px;
    padding: 0.55rem 1rem;
    font-size: 0.9rem;
    background: var(--white);
    color: var(--text-color);
}

    .sort-select:focus {
        border-color: var(--gold);
        outline: none;
    }

.video-testimonial {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 280px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

    .video-testimonial::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(23,7,7,0.6), rgba(122,12,12,0.5));
    }

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 2;
    transition: var(--transition);
}

.video-testimonial:hover .video-play-btn {
    transform: translate(-50%,-50%) scale(1.15);
    background: var(--white);
}

.video-testimonial .vt-info {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    z-index: 2;
    color: var(--white);
}

    .video-testimonial .vt-info h6 {
        color: var(--white);
        margin: 0;
    }

    .video-testimonial .vt-info span {
        font-size: 0.85rem;
        color: var(--light-gold);
    }

.no-results {
    text-align: center;
    padding: 3rem;
    color: var(--text-muted);
    grid-column: 1 / -1;
}

    .no-results i {
        font-size: 3rem;
        color: var(--gold);
        margin-bottom: 1rem;
    }

/* ----------------------- Responsive tweaks ----------------------- */
@media (max-width: 991px) {
    section {
        padding: 3.5rem 0;
    }

    .hero {
        min-height: 90vh;
    }
}

@media (max-width: 575px) {
    .section-title {
        font-size: 1.7rem;
    }

    .property-specs {
        justify-content: space-around;
    }

    .toast-container {
        left: 10px;
        right: 10px;
    }

    .toast-luxury {
        min-width: auto;
        width: 100%;
    }
}
/* =========================================================
   FLOATING WHATSAPP + CALL BUTTONS
========================================================= */

.floating-contact {
    position: fixed;
    left: 22px;
    bottom: 25px;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    gap: 12px;
}


/* Individual button */

.floating-btn {
    position: relative;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    color: #ffffff;
    font-size: 22px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transition: transform .3s ease, box-shadow .3s ease;
}


/* WhatsApp */

.floating-whatsapp {
    background: #25D366;
}

    .floating-whatsapp:hover {
        color: #ffffff;
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
    }


/* Call */

.floating-call {
    background: linear-gradient( 135deg, #e5bd58, #b88624 );
}

    .floating-call:hover {
        color: #ffffff;
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 12px 30px rgba(212, 166, 64, 0.38);
    }


/* =========================================================
   TOOLTIP
========================================================= */

.floating-tooltip {
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%) translateX(-5px);
    padding: 7px 11px;
    border-radius: 7px;
    background: #0b1220;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .25s ease;
}

    .floating-tooltip::before {
        content: "";
        position: absolute;
        left: -5px;
        top: 50%;
        width: 10px;
        height: 10px;
        background: #0b1220;
        transform: translateY(-50%) rotate(45deg);
    }


.floating-btn:hover .floating-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .floating-contact {
        left: 14px;
        bottom: 18px;
        gap: 9px;
    }

    .floating-btn {
        width: 46px;
        height: 46px;
        font-size: 19px;
    }

    /* Tooltip mobile par hide */
    .floating-tooltip {
        display: none;
    }
}
.testimonial-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.testimonial-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #d8c7a0;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .testimonial-dot.active {
        width: 28px;
        border-radius: 20px;
        background: #b08a45;
    }

    .testimonial-dot:hover {
        background: #b08a45;
    }
/* ================================
   TESTIMONIAL SLIDER
================================ */

.testimonial-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    width: 100%;
    animation: testimonialFade 0.5s ease;
}

    .testimonial-slide.active {
        display: block;
    }

@keyframes testimonialFade {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ================================
   TESTIMONIAL PAGINATION
================================ */

.testimonial-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 35px;
}

.testimonial-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: #d6c49a;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .testimonial-dot:hover {
        transform: scale(1.2);
    }

    .testimonial-dot.active {
        width: 28px;
        border-radius: 20px;
        background: #b08a45;
    }
.service-card {
    position: relative;
}

    .service-card .blog-read-more {
        position: relative;
        z-index: 10;
        pointer-events: auto;
    }









.navbar-brand-custom p {
    margin: 0;
    line-height: 1.1;
}

    .navbar-brand-custom p small {
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .footer-brand > i {
        font-size: 32px;
    }

    .footer-brand p {
        margin: 0;
        line-height: 1.15;
        font-weight: 700;
    }

        .footer-brand p small {
            display: inline-block;
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-top: 3px;
        }