
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --primary: #a3d19d;
    --primary-dark: #2d48e0;
    --primary-light: #2d48e0;
    --primary-bg: #FFF4F0;
    --primary-border: #FFD6C7;
    --primary-soft: #FFF8F5;
    --accent: #FF6B35;
    --accent-dark: #E55A2B;
    --dark: #1E1E1E;
    --dark-soft: #333333;
    --text: #2D2D2D;
    --text-secondary: #5F6368;
    --text-muted: #9AA0A6;
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-section: #FAFBFC;
    --border: #E5E7EB;
    --border-light: #F0F0F0;
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.12);
    --shadow-primary: 0 8px 30px rgba(42, 224, 18, 0.15);
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: all 0.25s ease;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    font-family: inherit;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-primary:hover {
    background: #22c010;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(42, 224, 18, 0.3);
}
.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}
.btn-outline:hover {
    background: var(--primary);
    color: #fff;
}
.btn-accent {
    background: var(--accent);
    color: #fff;
}
.btn-accent:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}
.btn-white {
    background: #fff;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-white:hover {
    background: var(--primary);
    color: #fff;
}
.btn-sm {
    padding: 7px 16px;
    font-size: 13px;
}
.btn-lg {
    padding: 14px 30px;
    font-size: 16px;
}

/* TOP BAR */
.top-bar {
    background: var(--dark);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.top-bar a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}
.top-bar a:hover {
    color: var(--primary);
}
.top-bar .left-links {
    display: flex;
    gap: 20px;
}
.top-bar .right-links {
    display: flex;
    gap: 15px;
    align-items: center;
}
.top-bar .social-icons {
    display: flex;
    gap: 10px;
}
.top-bar .social-icons a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: var(--transition);
}
.top-bar .social-icons a:hover {
    background: var(--primary);
}

/* HEADER */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-xs);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: -0.5px;
    box-shadow: 0 3px 10px rgba(42, 224, 18, 0.3);
}
.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.3px;
}
.logo-text span {
    color: var(--primary);
}
.nav {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav a {
    padding: 8px 16px;
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition);
    position: relative;
}
.nav a:hover,
.nav a.active {
    color: var(--primary);
    background: var(--primary-soft);
}
.nav a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}
.header-cta {
    display: flex;
    gap: 10px;
    align-items: center;
}
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text);
}

/* HERO */
.hero {
    position: relative;
    min-height: 440px;
    height: auto;
    padding: 60px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('hero-bg.png') center/cover no-repeat;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(42, 224, 18, 0.85), rgba(30, 30, 30, 0.88));
    background-size: 200% 200%;
    animation: heroShift 10s ease infinite;
}
@keyframes heroShift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    padding: 0 20px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    padding: 6px 18px;
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    animation: badgePulse 3s ease infinite;
}
@keyframes badgePulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
}
.hero h1 {
    color: #fff;
    font-size: clamp(32px, 5vw, 54px);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}
.hero p {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(15px, 2vw, 18px);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.hero-stat {
    text-align: center;
}
.hero-stat .number {
    font-size: 34px;
    font-weight: 800;
    color: #fff;
}
.hero-stat .number span {
    color: var(--accent);
}
.hero-stat .label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* BREADCRUMB */
.breadcrumb {
    padding: 14px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
}
.breadcrumb ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    font-size: 13px;
}
.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}
.breadcrumb a:hover {
    color: var(--primary);
}
.breadcrumb .sep {
    color: var(--text-muted);
}
.breadcrumb .current {
    color: var(--primary);
    font-weight: 600;
}

/* FILTER BAR */
.filter-bar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 68px;
    z-index: 100;
    box-shadow: var(--shadow-xs);
}
.filter-bar .container {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.filter-bar h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}
.filter-group {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    flex: 1;
}
.filter-chip {
    padding: 6px 16px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: var(--bg-white);
    color: var(--text);
    font-size: 12.5px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.filter-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.filter-chip.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(42, 224, 18, 0.25);
}
.filter-search {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border: 1.5px solid var(--border);
    border-radius: 50px;
    padding: 0 14px;
    gap: 8px;
    min-width: 200px;
    transition: var(--transition);
}
.filter-search:focus-within {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(42, 224, 18, 0.1);
}
.filter-search input {
    border: none;
    background: none;
    padding: 7px 0;
    font-size: 13px;
    outline: none;
    width: 100%;
    font-family: inherit;
}
.results-count {
    font-size: 12px;
    color: var(--text-muted);
    white-space: nowrap;
    background: var(--primary-soft);
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 600;
}

/* MAIN LAYOUT */
.main-layout {
    display: flex;
    gap: 28px;
    padding: 28px 0 60px;
}
.main-content {
    flex: 1;
    min-width: 0;
}
.sidebar {
    width: 295px;
    flex-shrink: 0;
}

/* SORT BAR */
.sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 12px 18px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}
.sort-bar .left {
    font-size: 13px;
    color: var(--text-secondary);
}
.sort-bar .left strong {
    color: var(--primary);
    font-weight: 700;
}
.sort-select {
    padding: 6px 12px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 13px;
    font-family: inherit;
    color: var(--text);
    background: var(--bg-white);
    cursor: pointer;
    outline: none;
}
.sort-select:focus {
    border-color: var(--primary);
}
.view-toggle {
    display: flex;
    gap: 4px;
}
.view-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border);
    background: var(--bg-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}
.view-btn.active,
.view-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-soft);
}

/* PROJECT CARDS */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(370px, 1fr));
    gap: 22px;
}
.projects-grid.list-view {
    grid-template-columns: 1fr;
    gap: 14px;
}
.project-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    opacity: 0;
    animation: cardIn 0.5s ease forwards;
}
@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
    border-color: rgba(42, 224, 18, 0.15);
}
.project-card .card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.project-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.project-card:hover .card-image img {
    transform: scale(1.07);
}
.project-card .card-image .badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.badge {
    padding: 4px 11px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.badge-new {
    background: var(--accent);
    color: #fff;
}
.badge-sale {
    background: #ef4444;
    color: #fff;
}
.badge-featured {
    background: var(--primary);
    color: #fff;
}
.badge-possession {
    background: #7c3aed;
    color: #fff;
}
.badge-hot {
    background: linear-gradient(135deg, #ef4444, #f97316);
    color: #fff;
    animation: hotPulse 2s ease infinite;
}
@keyframes hotPulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.3);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }
}
.project-card .wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-muted);
}
.project-card .wishlist:hover,
.project-card .wishlist.active {
    color: #ef4444;
    background: #fff;
    transform: scale(1.1);
}
.project-card .price-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: rgba(42, 224, 18, 0.9);
    backdrop-filter: blur(8px);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.project-card .price-tag .price {
    font-size: 17px;
    font-weight: 800;
    text-align: center;
    flex: 1;
}
.project-card .price-tag .rate {
    font-size: 11px;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.15);
    padding: 3px 8px;
    border-radius: 50px;
    font-weight: 600;
    position: absolute;
    right: 16px;
}
.project-card .card-body {
    padding: 18px;
}
.project-card .developer-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: var(--text-muted);
    margin-bottom: 5px;
}
.project-card .developer-row img {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    object-fit: cover;
}
.project-card .card-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
    line-height: 1.3;
}
.project-card .card-body h3 a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}
.project-card .card-body h3 a:hover {
    color: var(--primary);
}
.project-card .location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12.5px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}
.project-card .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 12px;
}
.project-card .tag {
    padding: 3px 9px;
    background: var(--bg-light);
    border-radius: 50px;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: var(--transition);
}
.project-card .tag:hover {
    background: var(--primary-soft);
    color: var(--primary);
}

/* PROGRESS BAR */
.card-progress {
    margin-bottom: 14px;
}
.progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    margin-bottom: 4px;
}
.progress-header .label {
    color: var(--text-muted);
    font-weight: 500;
}
.progress-header .value {
    font-weight: 700;
}
.progress-header .value.green {
    color: #22c55e;
}
.progress-header .value.amber {
    color: var(--accent);
}
.progress-header .value.blue {
    color: #3b82f6;
}
.progress-bar {
    height: 5px;
    background: var(--border);
    border-radius: 10px;
    overflow: hidden;
}
.progress-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 0;
}
.progress-fill.green {
    background: linear-gradient(90deg, #22c55e, #16a34a);
}
.progress-fill.amber {
    background: linear-gradient(90deg, var(--accent), #f97316);
}
.progress-fill.blue {
    background: linear-gradient(90deg, #3b82f6, #6366f1);
}

/* PARKING TAG */
.parking-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 9px;
    background: #eff6ff;
    border-radius: 50px;
    font-size: 10.5px;
    font-weight: 600;
    color: #2563eb;
}

/* HIGHLIGHTS */
.project-card .highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}
.project-card .highlight {
    text-align: center;
}
.project-card .highlight .val {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
}
.project-card .highlight .lbl {
    font-size: 9.5px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 1px;
}
.project-card .card-footer {
    display: flex;
    gap: 8px;
    padding: 12px 18px;
    border-top: 1px solid var(--border);
    background: #fafafa;
}
.project-card .card-footer .btn {
    flex: 1;
    justify-content: center;
    font-size: 12.5px;
    padding: 8px 14px;
}

/* LIST VIEW */
.projects-grid.list-view .project-card {
    display: grid;
    grid-template-columns: 320px 1fr;
}
.projects-grid.list-view .card-image {
    height: 100%;
    min-height: 280px;
}
.projects-grid.list-view .card-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.projects-grid.list-view .card-footer {
    border-top: none;
    border-left: 1px solid var(--border);
    flex-direction: column;
    justify-content: center;
    background: var(--bg-white);
    padding: 18px;
}

/* SIDEBAR */
.sidebar-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 22px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}
.sidebar-card-header {
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 8px;
}
.sidebar-card-header i {
    color: var(--primary);
}
.sidebar-card-body {
    padding: 18px;
}
.enquiry-form textarea {
    width: 100%;
    padding: 9px 12px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 13px;
    font-family: inherit;
    resize: vertical;
    min-height: 70px;
    outline: none;
    transition: var(--transition);
}
.enquiry-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(42, 224, 18, 0.1);
}
.enquiry-form input {
    width: 100%;
    padding: 9px 12px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}
.enquiry-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(42, 224, 18, 0.1);
}
.enquiry-form .form-group {
    margin-bottom: 12px;
}

/* WHY CHOOSE */
.why-choose {
    background: var(--bg-white);
    padding: 60px 0;
}
.why-choose h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}
.why-choose p.sub {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.why-card {
    text-align: center;
    padding: 28px 18px;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--border);
    transition: var(--transition);
}
.why-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-primary);
    transform: translateY(-4px);
}
.why-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    background: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: var(--primary);
}
.why-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}
.why-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}
.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
}
.cta-section .container {
    position: relative;
    z-index: 2;
}
.cta-section h2 {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}
.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    font-size: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.cta-section .btn-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FOOTER */
.footer {
    background: var(--dark);
    color: #fff;
    padding: 40px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.65fr 0.65fr 1.15fr;
    gap: 70px;
    margin-bottom: 30px;
}
.footer-brand .logo {
    margin-bottom: 10px;
}
.footer-brand .logo-text {
    color: #fff;
}
.footer-brand p {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 14px;
}
.footer-social {
    display: flex;
    gap: 6px;
}
.footer-social a {
    width: 32px;
    height: 32px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    text-decoration: none;
}
.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}
.footer h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
    position: relative;
    padding-bottom: 8px;
}
.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 12.5px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 4px;
}
.footer-links a:hover {
    color: #fff;
    padding-left: 3px;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 10px;
    list-style: none;
    line-height: 1.5;
}
.footer-contact li i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
}

/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}
.whatsapp-float a {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    text-decoration: none;
}
.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}
.whatsapp-float .tooltip {
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-white);
    color: var(--text);
    padding: 7px 12px;
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.whatsapp-float:hover .tooltip {
    opacity: 1;
}

/* BACK TO TOP */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 24px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    box-shadow: 0 3px 12px rgba(42, 224, 18, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
}
.back-to-top.show {
    opacity: 1;
    pointer-events: auto;
}
.back-to-top:hover {
    transform: translateY(-3px);
    background: var(--primary-dark);
}

/* MODAL */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.modal-overlay.show {
    opacity: 1;
    pointer-events: auto;
}
.modal {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    width: 90%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}
.modal-overlay.show .modal {
    transform: translateY(0) scale(1);
}
.modal-header {
    padding: 18px 22px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-header h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
}
.modal-close {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: none;
    background: var(--bg-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: var(--transition);
}
.modal-close:hover {
    background: #ef4444;
    color: #fff;
}
.modal-body {
    padding: 22px;
}
.form-group {
    margin-bottom: 14px;
}
.form-group label {
    display: block;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 9px 13px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(42, 224, 18, 0.1);
}
.form-group textarea {
    resize: vertical;
    min-height: 75px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.modal-footer {
    padding: 14px 22px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 8px;
    justify-content: flex-end;
}
.form-success {
    text-align: center;
    padding: 36px 20px;
}
.form-success .check-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.form-success h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}
.form-success p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* TOAST */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.toast {
    padding: 12px 18px;
    border-radius: var(--radius-md);
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 4px solid var(--primary);
    min-width: 260px;
}
.toast.show {
    transform: translateX(0);
}
.toast.error {
    border-left-color: #ef4444;
}
.toast i {
    flex-shrink: 0;
}

/* NO RESULTS */
.no-results {
    text-align: center;
    padding: 60px 20px;
}
.no-results h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.no-results p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE NAV */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.mobile-nav-overlay.show {
    opacity: 1;
    pointer-events: auto;
}
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: var(--bg-white);
    z-index: 1002;
    transform: translateX(100%);
    transition: transform 0.3s;
    padding: 20px;
    overflow-y: auto;
}
.mobile-nav.show {
    transform: translateX(0);
}
.mobile-nav .close-mobile {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    padding: 8px;
    float: right;
}
.mobile-nav .nav-links {
    clear: both;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mobile-nav .nav-links a {
    padding: 11px 14px;
    border-radius: var(--radius-md);
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}
.mobile-nav .nav-links a:hover,
.mobile-nav .nav-links a.active {
    background: var(--primary-soft);
    color: var(--primary);
}
.mobile-nav .mobile-cta {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .sidebar {
        display: none;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    }
    .projects-grid.list-view .project-card {
        grid-template-columns: 250px 1fr;
    }
}
@media(max-width:768px) {
    .top-bar .left-links {
        display: none;
    }
    .nav {
        display: none;
    }
    .header-cta .btn-outline,
    .header-cta .btn-accent {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .hero {
        min-height: 340px;
        height: auto;
        padding: 40px 0;
    }
    .hero-stats {
        gap: 20px;
    }
    .hero-stat .number {
        font-size: 24px;
    }
    .filter-bar .container {
        flex-direction: column;
        align-items: stretch;
    }
    .filter-search {
        min-width: auto;
    }
    .sort-bar {
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }
    .sort-bar>div {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .projects-grid {
        grid-template-columns: 1fr;
    }
    .projects-grid.list-view .project-card {
        grid-template-columns: 1fr;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .cta-section h2 {
        font-size: 24px;
    }
}
