@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    --primary-color: #0B1930;
    --primary-light: #152E54;
    --primary-dark: #050D1A;
    --accent-color: #C5A880;
    --accent-hover: #B59870;
    --accent-light: rgba(197, 168, 128, 0.08);
    --text-dark: #1F242D;
    --text-muted: #6D7787;
    --bg-light: #FAF9F5;
    --bg-accent: #F4F2EB;
    --border-color: #EAE6DB;
    --card-shadow: 0 12px 30px -5px rgba(11, 25, 48, 0.03), 0 8px 15px -6px rgba(11, 25, 48, 0.02);
    --card-shadow-hover: 0 25px 35px -5px rgba(197, 168, 128, 0.06), 0 12px 18px -5px rgba(11, 25, 48, 0.03);
    --border-radius-lg: 20px;
    --border-radius-md: 14px;
    --border-radius-sm: 8px;
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Global Page Entry Animation */
main {
    animation: mainFadeIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

@keyframes mainFadeIn {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Reveal Animations */
.reveal-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.reveal-fade-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Premium Styling Enhancements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--primary-color) !important;
}

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

.bg-navy {
    background-color: var(--primary-color) !important;
}

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

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

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

main {
    margin-top: 0 !important;
}

/* Sleek Buttons */
.btn-navy {
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
    border: none;
}

.btn-navy:hover {
    background-color: var(--primary-light);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(10, 37, 64, 0.2);
}

.btn-navy-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    padding: 10px 24px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
}

.btn-navy-outline:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--accent-color);
    color: #ffffff;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    transition: var(--transition-smooth);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-accent:hover {
    background-color: var(--accent-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

/* Reduced height of sections */
.section-padding {
    padding: 50px 0;
}

.section-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.section-subtitle::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 2px;
    background-color: var(--accent-color);
}

.section-title {
    font-size: 2.1rem;
    margin-bottom: 25px;
    line-height: 1.25;
}

/* Glassmorphic Navbar on Scroll */
.navbar {
    background-color: rgba(5, 19, 41, 0.96);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 18px 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar.navbar-scrolled {
    background-color: rgba(5, 19, 41, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar-logo {
    height: 42px;
    width: auto;
    transition: var(--transition-smooth);
    filter: brightness(0) invert(1);
}

.navbar.navbar-scrolled .navbar-logo {
    height: 36px;
}

.nav-link {
    color: rgba(255, 255, 255, 0.88) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 18px !important;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 18px;
    right: 18px;
    height: 2px;
    background-color: #d4af37;
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:hover, .nav-link.active {
    color: #d4af37 !important;
}

@media (min-width: 992px) {
    .nav-item.dropdown:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}


.dropdown-menu {
    background-color: #0A2540;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border-radius: var(--border-radius-md);
    padding: 10px;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    display: none;
}

.dropdown-item {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    transition: var(--transition-smooth);
    border-radius: var(--border-radius-sm);
}

.dropdown-item:hover, .dropdown-item.active {
    background-color: rgba(255, 255, 255, 0.08);
    color: #d4af37 !important;
}

/* About Section */
.about-img-box {
    position: relative;
}

.about-img-main {
    border-radius: var(--border-radius-md);
    box-shadow: var(--card-shadow);
    width: 90%;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: 10%;
    background-color: var(--accent-color);
    color: #ffffff;
    padding: 16px 24px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 10px 25px rgba(0, 102, 255, 0.3);
    text-align: center;
}

.about-badge h4 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 0;
    font-weight: 800;
}

.about-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-list {
    list-style: none;
    padding-left: 0;
}

.about-list li {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
}

.about-list li i {
    color: var(--accent-color);
    font-size: 1.15rem;
}

/* Infinite Logo Marquee Slider */
@keyframes logoMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    padding: 18px 0;
    position: relative;
    background-color: #ffffff;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.marquee-title {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.marquee-track {
    display: inline-flex;
    gap: 30px;
    animation: logoMarquee 28s linear infinite;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.builder-logo-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 10px 24px;
    min-width: 150px;
    height: 44px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.builder-logo-item i {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-right: 6px;
}

.builder-logo-item:hover {
    color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 102, 255, 0.15);
}

/* Customer Trustable Section */
.trustable-section {
    background-color: var(--bg-light);
}

.trustable-score-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    height: 100%;
}

.trustable-rating {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.trustable-stars {
    color: #FFB800;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.trust-item-card {
    background-color: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 24px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    gap: 16px;
}

.trust-item-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(0, 102, 255, 0.2);
}

.trust-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--accent-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.trust-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.trust-card-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Hero Section with Zoom Effect (Ken Burns) */
.hero-slider-item {
    height: 720px;
    position: relative;
    overflow: hidden;
}

.hero-slider-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(5, 19, 41, 0.2) 0%, rgba(5, 19, 41, 0.88) 100%), 
                linear-gradient(to right, rgba(5, 19, 41, 0.65) 0%, transparent 60%);
    z-index: 2;
}

@keyframes heroZoomInOut {
    0% {
        transform: scale(1.03);
    }
    50% {
        transform: scale(1.14);
    }
    100% {
        transform: scale(1.03);
    }
}

.hero-bg-zoom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    z-index: 1;
    will-change: transform;
}

.carousel-item.active .hero-bg-zoom {
    animation: heroZoomInOut 18s ease-in-out infinite;
}

/* Staggered text animations for active hero slides */
.carousel-item .hero-content > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-item.active .hero-content > * {
    opacity: 1;
    transform: translateY(0);
}

.carousel-item.active .hero-content .hero-badge {
    transition-delay: 0.25s;
}

.carousel-item.active .hero-content h1 {
    transition-delay: 0.45s;
}

.carousel-item.active .hero-content p {
    transition-delay: 0.65s;
}

.carousel-item.active .hero-content .btn {
    transition-delay: 0.85s;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding-top: 190px;
}

.hero-content .hero-badge {
    background-color: rgba(212, 175, 55, 0.08);
    color: var(--accent-color);
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.78rem;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 3.85rem;
    line-height: 1.12;
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 22px;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.5px;
}

.hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 35px;
    font-weight: 400;
    line-height: 1.6;
}

.carousel-control-prev, .carousel-control-next {
    width: 52px;
    height: 52px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 5;
    backdrop-filter: blur(6px);
}

.carousel-control-prev { left: 40px; }
.carousel-control-next { right: 40px; }

.carousel-control-prev:hover, .carousel-control-next:hover {
    background-color: var(--accent-color);
    opacity: 1;
    border-color: var(--accent-color);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.45);
    color: #ffffff;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.35);
    margin: 0 6px;
    border: none;
    transition: var(--transition-smooth);
}

.carousel-indicators .active {
    width: 28px;
    border-radius: 5px;
    background-color: var(--accent-color);
}

@media (max-width: 768px) {
    .hero-slider-item {
        height: 520px;
    }
    
    .hero-content {
        padding-top: 130px;
    }
    
    .hero-content h1 {
        font-size: 2.3rem;
    }
    
    .hero-content p {
        font-size: 0.98rem;
        margin-bottom: 25px;
    }
    
    .carousel-control-prev, .carousel-control-next {
        display: none; /* Hide arrows on mobile for clean screen spacing */
    }
}

/* Search widget wrapper */
.search-widget-container {
    margin-top: -75px;
    position: relative;
    z-index: 10;
}

.search-widget-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    padding: 30px;
    border: 1px solid var(--border-color);
}

.search-tabs {
    border-bottom: 1px solid var(--border-color);
}

.search-tabs .nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted) !important;
    padding: 12px 28px !important;
    border: none;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    transition: var(--transition-smooth);
}

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

.search-tabs .nav-link.active {
    color: var(--accent-color) !important;
    border-bottom: 3px solid var(--accent-color);
    background-color: transparent !important;
}

.search-form-group {
    position: relative;
}

.search-form-group label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: block;
    letter-spacing: 0.8px;
}

.search-input-wrapper {
    position: relative;
}

.search-input-wrapper i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.15rem;
}

.search-form-control {
    width: 100%;
    padding: 13px 16px 13px 44px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: var(--bg-light);
    outline: none;
    transition: var(--transition-smooth);
}

.search-form-control:focus {
    border-color: var(--accent-color);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.08);
}

.search-select-control {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: var(--bg-light);
    outline: none;
    transition: var(--transition-smooth);
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2364748B' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 12px;
}

.search-select-control:focus {
    border-color: var(--accent-color);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.08);
}

.btn-search-properties {
    background-color: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
    padding: 12px;
    width: 100%;
    border-radius: var(--border-radius-sm);
    border: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 52px;
    margin-top: 24px;
}

.btn-search-properties:hover {
    background-color: var(--primary-light);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(10, 37, 64, 0.2);
}

/* Category filter buttons */
.category-filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.btn-filter-category {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 24px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.btn-filter-category i {
    font-size: 1.1rem;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.btn-filter-category:hover {
    background-color: var(--bg-accent);
    color: var(--primary-color);
    border-color: var(--text-muted);
}

.btn-filter-category.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

.btn-filter-category.active i {
    color: #ffffff;
}

/* Grid layout options and Sorting header */
.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.catalog-header .sort-select {
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
    outline: none;
}

.view-toggle-btns {
    display: flex;
    gap: 8px;
}

.btn-view-toggle {
    background: transparent;
    border: 1px solid var(--border-color);
    width: 38px;
    height: 38px;
    border-radius: var(--border-radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition-smooth);
}

.btn-view-toggle:hover, .btn-view-toggle.active {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background-color: var(--accent-light);
}

/* Property Card Design */
.property-card {
    background-color: #ffffff;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: var(--card-shadow);
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(0, 102, 255, 0.25);
}

.property-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background-color: #eaeaea;
}

.property-img-link {
    display: block;
    width: 100%;
    height: 100%;
}

.property-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.property-card:hover .property-img-wrapper img {
    transform: scale(1.08);
}

.property-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 4px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-sale {
    background-color: #10B981;
    color: #ffffff;
}

.badge-rent {
    background-color: var(--accent-color);
    color: #ffffff;
}

.badge-launch {
    background-color: var(--accent-color);
    color: #ffffff;
}

.btn-wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.85);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    z-index: 2;
    backdrop-filter: blur(4px);
}

.btn-wishlist:hover {
    background-color: #ffffff;
    color: #EF4444;
    transform: scale(1.1);
}

.property-info {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.property-location {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

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

.property-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
    transition: var(--transition-smooth);
}

.property-title a {
    color: var(--primary-color);
    text-decoration: none;
}

.property-title a:hover {
    color: var(--accent-color);
}

.property-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 12px;
}

.property-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
    margin-top: auto;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 500;
}

.feature-item i {
    font-size: 0.95rem;
    color: var(--accent-color);
}

/* Section Slider Navigation */
.section-header-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.slider-nav-btns {
    display: flex;
    gap: 10px;
}

.btn-slider-nav {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    background-color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-slider-nav:hover {
    background-color: var(--accent-color);
    color: #ffffff;
    border-color: var(--accent-color);
    box-shadow: 0 4px 10px rgba(0, 102, 255, 0.2);
}

/* Affordable Homes Section styles */
.affordable-card {
    background-color: #ffffff;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: var(--card-shadow);
    height: 100%;
}

.affordable-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(0, 102, 255, 0.25);
}

.affordable-img-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #eaeaea;
    aspect-ratio: 4/3;
}

.affordable-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.affordable-card:hover .affordable-img-wrapper img {
    transform: scale(1.08);
}

.affordable-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.affordable-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 768px) {
    .affordable-img-wrapper {
        width: 220px;
        aspect-ratio: auto;
        height: 100%;
        flex-shrink: 0;
    }
}

/* Explore Top Cities */
.city-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    height: 380px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.city-card::after {
    content: '';
    position: absolute;
    inset: 15px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: calc(var(--border-radius-lg) - 5px);
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    transform: scale(0.96);
    transition: var(--transition-smooth);
}

.city-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(10, 37, 64, 0.15);
}

.city-card:hover::after {
    opacity: 1;
    transform: scale(1);
    border-color: var(--accent-color);
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.city-card:hover img {
    transform: scale(1.08);
}

.city-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(5, 19, 41, 0.15) 30%, rgba(5, 19, 41, 0.88) 100%);
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #ffffff;
    z-index: 1;
    transition: var(--transition-smooth);
}

.city-name {
    font-size: 1.45rem;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 4px;
    font-family: 'Outfit', sans-serif;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.city-card:hover .city-name {
    color: var(--accent-color) !important;
    transform: translateY(-2px);
}

.city-count {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-smooth);
}

.city-count::after {
    content: ' →';
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--transition-smooth);
    display: inline-block;
}

.city-card:hover .city-count {
    color: #ffffff;
}

.city-card:hover .city-count::after {
    opacity: 1;
    transform: translateX(0);
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .city-card {
        height: 260px;
    }
    .city-name {
        font-size: 1.2rem;
    }
}

/* Why Choose Us Section */
.feature-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 102, 255, 0.25);
    box-shadow: var(--card-shadow-hover);
}

.feature-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--accent-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.7rem;
    margin-bottom: 22px;
}

.feature-card h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.55;
}

/* Testimonials */
.testimonials-section {
    background-color: var(--bg-light);
}

.testimonial-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.015);
    height: 100%;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: rgba(0, 102, 255, 0.15);
    box-shadow: var(--card-shadow);
}

.star-rating {
    color: #FFB800;
    font-size: 0.95rem;
    margin-bottom: 18px;
}

.testimonial-text {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    font-size: 0.98rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.author-location {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* CTA Banner (Redesigned with Left Image, Right Content) */
.cta-premium-box {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.cta-premium-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}

/* Property Reels with click pointer */
.reel-card {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 9/16;
    max-height: 330px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    cursor: pointer;
}

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

.reel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.reel-card:hover img {
    transform: scale(1.08);
}

.reel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.3) 100%);
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1;
}

.reel-top {
    display: flex;
    justify-content: space-between;
    color: #ffffff;
    font-size: 0.9rem;
}

.reel-icon {
    font-size: 1.15rem;
}

.reel-duration {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 500;
}

.reel-play-btn {
    align-self: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.15rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: var(--transition-smooth);
    border: none;
    margin-top: 45px;
}

.reel-card:hover .reel-play-btn {
    background-color: var(--accent-color);
    color: #ffffff;
    transform: scale(1.1);
}

.reel-title {
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.4;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

/* Real Estate Insights (Blogs) */
.blog-card {
    background-color: #ffffff;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(0, 102, 255, 0.25);
}

.blog-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.blog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-wrapper img {
    transform: scale(1.08);
}

.blog-info {
    padding: 22px;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    font-weight: 600;
}

.blog-meta .blog-date {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-category {
    background-color: var(--accent-light);
    color: var(--accent-color);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-weight: 700;
}

.blog-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.blog-title a:hover {
    color: var(--accent-color);
}

.btn-read-more {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.btn-read-more:hover {
    color: var(--accent-hover);
}

.btn-read-more:hover i {
    transform: translateX(4px);
}

.btn-read-more i {
    transition: var(--transition-smooth);
}

/* Footer Section */
.footer-top {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 60px;
    padding-bottom: 50px;
}

.footer-logo {
    font-weight: 800;
    font-size: 1.65rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    text-decoration: none;
}

.footer-logo i {
    color: var(--accent-color);
    font-size: 2rem;
}

.footer-logo span {
    font-size: 0.75rem;
    font-weight: 500;
    display: block;
    color: rgba(255, 255, 255, 0.6);
    margin-top: -5px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 28px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.btn-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-social:hover {
    background-color: var(--accent-color);
    color: #ffffff;
    border-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 102, 255, 0.25);
}

.footer-widget-title {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 22px;
    position: relative;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

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

.newsletter-form-group {
    position: relative;
    display: flex;
}

.newsletter-input {
    width: 100%;
    padding: 13px 50px 13px 18px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-sm);
    color: #ffffff;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
}

.btn-newsletter-submit {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    width: 44px;
    border-radius: 6px;
    background-color: var(--accent-color);
    color: #ffffff;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.btn-newsletter-submit:hover {
    background-color: var(--accent-hover);
}

.footer-bottom {
    padding: 22px 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    gap: 18px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* ==========================================================================
   MOBILE RESPONSIVENESS OVERRIDES
   ========================================================================== */

@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #ffffff;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
        border-radius: var(--border-radius-md);
        padding: 20px;
        margin-top: 15px;
        border: 1px solid var(--border-color);
    }
    
    .nav-link {
        padding: 10px 0 !important;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .navbar-nav .btn-navy {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }

    .hero-slider-item {
        height: 520px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .carousel-control-prev { left: 15px; }
    .carousel-control-next { right: 15px; }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 30px 0; /* Compact sections height on mobile */
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 18px;
    }

    .hero-slider-item {
        height: 460px;
    }
    
    .hero-content {
        padding-top: 80px;
    }

    .hero-content h1 {
        font-size: 2.1rem;
    }

    .search-widget-container {
        margin-top: -45px;
    }

    .search-widget-card {
        padding: 20px;
    }
    
    .btn-search-properties {
        margin-top: 10px;
    }
    
    .category-filter-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        margin-bottom: 20px;
        scrollbar-width: none;
    }
    
    .category-filter-container::-webkit-scrollbar {
        display: none;
    }
    
    .btn-filter-category {
        white-space: nowrap;
        padding: 8px 16px;
    }

    .cta-premium-img {
        min-height: 200px;
        max-height: 250px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
}

/* CRITICAL MOBILE SPECIFIC GRID: 2 properties side by side just like an app */
@media (max-width: 575.98px) {
    .property-grid-mobile-2col {
        display: flex;
        flex-wrap: wrap;
        margin-right: -6px;
        margin-left: -6px;
    }
    
    .property-grid-mobile-2col > * {
        flex: 0 0 50%;
        max-width: 50%;
        padding-right: 6px;
        padding-left: 6px;
        margin-bottom: 12px;
    }

    .property-card {
        border-radius: var(--border-radius-sm);
    }
    
    .property-img-wrapper {
        aspect-ratio: 1.25/1;
    }

    .property-badge {
        top: 6px;
        left: 6px;
        font-size: 0.62rem;
        padding: 3px 7px;
        border-radius: 2px;
    }
    
    .btn-wishlist {
        top: 6px;
        right: 6px;
        width: 26px;
        height: 26px;
        font-size: 0.78rem;
    }

    .property-info {
        padding: 8px;
    }

    .property-location {
        font-size: 0.65rem;
        margin-bottom: 3px;
        gap: 2px;
    }
    
    .property-location i {
        font-size: 0.72rem;
    }

    .property-title {
        font-size: 0.82rem;
        font-weight: 700;
        margin-bottom: 4px;
        line-height: 1.35;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .property-price {
        font-size: 0.88rem;
        font-weight: 800;
        margin-bottom: 6px;
    }

    .property-features {
        padding-top: 6px;
        margin-top: auto;
        font-size: 0.65rem;
        gap: 2px;
        flex-wrap: wrap;
        border-top: 1px solid var(--border-color);
    }

    .feature-item {
        gap: 2px;
    }
    
    .feature-item i {
        font-size: 0.72rem;
    }
    
    .feature-item-label {
        display: none;
    }

    /* Cities Section in Mobile - 2 per row */
    .city-grid-mobile-2col {
        display: flex;
        flex-wrap: wrap;
        margin-right: -6px;
        margin-left: -6px;
    }
    
    .city-grid-mobile-2col > * {
        flex: 0 0 50%;
        max-width: 50%;
        padding-right: 6px;
        padding-left: 6px;
        margin-bottom: 12px;
    }
    
    .city-card {
        height: 115px;
    }
    
    .city-overlay {
        padding: 10px;
    }
    
    .city-name {
        font-size: 1rem;
    }
    
    .city-count {
        font-size: 0.68rem;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 0.88rem;
        margin-bottom: 18px;
    }

    /* Reels Section in Mobile */
    .reels-grid-mobile {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 12px;
        padding-bottom: 15px;
        scrollbar-width: none;
    }
    
    .reels-grid-mobile::-webkit-scrollbar {
        display: none;
    }
    
    .reels-grid-mobile > * {
        flex: 0 0 135px;
        max-width: 135px;
    }
    
    .reel-card {
        max-height: 210px;
    }
    
    .reel-play-btn {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
        margin-top: 22px;
    }
    
    .reel-title {
        font-size: 0.72rem;
    }

    .marquee-track {
        gap: 15px;
    }
    .builder-logo-item {
        min-width: 120px;
        font-size: 0.8rem;
        padding: 6px 14px;
    }
}

/* Fix header alignment under fixed navbar on all subpages */
.about-header,
.contact-header,
.blogs-header,
.blog-details-header {
    padding-top: 130px !important;
    padding-bottom: 60px !important;
}

.properties-header {
    padding-top: 110px !important;
    padding-bottom: 30px !important;
}

.property-details-header {
    padding-top: 110px !important;
    padding-bottom: 20px !important;
}

/* Animated Moving Icons */
.feature-item i,
.contact-info-icon i,
.spec-icon i,
.feature-item-pill i,
.trust-icon-box i,
.about-list li i,
.footer-logo i,
.floating-buttons-container i,
.service-card-icon i,
.property-features i {
    animation: iconFloat 2.5s ease-in-out infinite;
    display: inline-block;
}

@keyframes iconFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

/* Navbar Collapse & Menu Visibility Enhancements on Mobile */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #051329 !important; /* Solid dark navy background on mobile menu */
        padding: 15px;
        border-radius: var(--border-radius-md);
        margin-top: 10px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    }
}

/* Footer text and link contrast improvements */
footer, 
footer.bg-navy-dark, 
footer p, 
footer span, 
footer .text-muted,
.footer-desc,
.footer-links a,
.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.9) !important; /* High-contrast white/grey text */
}

footer a:hover,
.footer-links a:hover,
.footer-bottom-links a:hover {
    color: rgb(212, 175, 55) !important; /* Gold on hover */
    padding-left: 3px;
}

footer h4,
footer .footer-widget-title {
    color: rgb(212, 175, 55) !important; /* Gold titles in footer */
    font-weight: 700;
}

/* ==========================================
   Premium Design Redesigns
   ========================================== */

/* 1. Why Choose Vision Infraventure Group Redesign */
.why-choose-premium-section {
    background-color: var(--bg-light);
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.section-desc-premium {
    max-width: 600px;
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.feature-card-premium {
    background: #ffffff;
    padding: 30px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    position: relative;
    height: 100%;
}

.feature-card-premium:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.08);
}

.feature-icon-wrapper-premium {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background-color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
    box-shadow: 0 8px 16px rgba(10, 37, 64, 0.15);
    flex-shrink: 0;
}

.feature-card-premium:hover .feature-icon-wrapper-premium {
    background-color: var(--accent-color);
    color: var(--primary-color);
    transform: rotate(5deg) scale(1.05);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.25);
}

.feature-title-wrap h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--primary-color) !important;
}

.feature-favicon-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 6px;
    padding: 2px 8px;
    margin-top: 2px;
}

.favicon-badge-img {
    height: 12px;
    width: 12px;
    object-fit: contain;
    filter: drop-shadow(0 1px 1px rgba(0,0,0,0.1));
}

.badge-text {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--accent-color) !important;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    line-height: 1;
}

.feature-card-premium p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Symmetrical layouts alignment adjustments for smaller screens */
@media (max-width: 991.98px) {
    .why-choose-premium-section .text-lg-end {
        text-align: left !important;
    }
    .feature-card-premium .feature-card-header {
        justify-content: flex-start !important;
    }
    .feature-title-wrap {
        order: 2 !important;
    }
    .feature-icon-wrapper-premium {
        order: 1 !important;
    }
}

/* Center image styles */
.why-choose-center-img-wrapper {
    max-width: 320px;
    margin: 0 auto;
    border-radius: 24px;
    z-index: 1;
}

.why-choose-img-border {
    position: absolute;
    top: -12px;
    left: -12px;
    right: -12px;
    bottom: -12px;
    border: 2px dashed rgba(212, 175, 55, 0.3);
    border-radius: 32px;
    z-index: -1;
    animation: rotateDashed 60s linear infinite;
}

@keyframes rotateDashed {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.why-choose-center-img {
    border-radius: 24px;
    border: 6px solid #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: var(--transition-smooth);
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.why-choose-center-img-wrapper:hover .why-choose-center-img {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.15);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-radius: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    z-index: 5;
    animation: floatBadge 4s ease-in-out infinite alternate;
}

.badge-top-left {
    top: 25px;
    left: -35px;
}

.badge-bottom-right {
    bottom: 25px;
    right: -35px;
    animation-delay: 2s;
}

@keyframes floatBadge {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

@media (max-width: 991.98px) {
    .badge-top-left { left: 10px; }
    .badge-bottom-right { right: 10px; }
}


/* 2. Security & Trust Premium Redesign */
.security-trust-premium {
    background: linear-gradient(135deg, #051329 0%, #0A2540 100%);
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    overflow: hidden;
}

.security-trust-premium::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(circle at 10% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* Left: Scorecard Glass */
.trust-scorecard-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    padding: 40px 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.trust-scorecard-glass::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: linear-gradient(30deg, transparent, rgba(212, 175, 55, 0.03), transparent);
    transform: rotate(30deg);
    transition: var(--transition-smooth);
}

.trust-scorecard-glass:hover {
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.1);
}

.scorecard-shield-icon {
    font-size: 2.8rem;
    color: var(--accent-color);
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
    animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
    0% { filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.2)); }
    100% { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6)); }
}

.trust-subtitle-premium {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-color) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
}

.trustable-rating-premium {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.total-rating-scale {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.trustable-stars-premium {
    color: #FFB800;
    font-size: 1.3rem;
}

.trust-rating-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff !important;
}

.trust-rating-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Right: Trust item card glass */
.trust-item-card-glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 26px;
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    gap: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.trust-item-card-glass:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.06);
}

.trust-icon-box-glass {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.trust-item-card-glass:hover .trust-icon-box-glass {
    background: var(--accent-color);
    color: var(--primary-dark);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.trust-card-title-glass {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff !important;
    margin-bottom: 8px;
}

.trust-card-text-glass {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ==========================================
   PREMIUM REDESIGN - ABOUT US & REELS
   ========================================== */

/* Premium About Us */
.about-premium-container {
    position: relative;
    padding: 80px 0;
    background: radial-gradient(circle at 10% 20%, rgba(248, 250, 252, 0.8) 0%, rgba(255, 255, 255, 0.9) 90%);
}

.about-premium-grid {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
}

.about-img-wrapper-main {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.about-img-wrapper-main img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-premium-grid:hover .about-img-wrapper-main img {
    transform: scale(1.03);
}

.about-img-secondary-wrapper {
    position: absolute;
    bottom: -30px;
    right: -20px;
    width: 240px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border: 3px solid #ffffff;
    z-index: 10;
    transition: var(--transition-smooth);
}

.about-img-secondary-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.about-premium-grid:hover .about-img-secondary-wrapper {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 45px rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.8);
}

.about-floating-trust-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: rgba(10, 37, 64, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 16px 24px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(10, 37, 64, 0.15);
    z-index: 11;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatingBadge 4s ease-in-out infinite alternate;
}

@keyframes floatingBadge {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.about-badge-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.3rem;
}

.about-badge-content h4 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1.1;
}

.about-badge-content span {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 2x2 Highlight Grid */
.about-highlights-premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 35px;
}

.about-highlight-card-premium {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--border-radius-md);
    padding: 22px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.about-highlight-card-premium:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.08);
}

.about-highlight-icon-premium {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(10, 37, 64, 0.04);
    border: 1px solid rgba(10, 37, 64, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    transition: var(--transition-smooth);
}

.about-highlight-card-premium:hover .about-highlight-icon-premium {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.25);
    color: var(--accent-color);
    transform: scale(1.05);
}

.about-highlight-card-premium h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    color: var(--primary-color) !important;
    transition: var(--transition-smooth);
}

.about-highlight-card-premium:hover h5 {
    color: var(--accent-color) !important;
}

.about-highlight-card-premium p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

/* Premium Property Reels Grid Layout */
.reels-premium-row {
    margin-top: 20px;
}

.reels-intro-card-wrapper {
    height: 100%;
}

.reels-intro-card {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 40px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.reels-intro-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.reels-intro-badge-pulse {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    width: fit-content;
}

.reels-pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
    animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 10px var(--accent-color); }
    100% { transform: scale(0.9); opacity: 0.6; }
}

.reels-intro-content {
    margin-bottom: 35px;
}

.reels-intro-content h3 {
    font-size: 1.85rem;
    line-height: 1.3;
    font-weight: 800;
    color: #ffffff !important;
    margin-bottom: 15px;
}

.reels-intro-content h3 span {
    color: var(--accent-color) !important;
}

.reels-intro-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.reels-intro-footer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reels-intro-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 1.4rem;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.25);
}

.reels-intro-card:hover .reels-intro-btn {
    transform: scale(1.1) rotate(15deg);
    background: #ffffff;
    color: var(--primary-dark);
    box-shadow: 0 12px 25px rgba(255, 255, 255, 0.3);
}

.reels-intro-footer-text span {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.reels-intro-footer-text strong {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 700;
}

/* Reels Slider Component */
.reels-slider-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.reels-slider-outer {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Edge Fade Gradient */
.reels-slider-outer::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.95));
    pointer-events: none;
    z-index: 5;
}

.reels-slider-track-premium {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 15px 5px;
    /* Hide scrollbars */
    scrollbar-width: none; /* Firefox */
}

.reels-slider-track-premium::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.reel-slider-item-premium {
    flex: 0 0 230px;
    scroll-snap-align: start;
}

/* Enhanced Reel Card */
.reel-card-premium {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 9/16;
    height: 350px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.reel-card-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--border-radius-md);
    pointer-events: none;
    z-index: 3;
    transition: var(--transition-smooth);
}

.reel-card-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reel-card-premium:hover img {
    transform: scale(1.06);
}

.reel-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(10, 37, 64, 0.15);
    border-color: rgba(212, 175, 55, 0.4);
}

.reel-card-premium:hover::after {
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.15);
}

.reel-overlay-premium {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(5, 19, 41, 0.95) 0%, 
        rgba(5, 19, 41, 0.4) 40%, 
        rgba(5, 19, 41, 0.1) 70%, 
        rgba(5, 19, 41, 0.4) 100%
    );
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    transition: var(--transition-smooth);
}

.reel-card-premium:hover .reel-overlay-premium {
    background: linear-gradient(to top, 
        rgba(5, 19, 41, 0.98) 0%, 
        rgba(5, 19, 41, 0.6) 40%, 
        rgba(5, 19, 41, 0.2) 70%, 
        rgba(5, 19, 41, 0.5) 100%
    );
}

.reel-header-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reel-video-icon-wrap {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.reel-time-badge-premium {
    background: rgba(10, 37, 64, 0.75);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.reel-play-btn-premium {
    align-self: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.3rem;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    transition: var(--transition-smooth);
    margin-top: 30px;
}

.reel-card-premium:hover .reel-play-btn-premium {
    background: var(--accent-color);
    color: #ffffff;
    transform: scale(1.15);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.reel-footer-premium {
    transform: translateY(5px);
    transition: var(--transition-smooth);
}

.reel-card-premium:hover .reel-footer-premium {
    transform: translateY(0);
}

.reel-tag-premium {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 6px;
}

.reel-title-premium {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .about-premium-grid {
        padding-right: 0;
        padding-bottom: 0;
        margin-bottom: 30px;
        display: flex;
        justify-content: center;
    }
    
    .about-img-wrapper-main {
        width: 85%;
    }
    
    .about-img-secondary-wrapper {
        width: 180px;
        bottom: -20px;
        right: 5%;
    }
    
    .about-floating-trust-badge {
        left: 5%;
    }
    
    .about-highlights-premium-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .reels-intro-card {
        padding: 30px 24px;
        margin-bottom: 20px;
    }
    
    .reels-slider-outer::after {
        display: none; /* Remove edge fade on mobile to let it slide completely */
    }
}

/* Premium Latest Real Estate Insights (Blogs) */
.blog-section-premium {
    position: relative;
    padding: 80px 0;
    background: radial-gradient(circle at 90% 10%, rgba(241, 245, 249, 0.8) 0%, rgba(255, 255, 255, 1) 90%);
}

.blog-card-premium {
    background-color: #ffffff;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(226, 232, 240, 0.8);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog-card-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius-lg);
    pointer-events: none;
    z-index: 3;
    transition: var(--transition-smooth);
}

.blog-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 37, 64, 0.1);
    border-color: rgba(212, 175, 55, 0.35);
}

.blog-card-premium:hover::after {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.08);
}

.blog-img-wrapper-premium {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background-color: #eaeaea;
}

.blog-img-wrapper-premium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card-premium:hover .blog-img-wrapper-premium img {
    transform: scale(1.06);
}

.blog-category-badge-premium {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(5, 19, 41, 0.9);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--accent-color) !important;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.blog-date-badge-premium {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    color: var(--primary-color);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.blog-info-premium {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta-premium {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-weight: 600;
}

.blog-meta-premium .blog-author-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta-premium .blog-author-wrap i {
    color: var(--accent-color);
}

.blog-title-premium {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.45;
    transition: var(--transition-smooth);
}

.blog-title-premium a {
    color: var(--primary-color) !important;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.blog-card-premium:hover .blog-title-premium a {
    color: var(--accent-color) !important;
}

.blog-desc-premium {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-btn-premium {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: var(--transition-smooth);
    width: fit-content;
}

.blog-btn-premium i {
    transition: var(--transition-smooth);
    font-size: 1.05rem;
}

.blog-btn-premium:hover {
    color: var(--accent-hover);
}

.blog-btn-premium:hover i {
    transform: translateX(5px);
}

/* Premium Testimonials Section */
.testimonials-section-premium {
    position: relative;
    padding: 80px 0;
    background: radial-gradient(circle at 50% 50%, rgba(248, 250, 252, 0.95) 0%, rgba(241, 245, 249, 0.95) 100%);
    overflow: hidden;
}

.testimonials-slider-outer {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Edge Fade out shadows */
.testimonials-slider-outer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(to right, rgba(241, 245, 249, 0.95), transparent);
    pointer-events: none;
    z-index: 5;
}

.testimonials-slider-outer::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 100%;
    background: linear-gradient(to left, rgba(241, 245, 249, 0.95), transparent);
    pointer-events: none;
    z-index: 5;
}

.testimonials-slider-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 20px 10px 30px;
    /* Hide scrollbars */
    scrollbar-width: none;
}

.testimonials-slider-track::-webkit-scrollbar {
    display: none;
}

.testimonials-slide-item {
    flex: 0 0 380px;
    scroll-snap-align: start;
    display: flex;
}

.testimonial-card-premium {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--border-radius-lg);
    padding: 35px;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--border-radius-lg);
    pointer-events: none;
    z-index: 3;
    transition: var(--transition-smooth);
}

.testimonial-card-premium:hover {
    transform: translateY(-8px);
    background: #ffffff;
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 20px 35px rgba(212, 175, 55, 0.06);
}

.testimonial-card-premium:hover::after {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.06);
}

.testimonial-quote-icon {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 3.5rem;
    color: rgba(212, 175, 55, 0.08);
    font-family: 'Outfit', Georgia, serif;
    font-weight: 800;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.testimonial-star-rating-premium {
    color: #FFB800;
    font-size: 1rem;
    margin-bottom: 20px;
}

.testimonial-text-premium {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author-premium {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid rgba(226, 232, 240, 0.6);
    padding-top: 18px;
}

.author-img-premium {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-color);
    padding: 2px;
    transition: var(--transition-smooth);
}

.testimonial-card-premium:hover .author-img-premium {
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.author-img-fallback-premium {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid var(--accent-color);
    padding: 2px;
}

.author-name-premium {
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.author-location-premium {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

@media (max-width: 768px) {
    .testimonials-slide-item {
        flex: 0 0 300px;
    }
    
    .testimonial-card-premium {
        padding: 25px;
    }
    
    .testimonials-slider-outer::before,
    .testimonials-slider-outer::after {
        display: none;
    }
}

/* Multi-level dropdown submenus */
.dropdown-submenu {
    position: relative;
}
.dropdown-submenu .dropdown-item-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.dropdown-submenu .dropdown-item {
    flex-grow: 1;
}
.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: 0px;
    border-radius: 0.25rem;
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: none !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Hide nested submenus by default when parent type dropdown is hovered */
.nav-item.dropdown:hover .dropdown-submenu .dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
}

/* Show specific submenu on hover on desktop */
@media (min-width: 992px) {
    .nav-item.dropdown:hover .dropdown-submenu:hover > .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* Mobile specific styling */
@media (max-width: 991.98px) {
    .dropdown-submenu .dropdown-item-wrapper {
        padding-right: 0;
        align-items: stretch;
    }
    
    .dropdown-submenu .dropdown-item {
        flex: 1;
        width: auto !important;
        padding-right: 0 !important;
    }

    .submenu-toggle-btn {
        flex-shrink: 0;
        width: 48px;
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: transparent !important;
        border: none !important;
        color: rgba(255, 255, 255, 0.6) !important;
    }
    
    .submenu-toggle-btn:focus, .submenu-toggle-btn:active {
        background: transparent !important;
        color: #d4af37 !important;
        box-shadow: none !important;
    }

    .dropdown-submenu > .dropdown-menu {
        position: static;
        margin-top: 0;
        margin-left: 15px;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        box-shadow: none;
        width: calc(100% - 15px);
        transform: none !important;
    }
    
    .dropdown-submenu > .dropdown-menu.show {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .submenu-toggle-btn i {
        transition: transform 0.3s;
    }
    .submenu-toggle-btn.active i {
        transform: rotate(180deg);
    }
}





