/* ============================================================
   POGRADEC PROPERTY — style.css
   Primary: #1E5EFF | Dark Navy: #0F172A | Light BG: #F5F7FA
   ============================================================ */

/* ---------- Google Fonts (loaded via <link> in HTML — no @import needed) ---------- */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #1E5EFF;
    --primary-dark: #1448CC;
    --primary-light: #EEF3FF;
    --navy: #0F172A;
    --navy-mid: #1E293B;
    --slate: #475569;
    --slate-light: #94A3B8;
    --bg: #F5F7FA;
    --bg-alt: #EEF3FF;
    --white: #FFFFFF;
    --border: #E2E8F0;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 1px 3px rgba(15, 23, 42, .06), 0 1px 2px rgba(15, 23, 42, .04);
    --shadow: 0 4px 16px rgba(15, 23, 42, .08), 0 1px 4px rgba(15, 23, 42, .04);
    --shadow-md: 0 8px 32px rgba(15, 23, 42, .10), 0 2px 8px rgba(15, 23, 42, .06);
    --shadow-lg: 0 16px 48px rgba(15, 23, 42, .14), 0 4px 12px rgba(15, 23, 42, .08);
    --shadow-blue: 0 8px 32px rgba(30, 94, 255, .25);

    --font-display: 'Sora', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --transition: 0.25s cubic-bezier(.4, 0, .2, 1);
    --transition-slow: 0.45s cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Skip Link (Accessibility) ---------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--white);
    z-index: 9999;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    border-radius: 0 0 8px 0;
    text-decoration: none;
    transition: top 0.3s ease;
}
.skip-link:focus {
    top: 0;
    outline: 3px solid rgba(255,255,255,.6);
    outline-offset: 2px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.6;
    color: var(--navy);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy);
}

.section-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 8px;
}

.section-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 8px;
}

.section-sub {
    color: var(--slate);
    font-size: 15px;
}

/* ---------- Utility ---------- */
.text-primary {
    color: var(--primary) !important;
}

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

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

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

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

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

.bg-light-blue {
    background: var(--bg-alt) !important;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

/* ---------- Buttons ---------- */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-blue);
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(30, 94, 255, .35);
    color: var(--white);
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-white-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: var(--white);
    color: var(--primary);
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-white-custom:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--primary-dark);
}

/* ---------- Cards ---------- */
.card-custom {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.card-custom:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-custom {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.navbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    overflow: visible;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}

.nav-logo-img {
    height: 80px !important;
    width: auto;
    display: block;
}

.navbar-custom .nav-logo-light {
    display: block;
}

.navbar-custom .nav-logo-dark {
    display: none;
}

/* Language Switcher */
.nav-lang-switcher {
    position: relative;
}

.nav-lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    border-radius: var(--radius);
    border: 1.5px solid var(--border);
    background: var(--bg);
    color: var(--navy);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-lang-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.nav-lang-arrow {
    font-size: 9px;
    transition: transform var(--transition);
}

.nav-lang-btn[aria-expanded="true"] .nav-lang-arrow {
    transform: rotate(180deg);
}

.nav-lang-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    min-width: 140px;
    padding: 6px;
    display: none;
    z-index: 9999;
}

.nav-lang-dropdown.open {
    display: block;
}

.nav-lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

.nav-lang-option:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.nav-lang-option.active {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
}

.lang-flag {
    font-size: 16px;
    line-height: 1;
}

/* Mobile language switcher */
.nav-mobile-lang {
    padding: 0;
}

.nav-mobile-lang-btn {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    background: none;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--navy);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.nav-mobile-lang-btn:hover,
.nav-mobile-lang-btn.open {
    background: var(--primary-light);
    color: var(--primary);
}

.nav-mobile-lang-arrow {
    margin-left: auto;
    font-size: 12px;
    transition: transform var(--transition);
}

.nav-mobile-lang-btn.open .nav-mobile-lang-arrow {
    transform: rotate(180deg);
}

.nav-mobile-lang-options {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 4px 0 4px 20px;
}

.nav-mobile-lang-options.open {
    display: flex;
}

.nav-mobile-lang-opt {
    padding: 11px 16px;
    border-radius: var(--radius);
    background: none;
    color: var(--slate);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-mobile-lang-opt:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.nav-mobile-lang-opt.active {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
}

/* Footer logo image */
.footer-logo-img {
    height: 100px;
    width: auto;
    display: block;
}

.nav-logo-icon {
    width: 42px;
    height: 42px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 800;
    box-shadow: var(--shadow-blue);
    flex-shrink: 0;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-logo-text span:first-child {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.01em;
}

.nav-logo-text span:last-child {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 500;
    color: var(--slate);
    letter-spacing: .06em;
    text-transform: uppercase;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.nav-link-item {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--slate);
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.nav-link-item:hover,
.nav-link-item.active {
    background: var(--primary-light);
    color: var(--primary);
}

/* Nav actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.nav-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: none;
    background: var(--bg);
    color: var(--navy);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
}

.nav-icon-btn:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.nav-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--white);
}

.nav-add-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: var(--shadow-blue);
}

.nav-add-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px);
}

/* Mobile hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav-mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 24px;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
}

.nav-mobile-menu.open {
    display: flex;
}

.nav-mobile-link {
    padding: 14px 16px;
    border-radius: var(--radius);
    font-weight: 500;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.nav-mobile-link:hover,
.nav-mobile-link.active {
    background: var(--primary-light);
    color: var(--primary);
}

.nav-mobile-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0;
}

.nav-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 8px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
        rgba(8, 12, 24, .84) 0%,
        rgba(14, 22, 46, .50) 55%,
        rgba(8, 13, 26, .78) 100%);
    z-index: 1;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/Pogradeci-hero.png');
    background-size: cover;
    background-position: center 40%;
    z-index: 0;
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from {
        transform: scale(1.05);
    }

    to {
        transform: scale(1.12);
    }
}

/* Decorative wave bottom */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
}

.hero-wave svg {
    display: block;
    width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 120px 24px 180px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-text {
    animation: fadeUp .8s ease both;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(30, 94, 255, .2);
    border: 1px solid rgba(30, 94, 255, .35);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #93C5FD;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.hero-eyebrow i {
    font-size: 10px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -.02em;
}

.hero-title .accent {
    color: #60A5FA;
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.hero-stat-item {}

.hero-stat-num {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.hero-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    margin-top: 4px;
}

/* Hero image side */
.hero-visual {
    animation: fadeUp .8s .2s ease both;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-card-stack {
    position: relative;
    width: 320px;
}

.hero-prop-card {
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius-xl);
    padding: 20px;
    color: var(--white);
}

.hero-prop-card-img {
    width: 100%;
    height: 160px;
    border-radius: var(--radius);
    object-fit: cover;
    background: linear-gradient(135deg, #1E5EFF33, #0F172A66);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    overflow: hidden;
}

.hero-prop-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-prop-card-badge {
    display: inline-block;
    padding: 3px 10px;
    background: var(--primary);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 8px;
}

.hero-prop-card-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.hero-prop-card-loc {
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.hero-prop-card-price {
    font-size: 22px;
    font-weight: 800;
    color: #60A5FA;
}

.hero-prop-card-price span {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    font-weight: 400;
}

/* Floating mini cards */
.hero-float-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: floatCard 4s ease-in-out infinite;
}

.hero-float-card.card-1 {
    bottom: -20px;
    left: -40px;
    animation-delay: 0s;
}

.hero-float-card.card-2 {
    top: 20px;
    right: -40px;
    animation-delay: 2s;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.hero-float-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.hero-float-icon.blue {
    background: var(--primary-light);
    color: var(--primary);
}

.hero-float-icon.green {
    background: #D1FAE5;
    color: var(--success);
}

.hero-float-label {
    font-size: 11px;
    color: var(--slate);
    line-height: 1.3;
}

.hero-float-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

/* ============================================================
   SEARCH BAR
   ============================================================ */
.search-section {
    position: relative;
    z-index: 4;
    margin-top: -80px;
    padding: 0 24px 60px;
}

.search-box {
    max-width: 1100px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 28px 32px;
    border: 1px solid var(--border);
}

.search-box-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--slate);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.search-row {
    display: grid;
    grid-template-columns: 2fr 1.4fr 1.4fr 1.4fr auto;
    gap: 12px;
    align-items: end;
}

.search-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.search-field input,
.search-field select,
.search-select-wrap {
    min-width: 0;
    width: 100%;
}

.search-field label {
    font-size: 11px;
    font-weight: 600;
    color: var(--slate);
    text-transform: uppercase;
    letter-spacing: .06em;
    display: flex;
    align-items: center;
    gap: 6px;
}

.search-field label i {
    color: var(--primary);
}

.search-field input,
.search-field select {
    height: 48px;
    padding: 0 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--navy);
    background: var(--bg);
    transition: var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}

.search-field input::placeholder {
    color: var(--slate-light);
}

.search-field select {
    cursor: pointer;
    padding-right: 36px;
}

.search-select-wrap {
    position: relative;
}

.search-select-wrap::after {
    content: '\f282';
    font-family: 'Bootstrap Icons';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--slate-light);
    font-size: 12px;
    pointer-events: none;
}

.search-field input:focus,
.search-field select:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(30, 94, 255, .1);
}

.search-btn {
    height: 48px;
    padding: 0 28px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    white-space: nowrap;
    box-shadow: var(--shadow-blue);
}

.search-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* ============================================================
   CATEGORIES SECTION
   ============================================================ */
.categories-section {
    padding: 20px 24px 60px;
    background: linear-gradient(160deg, #F8FAFF 0%, #EEF3FF 60%, #F0F5FF 100%);
    position: relative;
}
.categories-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/Pogradeci-hero.png');
    background-size: cover;
    background-position: center 35%;
    opacity: 0.035;
    pointer-events: none;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
    gap: 20px;
    flex-wrap: wrap;
}

.view-all-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
    white-space: nowrap;
}

.view-all-link:hover {
    gap: 10px;
    color: var(--primary-dark);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
}

.category-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 16px;
    text-align: center;
    border: 1.5px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.category-card:hover,
.category-card.active {
    border-color: var(--primary);
    background: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.category-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.category-card:hover .category-icon,
.category-card.active .category-icon {
    background: var(--primary);
    color: var(--white);
}

.category-name {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
}

.category-count {
    font-size: 11px;
    color: var(--slate);
}

/* ============================================================
   FEATURED PROPERTIES
   ============================================================ */
.properties-section {
    padding: 20px 24px 60px;
    background: var(--white);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.prop-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1.5px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.prop-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
    border-color: transparent;
}

.prop-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-alt), var(--border));
}

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

.prop-card:hover .prop-card-img img {
    transform: scale(1.07);
}

.prop-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.badge-apartment {
    background: #DBEAFE;
    color: #1D4ED8;
}

.badge-villa {
    background: #FEF3C7;
    color: #92400E;
}

.badge-land {
    background: #D1FAE5;
    color: #065F46;
}

.badge-business {
    background: #EDE9FE;
    color: #5B21B6;
}

.badge-house {
    background: #FCE7F3;
    color: #9D174D;
}

.badge-commercial {
    background: #FEE2E2;
    color: #991B1B;
}

.badge-rental {
    background: #E0F2FE;
    color: #075985;
}

.prop-card-status {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.status-sale {
    background: var(--primary);
    color: var(--white);
}

.status-rent {
    background: var(--success);
    color: var(--white);
}

.prop-fav-btn {
    position: absolute;
    bottom: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--slate-light);
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.prop-fav-btn:hover,
.prop-fav-btn.active {
    color: #EF4444;
}

.prop-fav-btn.active {
    color: #EF4444;
}

.prop-card-body {
    padding: 18px;
}

.prop-card-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.3;
}

.prop-card-loc {
    font-size: 12px;
    color: var(--slate);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 14px;
}

.prop-card-loc i {
    color: var(--primary);
}

.prop-card-features {
    display: flex;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}

.prop-feature {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--slate);
}

.prop-feature i {
    color: var(--primary);
    font-size: 13px;
}

.prop-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.prop-card-price {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.prop-card-price-label {
    font-size: 11px;
    color: var(--slate);
    font-weight: 400;
}

.prop-card-action {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--primary-light);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--primary);
    transition: var(--transition);
}

.prop-card-action:hover {
    background: var(--primary);
    color: var(--white);
}

/* ============================================================
   LATEST LISTINGS (horizontal scroll on mobile)
   ============================================================ */
.latest-section {
    padding: 20px 24px 60px;
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F8FF 50%, #EEF3FF 100%);
}

.latest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.prop-card-compact {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    padding: 10px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border);
    transition: var(--transition);
}

.prop-card-compact:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.prop-card-compact-img {
    flex-shrink: 0;
    width: 100px;
    height: 90px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
}

.prop-card-compact-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition);
}

.prop-card-compact:hover .prop-card-compact-img img {
    transform: scale(1.06);
}

.prop-card-compact-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.prop-card-compact-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    align-self: flex-start;
    margin-bottom: 2px;
}

.badge-apartment  { background: #EEF3FF; color: #1E5EFF; }
.badge-land       { background: #FFFBEB; color: #92400E; }
.badge-rental     { background: #F0FDF4; color: #166534; }
.badge-commercial { background: #FFF7ED; color: #9A3412; }
.badge-house      { background: #FDF2F8; color: #9D174D; }
.badge-villa      { background: #F5F3FF; color: #5B21B6; }

.prop-card-compact-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.prop-card-compact-loc {
    font-size: 11px;
    color: var(--slate);
    display: flex;
    align-items: center;
    gap: 4px;
}

.prop-card-compact-price {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 800;
    color: var(--primary);
    margin-top: 2px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
    padding: 60px 24px;
    background-color: var(--navy);
    background-image:
        linear-gradient(160deg, rgba(10,16,35,0.90) 0%, rgba(12,20,50,0.85) 50%, rgba(8,14,32,0.93) 100%),
        url('/assets/images/why-section-background.png');
    background-size: cover;
    background-position: center 40%;
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(30, 94, 255, .15);
    filter: blur(80px);
    pointer-events: none;
}

.why-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(96, 165, 250, .08);
    filter: blur(60px);
    pointer-events: none;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
}

.why-text .section-label {
    color: #93C5FD;
}

.why-text .section-title {
    color: var(--white);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.why-text .section-sub {
    color: rgba(255, 255, 255, .6);
    margin-bottom: 36px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    background: rgba(30, 94, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #60A5FA;
    flex-shrink: 0;
    border: 1px solid rgba(30, 94, 255, .3);
}

.why-feature-title {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.why-feature-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    line-height: 1.6;
}

.why-visual-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.why-stat-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.why-stat-card:hover {
    background: rgba(30, 94, 255, .15);
    border-color: rgba(30, 94, 255, .4);
}

.why-stat-num {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.why-stat-num span {
    color: #60A5FA;
}

.why-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    padding: 80px 24px;
    background-color: var(--primary);
    /* background-image:
        linear-gradient(135deg, rgba(30,94,255,0.93) 0%, rgba(20,72,204,0.96) 100%),
        url('/assets/images/Pogradeci-hero.png'); */
    background-size: cover;
    background-position: center 60%;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    pointer-events: none;
}

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

.cta-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, .15);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: -.02em;
}

.cta-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    background: rgba(255, 255, 255, .15);
    border: 2px solid rgba(255, 255, 255, .35);
    border-radius: var(--radius);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.cta-btn-ghost:hover {
    background: rgba(255, 255, 255, .25);
    color: var(--white);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--navy);
    color: rgba(255, 255, 255, .65);
    padding: 60px 24px 0;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand-logo {
    margin-top: -50px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 800;
}

.footer-logo-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
}

.footer-logo-name small {
    display: block;
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, .45);
    letter-spacing: .06em;
    text-transform: uppercase;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: rgba(255, 255, 255, .6);
    transition: var(--transition);
    cursor: pointer;
}

.footer-social:hover {
    background: var(--primary);
    color: var(--white);
}

.footer-col-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    font-size: 13px;
    color: rgba(255, 255, 255, .55);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    cursor: pointer;
}

.footer-link i {
    font-size: 10px;
    color: var(--primary);
}

.footer-link:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    align-items: flex-start;
}

.footer-contact-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(30, 94, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--primary);
    flex-shrink: 0;
}

.footer-contact-text {
    font-size: 12px;
    line-height: 1.5;
}

.footer-contact-text strong {
    display: block;
    color: var(--white);
    font-size: 12px;
    margin-bottom: 2px;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 12px;
    flex-wrap: wrap;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-link {
    color: rgba(255, 255, 255, .4);
    transition: var(--transition);
    cursor: pointer;
}

.footer-bottom-link:hover {
    color: rgba(255, 255, 255, .8);
}

/* Footer powered-by */
.footer-powered {
    text-align: center;
    padding: 12px 24px;
    font-size: 11px;
    color: rgba(255, 255, 255, .28);
    border-top: 1px solid rgba(255, 255, 255, .06);
    max-width: 1280px;
    margin: 0 auto;
}

.footer-powered a {
    color: rgba(255, 255, 255, .45);
    text-decoration: underline;
    transition: var(--transition);
}

.footer-powered a:hover {
    color: rgba(255, 255, 255, .75);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 28px 24px;
}

.trust-bar-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-radius: var(--radius);
    background: var(--bg);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.trust-item:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.trust-item:hover .trust-icon {
    background: var(--primary);
    color: var(--white);
}

.trust-title {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.trust-desc {
    font-size: 11px;
    color: var(--slate);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

.fade-up {
    animation: fadeUp .6s ease both;
}

.fade-up-2 {
    animation: fadeUp .6s .15s ease both;
}

.fade-up-3 {
    animation: fadeUp .6s .3s ease both;
}

/* Intersection observer classes */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .3s ease, transform .3s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--slate-light);
}