/* --- Front Page Styles --- */
.hero_banner {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    padding-top: 100px;
}

.hero_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.0) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 5%;
}

.hero-text-wrap {
    margin-bottom: 50px;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.2s forwards;
}

/* --- Modern Search Bar --- */
.search-glass-wrap {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-width: 1100px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) 0.4s forwards;
}

.search-item {
    flex: 1;
    min-width: 200px;
    padding: 15px 25px;
    position: relative;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.search-item:last-child {
    border-right: none;
    flex: 0 0 auto;
}

.search-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.search-input {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    outline: none !important;
}

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

.search-select {
    appearance: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    width: 100%;
    cursor: pointer;
    outline: none !important;
}

.search-select option {
    background: #1a1a1a;
    color: #fff;
}

.search-btn-modern {
    background: var(--primary);
    color: #fff;
    border: none;
    height: 60px;
    width: 60px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.search-btn-modern:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.4);
}

.search-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.search-tab {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.search-tab.active {
    background: #fff;
    color: #000;
}

/* --- Sections --- */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@media (max-width: 768px) {
    .search-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .search-glass-wrap {
        border-radius: 20px;
    }

    .hero-title {
        font-size: 3rem;
    }
}

/* --- Recommended Properties Section --- */

/* --- Services Section --- */
.service-card-modern {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 40px;
    border-radius: 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.service-card-modern:hover {
    background: #fff;
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.service-icon {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 25px;
}

.service-card-modern h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card-modern p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.section-title {
    font-size: 50px;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.2;

    color: #1a1a1a;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
}

/* --- Why FREA Section --- */
.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item h4 {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}

.stat-item p {
    color: #888;
    font-size: 14px;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.why-card {
    background: #fff;
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.why-card i {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 20px;
}

.why-card h4 {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    color: #888;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.why-card:hover {
    background: #fff;
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.why-card.active {
    background: var(--primary);
    border-color: var(--primary);
}

.why-card.active i,
.why-card.active h4,
.why-card.active p {
    color: #fff;
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        gap: 20px;
    }
}

/* Base Card Style */
.dash-glass-card {

    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    /* Initial Shadow: 10px right, 10px bottom */
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.05);
}

/* Hover State */
.dash-glass-card:hover {
    transform: translateY(-8px) translateX(-2px);
    border-color: var(--primary) !important;
    /* Larger Shadow: 20px right, 25px bottom */
    box-shadow: 20px 25px 40px rgba(0, 0, 0, 0.1);
}

/* Utility Class for transition (if not already working) */
.transition-all {
    transition: all 0.4s ease-in-out;
}

/* --- Listing Process Section --- */
.rounded-40 {
    border-radius: 40px;
}

.process-image-wrap {
    position: relative;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: #fff;
    padding: 15px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
}

.step-modern {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.step-number {
    font-family: var(--font-acc);
    font-weight: 800;
    font-size: 32px;
    color: rgba(0, 102, 255, 0.32);
    line-height: 1;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.step-content p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* --- Blogs Section --- */
.blog-carousel {
    margin: 0 -15px;
}

.blog-slide-item {
    padding: 15px;
}

.blog-card-modern {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
    cursor: pointer;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.blog-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--primary);
}

.blog-thumb {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.blog-card-modern:hover .blog-thumb img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary);
    color: #fff;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
}

.blog-date span {
    display: block;
    font-size: 20px;
}

.blog-info {
    padding: 30px;
}

.blog-info h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.blog-info p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- CTA Section --- */
/* Container Box */
.cta-minimal {
    background: #f19035;
    /* Deep charcoal, almost black */
    padding: 60px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* The "Bottom-Right" Shadow you asked for earlier */
.shadow-bottom-right {
    box-shadow: 25px 25px 50px rgba(0, 0, 0, 0.15);
}

/* Content Styling */
.cta-badge {
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    color: #1f1111;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.cta-text {
    color: #251111;
    font-size: 16px;
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* The Button */
.btn-sleek {
    background: #0e0101;
    color: #ea6f0b;
    padding: 18px 40px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border: 2px solid #000000;
}

.btn-sleek:hover {
    background: transparent;
    color: #160303;
    transform: translateX(5px);
}

/* Accent Highlight */

/* Background subtle detail */
.cta-minimal::after {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 991px) {
    .cta-minimal {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px;
    }

    .cta-text {
        margin: 0 auto 30px auto;
    }

    .cta-title {
        font-size: 28px;
    }
}

