/* ==========================================================================
   SEWASINI.MY - GUEST PANEL CSS
   Page-specific styles for guest-panel (landing page)
   ========================================================================== */

/* ==========================================================================
   MOBILE APP BADGES — Hero Section
   ========================================================================== */
.hero-app-strip {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-app-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.75rem;
}
.hero-app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

/* Shared badge style */
.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1rem;
    border-radius: 10px;
    font-size: 0.82rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.22s ease;
    border: 1.5px solid;
    background: none;
    font-family: inherit;
    line-height: 1;
}
.app-badge i {
    font-size: 1.4rem;
    flex-shrink: 0;
}
.app-badge-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.app-badge-text small {
    font-size: 0.65rem;
    opacity: 0.75;
    font-weight: 500;
    display: block;
    line-height: 1.2;
}
.app-badge-text {
    font-weight: 700;
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Active — solid dark pill */
.app-badge--active {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.4);
    color: #ffffff;
    backdrop-filter: blur(4px);
}
.app-badge--active:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.7);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* Soon — muted with lock indicator */
.app-badge--soon {
    background: rgba(0,0,0,0.25);
    border-color: rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.55);
    cursor: pointer;
    position: relative;
}
.app-badge--soon:hover {
    background: rgba(0,0,0,0.38);
    border-color: rgba(255,255,255,0.32);
    color: rgba(255,255,255,0.75);
    transform: translateY(-1px);
}
.app-badge--soon i {
    opacity: 0.5;
}

/* ==========================================================================
   FOOTER APP BUTTONS
   ========================================================================== */
.footer-apps {
    margin-top: 1.5rem;
}
.footer-apps-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 0.65rem;
}
.footer-app-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 1rem;
    border-radius: 9px;
    font-size: 0.8rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1.5px solid;
    background: none;
    font-family: inherit;
    line-height: 1;
    width: 100%;
}
.footer-app-btn i {
    font-size: 1.25rem;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}
.footer-app-btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}
.footer-app-btn-text small {
    font-size: 0.6rem;
    display: block;
    line-height: 1.2;
    font-weight: 500;
}
.footer-app-btn-text {
    font-weight: 700;
    font-size: 0.8rem;
    line-height: 1.3;
}
.footer-app-btn--active {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.9);
}
.footer-app-btn--active:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.5);
    color: #fff;
    transform: translateX(3px);
}
.footer-app-btn--soon {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.35);
    cursor: pointer;
}
.footer-app-btn--soon:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.55);
}
.footer-app-btn--soon i { opacity: 0.4; }

/* ==========================================================================
   MODAL — Mobile App Coming Soon
   ========================================================================== */
.app-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    animation: modalFadeIn 0.2s ease;
}
.app-modal-backdrop[hidden] { display: none !important; }
@keyframes modalFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
.app-modal-box {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem 2rem;
    max-width: 400px;
    width: 100%;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
    animation: modalSlideUp 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    outline: none;
}
@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.app-modal-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #dc2626 0%, #9f1239 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 8px 24px rgba(220,38,38,0.3);
}
.app-modal-icon i {
    font-size: 2rem;
    color: #fff;
}
.app-modal-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
}
.app-modal-body p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}
.app-modal-body p strong {
    color: #111827;
    font-size: 1rem;
}
.app-modal-msg {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 10px;
    padding: 0.9rem 1rem;
    color: #991b1b !important;
    font-size: 0.88rem !important;
    line-height: 1.6 !important;
    margin-top: 0.75rem !important;
}
.app-modal-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.75rem;
    justify-content: center;
}
.app-modal-btn-close {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    background: white;
    color: #374151;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}
.app-modal-btn-close:hover {
    border-color: #9ca3af;
    background: #f9fafb;
}
.app-modal-btn-notify {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.7rem 1.5rem;
    background: #dc2626;
    border: 2px solid #dc2626;
    border-radius: 10px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}
.app-modal-btn-notify:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    color: white;
    transform: translateY(-1px);
}

/* ==========================================================================
   HERO SLIDER — background image rotator, layout kekal 2-kolum
   ========================================================================== */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: #111; /* fallback semasa gambar loading */
}

/* Slide backgrounds — absolute, cover full section */
.hs-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity;
    z-index: 0;
}
.hs-slide.active { opacity: 1; z-index: 1; }

/* Dark overlay — cukup gelap untuk teks putih terbaca */
.hs-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(0,0,0,0.68) 0%,
        rgba(0,0,0,0.38) 60%,
        rgba(0,0,0,0.52) 100%
    );
}

/* Content wrapper — duduk di atas slides (z-index > 1) */
.hs-body {
    position: relative;
    z-index: 5;
    padding: 6rem 0 5rem;
}

/* Eyebrow badge — putih/merah translucent untuk dark background */
.hs-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(220,38,38,0.20);
    border: 1px solid rgba(255,100,100,0.45);
    color: #fca5a5;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 1.5rem;
    width: fit-content;
}

/* Hero headline — putih dengan accent merah pada <span> */
.hs-headline {
    font-size: 2.6rem;
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    transition: opacity 0.4s ease;
}
.hs-headline span { color: #f87171; }

/* Sub-paragraph */
.hs-subtext {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85) !important;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-weight: 500;
    transition: opacity 0.4s ease;
}
.hs-subtext strong { color: #fff; }

/* Override hero-feature untuk dark bg */
.hero-slider .hero-feature {
    color: rgba(255,255,255,0.9);
}
.hero-slider .hero-feature i {
    background: rgba(255,255,255,0.15);
    color: #4ade80;
}

/* CTA buttons untuk dark bg */
.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary, #dc2626);
    color: #fff;
    padding: 0.85rem 1.8rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid var(--primary, #dc2626);
    transition: all 0.25s ease;
}
.btn-primary-hero:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(220,38,38,0.4);
}
.btn-ghost-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    color: #fff;
    padding: 0.85rem 1.8rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.4);
    backdrop-filter: blur(4px);
    transition: all 0.25s ease;
}
.btn-ghost-hero:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.75);
    color: #fff;
    transform: translateY(-2px);
}

/* Navigation arrows */
.hs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(0,0,0,0.30);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    transition: all 0.25s ease;
    outline: none;
}
.hs-arrow:hover {
    background: rgba(220,38,38,0.80);
    border-color: #dc2626;
    transform: translateY(-50%) scale(1.1);
}
.hs-arrow-prev { left: 1.5rem; }
.hs-arrow-next { right: 1.5rem; }

/* Dot indicators */
.hs-dots {
    position: absolute;
    bottom: 1.8rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
    display: flex;
    gap: 10px;
}
.hs-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    outline: none;
}
.hs-dot.active {
    background: #dc2626;
    transform: scale(1.4);
}
.hs-dot:hover:not(.active) { background: rgba(255,255,255,0.65); }

/* Progress bar */
.hs-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255,255,255,0.15);
    z-index: 20;
}
.hs-progress-bar {
    height: 100%;
    background: #dc2626;
    width: 0%;
    transition: width linear;
}

/* Responsive */
@media (max-width: 768px) {
    .hs-body   { padding: 4rem 0 3.5rem; }
    .hs-arrow  { display: none; }
    .hs-headline { font-size: 1.9rem; }
}

/* ==========================================================================
   Hero Eyebrow Badge (legacy — kept for pages not using slider)
   ========================================================================== */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-light);
    color: var(--primary);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(220,38,38,0.2);
}

/* ==========================================================================
   USP Band
   ========================================================================== */
.usp-band {
    background: var(--secondary);
    padding: 2.5rem 0;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: white;
}

.usp-item i {
    font-size: 2rem;
    color: var(--primary);
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.usp-item strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.2rem;
}

.usp-item span {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

/* ==========================================================================
   How It Works — Tabs
   ========================================================================== */
.how-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.how-tab {
    padding: 0.9rem 2.5rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.how-tab:hover,
.how-tab.active {
    background: var(--primary);
    color: white;
}

/* ==========================================================================
   Property Card — DB Image Placeholder
   ========================================================================== */
.property-image.db-property-img {
    height: 220px;
    background: linear-gradient(135deg, #1F2937 0%, #374151 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.property-image.db-property-img i {
    font-size: 4rem;
    color: rgba(255,255,255,0.2);
}

.type-label-badge {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(0,0,0,0.6);
    color: white;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
}

/* ==========================================================================
   Properties Empty State (landing page)
   ========================================================================== */
.properties-empty-state {
    text-align: center;
    padding: 5rem 2rem;
    color: var(--gray);
}

.properties-empty-state i {
    font-size: 5rem;
    color: var(--gray-light);
    display: block;
    margin-bottom: 1.5rem;
}

.properties-empty-state h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.properties-empty-state p {
    font-size: 1rem;
    max-width: 420px;
    margin: 0 auto;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 50%, var(--light) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: var(--primary);
    opacity: 0.08;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: var(--secondary);
    opacity: 0.05;
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-text {
    animation: slideInLeft 0.8s ease-out;
}

.hero-visual {
    animation: slideInRight 0.8s ease-out;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.25;
    font-weight: 800;
    color: var(--dark);
}

.hero p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-features {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--success);
    font-weight: 600;
    font-size: 1.1rem;
}

.hero-feature i {
    background: var(--success);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

/* ==========================================================================
   Invoice Card
   ========================================================================== */
.invoice-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    width: 360px;
    overflow: hidden;
    transform: rotate(3deg);
    transition: all 0.4s ease;
    position: relative;
    z-index: 3;
    border: 3px solid var(--primary);
}

.invoice-card:hover {
    transform: rotate(0deg) translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(220, 38, 38, 0.25);
}

.invoice-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.invoice-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.invoice-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    font-size: 1.1rem;
}

.invoice-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.invoice-header p {
    opacity: 0.9;
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

.invoice-body {
    padding: 2rem;
    color: var(--dark);
    background: var(--white);
}

.invoice-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--gray-light);
    transition: all 0.3s;
}

.invoice-row:hover {
    background: var(--primary-light);
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 -10px;
    border-radius: 6px;
}

.invoice-row:last-child {
    border-bottom: none;
}

.invoice-row.total {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary);
    border-top: 2px solid var(--gray-light);
    margin-top: 0.8rem;
    padding-top: 1.2rem;
}

.invoice-label {
    color: var(--gray);
    font-weight: 600;
}

.invoice-actions {
    padding: 1.5rem 2rem;
    background: var(--light);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.invoice-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.invoice-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    background: var(--primary-dark);
}

.invoice-btn.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.invoice-btn.secondary:hover {
    background: var(--primary-light);
}

.property-background {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 700px;
    height: 700px;
    z-index: 1;
    border-radius: 30px;
    overflow: hidden;
    opacity: 0.6;
    transform: rotate(15deg);
}

.property-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.3);
}

/* ==========================================================================
   Property Listing Section
   ========================================================================== */
.property-listing {
    background: linear-gradient(180deg, var(--white) 0%, var(--primary-light) 100%);
    padding: 5rem 0;
}

.property-search {
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
}

.search-wrapper {
    position: relative;
    display: flex;
    gap: 1rem;
    background: var(--white);
    padding: 1rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-light);
    transition: all 0.3s;
}

.search-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.1);
    transform: translateY(-5px);
}

.search-input {
    flex: 1;
    padding: 1.2rem 1.5rem 1.2rem 3.5rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s;
    background: var(--white);
    font-weight: 500;
}

.search-input:focus {
    outline: none;
    background: var(--primary-light);
}

.search-icon {
    position: absolute;
    left: 2.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.3rem;
    z-index: 2;
}

.search-btn {
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.property-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 4rem;
}

.filter-btn {
    padding: 1rem 2.5rem;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* ==========================================================================
   Property Card
   ========================================================================== */
.property-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
}

.property-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleX(0);
    transition: transform 0.3s;
}

.property-card:hover::before {
    transform: scaleX(1);
}

.property-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

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

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

.property-card:hover .property-image img {
    transform: scale(1.1);
}

.property-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    z-index: 2;
    box-shadow: var(--shadow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.property-badge.featured {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
}

.property-favorite {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
    color: var(--gray);
    font-size: 1.2rem;
}

.property-favorite:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.property-favorite.active {
    background: var(--primary);
    color: var(--white);
}

.property-info {
    padding: 2.5rem;
}

.property-price {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.property-price span {
    font-size: 1.1rem;
    color: var(--gray);
    font-weight: 600;
}

.property-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.property-location {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.property-location i {
    color: var(--primary);
    font-size: 1.2rem;
}

.property-features {
    display: flex;
    gap: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--gray-light);
    margin-bottom: 2rem;
}

.property-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gray);
    font-size: 1rem;
    font-weight: 500;
}

.property-feature i {
    color: var(--primary);
    font-size: 1.3rem;
}

.property-actions {
    display: flex;
    gap: 1rem;
}

.property-btn {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    font-size: 1rem;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.property-btn.view {
    background: var(--primary-light);
    color: var(--primary);
    border: 2px solid var(--primary-light);
}

.property-btn.view:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.property-btn.contact {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
}

.property-btn.contact:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.view-all-btn {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */
.how-it-works {
    background: var(--white);
    padding: 5rem 0;
}

.steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    gap: 2rem;
}

.steps::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 10%;
    width: 80%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    z-index: 1;
}

.step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 0 2rem;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 auto 1.5rem;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
}

.step:hover .step-number {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.3);
}

.step h3 {
    margin-bottom: 0.75rem;
    color: var(--dark);
    font-size: 1.15rem;
    font-weight: 700;
}

.step p {
    color: var(--gray);
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 500;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */
.pricing-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
    padding: 5rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    position: relative;
    border: 3px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.pricing-card.featured {
    border: 3px solid var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: 25px;
    right: -35px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: white;
    padding: 0.8rem 3rem;
    transform: rotate(45deg);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow);
}

.pricing-header {
    padding: 2rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.pricing-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.pricing-card.featured .pricing-header {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

.pricing-header h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header .price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.pricing-header .period {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 600;
}

.pricing-features {
    padding: 1.5rem 2rem;
}

.pricing-features ul {
    list-style: none;
}

.pricing-features li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--success);
    font-size: 1.3rem;
}

.pricing-features .fa-times {
    color: var(--gray-light);
}

.pricing-actions {
    padding: 0 2rem 2rem;
    text-align: center;
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials {
    background: var(--white);
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    position: relative;
    border: 2px solid var(--primary-light);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.testimonial-card::before {
    content: "\201C";
    position: absolute;
    top: 12px;
    left: 18px;
    font-size: 4rem;
    color: var(--primary-light);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.5;
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--dark);
    line-height: 1.6;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.author-info h4 {
    color: var(--dark);
    margin-bottom: 0.25rem;
    font-size: 1rem;
    font-weight: 700;
}

.author-info p {
    color: var(--gray);
    font-size: 0.875rem;
    font-weight: 500;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23FFFFFF" opacity="0.1"><polygon points="0,100 1000,0 1000,100"/></svg>') no-repeat bottom;
    background-size: cover;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: white;
}

.cta p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
    font-weight: 500;
}

/* ==========================================================================
   Responsive Design - Guest Panel Specific
   ========================================================================== */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .property-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-visual {
        justify-content: center;
        margin-top: 0;
    }

    .property-background {
        display: none;
    }

    .steps {
        flex-direction: column;
        gap: 4rem;
    }

    .steps::before {
        display: none;
    }

    .pricing-card.featured {
        transform: none;
    }

    .pricing-card.featured:hover {
        transform: translateY(-15px);
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .property-grid {
        grid-template-columns: 1fr;
    }

    .property-filters {
        gap: 0.8rem;
    }

    .filter-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .search-wrapper {
        flex-direction: column;
    }

    .search-btn {
        width: 100%;
        padding: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .cta h2 {
        font-size: 1.5rem;
    }
}
