:root {
    --se-ink: #062b5f;
    --se-muted: #636775;
    --se-soft: #f5f7fa;
    --se-mist: #f7f9fc;
    --se-line: #e1e4eb;
    --se-blue: #053775;
    --se-teal: #c89216;
    --se-green: #df8d07;
    --se-gold: #df8d07;
    --se-gold-dark: #b56f00;
    --se-lime: #fff4d8;
    --se-navy: #062b5f;
    --se-shadow: 0 16px 42px rgba(9, 9, 34, 0.1);
    --se-max: 1280px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    color: var(--se-ink);
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    overflow-x: hidden;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

.se-shell {
    min-height: 100vh;
    background: var(--se-mist);
}

.se-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 86px;
    padding: 18px clamp(36px, 5vw, 72px);
    border-bottom: 1px solid var(--se-line);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    box-shadow: 0 3px 12px rgba(9, 9, 34, 0.08);
}

.se-brand {
    display: inline-flex;
    align-items: center;
    min-width: fit-content;
    color: var(--se-navy);
    font-size: 0 !important;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
}

.se-brand::before {
    content: "";
    flex: 0 0 auto;
    display: block;
    width: 172px;
    height: 58px;
    border-radius: 14px;
    background: #ffffff url("../photos/settle-eazzy-logo-crop.jpg") center / contain no-repeat;
    box-shadow: 0 0 0 1px rgba(5, 55, 117, 0.1);
}

.se-brand span {
    color: var(--se-gold);
}

.se-nav-links,
.se-nav-actions {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.se-nav a {
    font-size: 16px;
    font-weight: 800;
}

.se-pill-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 16px;
    border: 2px solid var(--se-ink);
    border-radius: 8px;
}

.se-menu {
    display: none;
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
    color: var(--se-ink);
    padding: 8px;
}

.se-menu span,
.se-menu::before,
.se-menu::after {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px 0;
    border-radius: 99px;
    background: currentColor;
}

.se-hero {
    min-height: 560px;
    display: flex;
    align-items: center;
    padding: 86px clamp(36px, 5vw, 72px) 64px;
    background:
        linear-gradient(90deg, rgba(0, 20, 38, 0.86), rgba(0, 20, 38, 0.55) 48%, rgba(0, 20, 38, 0.18)),
        url("https://images.unsplash.com/photo-1564013799919-ab600027ffc6?w=1800&auto=format&fit=crop&q=80") center / cover;
    color: #fff;
}

.se-hero-inner,
.se-section {
    width: 100%;
    max-width: var(--se-max);
    margin: 0 auto;
}

.se-hero h1 {
    max-width: 820px;
    margin: 0 0 12px;
    font-size: clamp(38px, 5.4vw, 70px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
}

.se-hero h1 span,
.se-green-text {
    color: var(--se-green);
}

.se-hero p {
    max-width: 680px;
    margin: 0 0 28px;
    font-size: clamp(18px, 2.1vw, 26px);
    line-height: 1.3;
    font-weight: 800;
}

.se-search {
    display: grid;
    grid-template-columns: minmax(220px, 1.35fr) minmax(170px, 0.85fr) minmax(150px, 0.7fr) 150px;
    gap: 10px;
    max-width: 1120px;
    padding: 10px;
    border-radius: 14px;
    background: rgba(5, 8, 43, 0.82);
    box-shadow: var(--se-shadow);
    backdrop-filter: blur(12px);
}

.se-field {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 56px;
    padding: 0 16px;
    border-radius: 8px;
    background: #fff;
    color: var(--se-muted);
}

.se-field i {
    color: var(--se-ink);
    font-size: 22px;
}

.se-field input,
.se-field select {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--se-ink);
    font-weight: 700;
}

.se-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    border: 0;
    border-radius: 8px;
    background: var(--se-green);
    color: #fff;
    font-weight: 900;
    cursor: pointer;
}

.se-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid var(--se-line);
    border-radius: 8px;
    background: #fff;
    color: var(--se-ink);
    font-weight: 900;
}

.se-section {
    padding: 56px clamp(36px, 5vw, 72px);
}

.se-section-title {
    margin: 0 0 18px;
    font-size: clamp(34px, 4.7vw, 58px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0;
}

.se-section-title::after {
    content: "";
    display: block;
    width: 88px;
    height: 6px;
    margin-top: 12px;
    border-radius: 99px;
    background: var(--se-green);
}

.se-market-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.se-filters {
    position: sticky;
    top: 92px;
    display: grid;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--se-line);
    border-radius: 18px;
    background: #fff;
}

.se-filter-group {
    display: grid;
    gap: 9px;
}

.se-filter-group h3 {
    margin: 0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0;
}

.se-check,
.se-radio {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--se-muted);
    font-size: 14px;
    font-weight: 700;
}

.se-range {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.se-range input {
    width: 100%;
    min-height: 42px;
    border: 1px solid var(--se-line);
    border-radius: 8px;
    padding: 0 10px;
    color: var(--se-ink);
    font-weight: 700;
}

.se-results-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.se-results-head h2,
.se-page-title h1 {
    margin: 0;
    font-size: clamp(26px, 3vw, 38px);
    line-height: 1.05;
}

.se-results-head h2::after,
.se-page-title h1::after,
.se-detail-card > h2::after,
.se-panel > h2::after {
    content: "";
    display: block;
    width: 72px;
    height: 5px;
    margin-top: 10px;
    border-radius: 99px;
    background: var(--se-green);
}

.se-results-head p,
.se-page-title p {
    margin: 7px 0 0;
    color: var(--se-muted);
    font-weight: 700;
}

.se-sort {
    min-height: 42px;
    border: 1px solid var(--se-line);
    border-radius: 8px;
    padding: 0 12px;
    background: #fff;
    color: var(--se-ink);
    font-weight: 800;
}

.se-chip-row {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 0 18px;
    scrollbar-width: none;
}

.se-chip-row::-webkit-scrollbar {
    display: none;
}

.se-chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid var(--se-line);
    border-radius: 999px;
    background: #fff;
    color: var(--se-ink);
    font-size: 14px;
    font-weight: 900;
}

.se-chip.is-active {
    border-color: var(--se-ink);
    background: var(--se-ink);
    color: #fff;
}

.se-listings {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.se-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--se-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(9, 9, 34, 0.06);
}

.se-card-media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--se-soft);
}

.se-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.se-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 28px;
    padding: 0 9px;
    border-radius: 999px;
    background: var(--se-green);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.se-card-media .se-badge {
    position: absolute;
    top: 12px;
    left: 12px;
}

.se-save {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--se-ink);
    font-size: 20px;
    cursor: pointer;
}

.se-card-body {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.se-card-title {
    margin: 0;
    font-size: 19px;
    line-height: 1.22;
    font-weight: 900;
}

.se-card-meta,
.se-card-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    color: var(--se-muted);
    font-size: 13px;
    font-weight: 800;
}

.se-price {
    color: var(--se-green);
    font-size: 18px;
    font-weight: 900;
}

.se-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-top: 4px;
}

.se-whatsapp {
    background: #25d366;
    color: #fff;
}

.se-call {
    background: #eef7ff;
    color: #064c91;
}

.se-map-panel {
    min-height: 360px;
    border: 1px solid var(--se-line);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(0, 110, 220, 0.12), rgba(0, 212, 174, 0.16)),
        #f4f8fb;
    overflow: hidden;
}

.se-map-panel iframe {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border: 0;
}

.se-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 36px;
    align-items: start;
}

.se-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 14px;
    margin-bottom: 28px;
}

.se-gallery img {
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
    border-radius: 10px;
}

.se-gallery img:first-child {
    grid-row: span 2;
    min-height: 480px;
}

.se-detail-card,
.se-panel {
    border: 1px solid var(--se-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(9, 9, 34, 0.05);
}

.se-detail-card {
    padding: 30px;
}

.se-panel {
    padding: 24px;
}

.se-sticky {
    position: sticky;
    top: 92px;
}

.se-spec-grid,
.se-area-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.se-package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.se-spec,
.se-area,
.se-package {
    padding: 22px;
    border: 1px solid var(--se-line);
    border-radius: 18px;
    background: #fff;
}

.se-process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.se-process-card {
    min-height: 220px;
    padding: 32px;
    border: 1px solid var(--se-line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(9, 9, 34, 0.06);
}

.se-step {
    display: inline-grid;
    place-items: center;
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    border-radius: 18px;
    background: var(--se-lime);
    color: var(--se-green);
    font-size: 22px;
    font-weight: 900;
}

.se-process-card h3 {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.15;
}

.se-service-card {
    position: relative;
    display: grid;
    gap: 18px;
    min-height: 430px;
    padding: 34px;
    border: 1px solid rgba(0, 139, 62, 0.25);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(9, 9, 34, 0.06);
}

.se-service-icon {
    display: inline-grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: #eef7ff;
    color: var(--se-blue);
    font-size: 34px;
}

.se-service-card h3 {
    margin: 0;
    font-size: 25px;
}

.se-service-price {
    position: absolute;
    top: 32px;
    right: 28px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--se-soft);
    color: var(--se-ink);
    font-weight: 800;
}

.se-check-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: var(--se-muted);
    font-weight: 700;
}

.se-check-list li::before {
    content: "\2713";
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    margin-right: 9px;
    border: 2px solid var(--se-green);
    border-radius: 50%;
    color: var(--se-green);
    font-size: 13px;
    font-weight: 900;
}

.se-cta-band {
    margin-top: 42px;
    padding: clamp(44px, 5vw, 72px);
    border-radius: 24px;
    background: var(--se-navy);
    color: #fff;
    text-align: center;
}

.se-cta-band h2 {
    margin: 0 0 12px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.05;
}

.se-cta-band p {
    max-width: 620px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 19px;
    line-height: 1.5;
}

.se-contact-card {
    padding: 28px;
    border: 1px solid rgba(0, 139, 62, 0.18);
    border-radius: 22px;
    background: #eefcf3;
}

.se-contact-icon {
    display: inline-grid;
    place-items: center;
    width: 78px;
    height: 78px;
    margin-bottom: 24px;
    border-radius: 18px;
    background: #25d366;
    color: #fff;
    font-size: 42px;
}

.se-dark-footer {
    margin-top: 32px;
    padding: 54px clamp(36px, 5vw, 72px);
    background: #062b5f;
    color: rgba(255, 255, 255, 0.72);
}

.se-dark-footer .se-brand {
    color: #fff;
    margin-bottom: 18px;
}

.se-dark-footer-inner {
    max-width: var(--se-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
}

.se-dark-footer h3 {
    color: rgba(255, 255, 255, 0.5);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0;
}

.se-dark-footer a {
    display: block;
    margin-top: 14px;
}

.se-floating-chat,
.se-floating-whatsapp {
    position: fixed;
    z-index: 50;
    right: 24px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.se-floating-chat {
    bottom: 82px;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--se-navy);
    color: #fff;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
}

.se-floating-whatsapp {
    bottom: 24px;
    width: 56px;
    height: 56px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 33px;
}

.se-spec span,
.se-area span,
.se-package span {
    display: block;
    color: var(--se-muted);
    font-size: 13px;
    font-weight: 800;
}

.se-spec strong,
.se-area strong,
.se-package strong {
    display: block;
    margin-top: 6px;
    font-size: 18px;
    line-height: 1.2;
}

.se-copy {
    color: #25283a;
    font-size: 16px;
    line-height: 1.7;
}

.se-stack {
    display: grid;
    gap: 18px;
}

.se-form {
    display: grid;
    gap: 14px;
}

.se-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.se-input {
    display: grid;
    gap: 7px;
}

.se-input label {
    font-size: 14px;
    font-weight: 900;
}

.se-input input,
.se-input select,
.se-input textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--se-line);
    border-radius: 8px;
    padding: 0 12px;
    color: var(--se-ink);
    background: #fff;
    outline: 0;
}

.se-input textarea {
    min-height: 120px;
    padding-top: 12px;
    resize: vertical;
}

.se-footer {
    margin-top: 32px;
    padding: 34px clamp(36px, 5vw, 72px);
    border-top: 1px solid var(--se-line);
    background: var(--se-soft);
}

.se-footer-inner {
    max-width: var(--se-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--se-muted);
    font-weight: 800;
}

@media (max-width: 1120px) {
    .se-listings {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .se-package-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .se-detail-layout {
        grid-template-columns: 1fr;
    }

    .se-sticky {
        position: static;
    }
}

@media (max-width: 900px) {
    .se-nav-links,
    .se-nav-actions {
        display: none;
    }

    .se-menu {
        display: block;
    }

    .se-search,
    .se-market-layout {
        grid-template-columns: 1fr;
    }

    .se-hero {
        min-height: 460px;
    }

    .se-filters {
        position: static;
    }

    .se-spec-grid,
    .se-area-grid,
    .se-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .se-nav {
        min-height: 82px;
        padding: 16px 28px;
    }

    .se-brand {
        font-size: 0;
    }

    .se-brand::before {
        width: 128px;
        height: 46px;
        border-radius: 12px;
    }

    .se-hero {
        min-height: auto;
        padding: 38px 28px 30px;
    }

    .se-section {
        padding: 30px 28px;
    }

    .se-section-title {
        font-size: 42px;
    }

    .se-results-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .se-listings,
    .se-spec-grid,
    .se-area-grid,
    .se-package-grid,
    .se-process-grid,
    .se-form-grid {
        grid-template-columns: 1fr;
    }

    .se-search {
        padding: 0;
        gap: 14px;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
    }

    .se-field {
        height: 58px;
        border-radius: 12px;
        box-shadow: 0 5px 14px rgba(9, 9, 34, 0.08);
    }

    .se-card {
        border-radius: 16px;
    }

    .se-card-actions {
        grid-template-columns: 1fr;
    }

    .se-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .se-gallery img:first-child {
        grid-column: span 2;
        min-height: 260px;
    }

    .se-service-card {
        min-height: auto;
        padding: 30px;
    }

    .se-footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .se-dark-footer-inner {
        grid-template-columns: 1fr;
    }

    .se-floating-chat {
        right: 28px;
        bottom: 86px;
    }

    .se-floating-whatsapp {
        right: 30px;
        bottom: 24px;
    }
}
