:root {
    /* Typography */
    --color-heading-primary: #1A1A1A;
    --color-heading-secondary: #3D3D3D;
    --color-body: #6B6B6B;
    --color-caption: #9A9A9A;

    /* Brand and interaction */
    --color-brand: #0F6E56;
    --color-primary: #E07A3F;
    --color-primary-hover: #C96932;
    --color-secondary: #C08552;
    --color-secondary-hover: #A96E43;

    /* Surfaces */
    --color-white: #FFFFFF;
    --color-page-bg: #FAF8F5;
    --color-border: #EAEAEA;

    /* Status */
    --color-success: #4C8C3C;
    --color-danger: #B5352E;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.06);
    --shadow-md: 0 8px 24px rgba(26, 26, 26, 0.10);
    --shadow-lg: 0 16px 40px rgba(26, 26, 26, 0.14);

    /* Layout */
    --container-width: 1280px;
    --navbar-height: 76px;

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* Motion */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--color-page-bg);
    color: var(--color-body);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

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

a {
    color: var(--color-brand);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-primary);
}

h1,
h2 {
    color: var(--color-heading-primary);
    font-weight: 700;
    line-height: 1.2;
}

h3,
h4,
h5,
h6 {
    color: var(--color-heading-secondary);
    font-weight: 600;
    line-height: 1.3;
}

p {
    color: var(--color-body);
}

small,
.caption,
.text-muted {
    color: var(--color-caption);
}

.container {
    width: min(100% - 32px, var(--container-width));
    margin-inline: auto;
}

.section {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 16px;
    text-align: center;
}

.section-subtitle {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
    color: var(--color-body);
}

.card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition:
        transform var(--transition-normal),
        box-shadow var(--transition-normal);
}

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





.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition:
        background var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: var(--color-white);
}

.btn-secondary {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-white);
}

.btn-secondary:hover {
    background: var(--color-secondary-hover);
    border-color: var(--color-secondary-hover);
    color: var(--color-white);
}

.btn-outline {
    background: transparent;
    border-color: var(--color-brand);
    color: var(--color-brand);
}

.btn-outline:hover {
    background: var(--color-brand);
    color: var(--color-white);
}




.alert-success {
    background: rgba(76, 140, 60, 0.10);
    border: 1px solid rgba(76, 140, 60, 0.25);
    color: var(--color-success);
}

.alert-danger {
    background: rgba(181, 53, 46, 0.10);
    border: 1px solid rgba(181, 53, 46, 0.25);
    color: var(--color-danger);
}




/* ==========================================================
   Shared Internal Page Hero Universal
========================================================== */

.site-page-hero {
    --hero-accent-primary: 15, 110, 86;
    --hero-accent-secondary: 224, 122, 63;

    position: relative;
    isolation: isolate;
    overflow: hidden;

    padding: 42px 0 66px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(var(--hero-accent-secondary), 0.10),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            rgba(var(--hero-accent-primary), 0.07),
            rgba(250, 248, 245, 0.82)
        ),
        var(--color-page-bg, #faf8f5);

    border-bottom:
        1px solid
        rgba(var(--hero-accent-primary), 0.09);
}


/* Large teal circle */

.site-page-hero::before {
    position: absolute;
    top: -160px;
    right: -120px;
    width: 390px;
    height: 390px;
    content: "";
    border: 75px solid rgba(15, 110, 86, 0.035);
    border-radius: 50%;
    pointer-events: none;
}


/* Lower orange circle */

.site-page-hero::after {
    position: absolute;
    right: 70px;
    bottom: -190px;
    z-index: -1;

    width: 330px;
    height: 330px;

    content: "";

    border:
        1px solid
        rgba(var(--hero-accent-secondary), 0.22);

    border-radius: 50%;
    border: 75px solid rgba(15, 110, 86, 0.035);
    pointer-events: none;
}


.site-page-hero .container {
    position: relative;
    z-index: 2;
}


/* Breadcrumb */

.site-page-hero .page-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;

    margin-bottom: 28px;

    color: var(--color-caption, #9a9a9a);

    font-size: 13px;
    line-height: 1.5;
}


.site-page-hero .page-breadcrumb a {
    color: var(--color-brand, #0f6e56);
    font-weight: 700;
}


.site-page-hero .page-breadcrumb i {
    font-size: 10px;
}


/* Hero content */

.site-page-hero-content {
    max-width: 820px;
}


.site-page-hero .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    margin-bottom: 12px;

    color: var(--color-brand, #0f6e56);

    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}


.site-page-hero h1 {
    max-width: 860px;

    margin: 0 0 18px;

    color: var(--color-heading-primary, #1a1a1a);

    font-size: clamp(42px, 5vw, 64px);
    font-weight: 750;
    line-height: 1.08;
    letter-spacing: -0.04em;
}


.site-page-hero h1 span {
    color: var(--color-brand, #0f6e56);
}


.site-page-hero-content > p {
    max-width: 700px;

    margin: 0;

    color: var(--color-body, #6b6b6b);

    font-size: 17px;
    line-height: 1.78;
}


/* Hero actions */

.site-page-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 28px;
}


.site-page-hero-primary,
.site-page-hero-secondary {
    min-height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 12px 21px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.site-page-hero-primary {
    background: var(--color-primary, #e07a3f);
    border: 1px solid var(--color-primary, #e07a3f);
    color: #ffffff;
}


.site-page-hero-primary:hover {
    background: var(--color-primary-hover, #c96832);
    border-color: var(--color-primary-hover, #c96832);
    color: #ffffff;

    transform: translateY(-2px);
}


.site-page-hero-secondary {
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(15, 110, 86, 0.20);
    color: var(--color-brand, #0f6e56);
}


.site-page-hero-secondary:hover {
    background: var(--color-brand, #0f6e56);
    border-color: var(--color-brand, #0f6e56);
    color: #ffffff;

    transform: translateY(-2px);
}




.core-page-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #0f6e56;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.core-page-eyebrow::before {
    width: 25px;
    height: 2px;
    background: #e07a3f;
    content: "";
}



/* ==========================================================
   HOMEDEN FLOATING MESSAGES universal
========================================================== */

.site-messages {
    position: fixed;

    top:
        calc(
            var(--site-header-height, 122px)
            + 14px
        );

    right: 18px;

    z-index: 1085;

    width:
        min(
            calc(100% - 36px),
            440px
        );

    display: flex;
    flex-direction: column;
    gap: 10px;

    pointer-events: none;
}


/* ==========================================================
   Message Card
========================================================== */

.site-message {
    --message-accent: #0f6e56;
    --message-accent-rgb: 15, 110, 86;
    --message-surface: rgba(255, 255, 255, 0.94);

    position: relative;

    width: 100%;
    min-height: 78px;

    display: grid;
    grid-template-columns:
        46px
        minmax(0, 1fr)
        36px;

    align-items: center;
    gap: 12px;

    overflow: hidden;

    margin: 0;
    padding: 14px 13px 14px 14px;

    background:
        linear-gradient(
            145deg,
            var(--message-surface),
            rgba(250, 248, 245, 0.91)
        );

    border:
        1px solid
        rgba(var(--message-accent-rgb), 0.14);

    border-left:
        4px solid
        var(--message-accent);

    border-radius: 16px;

    color:
        var(--color-body, #6b6b6b);

    box-shadow:
        0 18px 42px
        rgba(20, 34, 29, 0.16),
        inset 0 1px 0
        rgba(255, 255, 255, 0.94);

    backdrop-filter:
        blur(22px)
        saturate(155%);

    -webkit-backdrop-filter:
        blur(22px)
        saturate(155%);

    pointer-events: auto;

    animation:
        siteMessageEnter
        0.38s
        cubic-bezier(0.22, 1, 0.36, 1)
        both;
}


/* Light highlight */

.site-message::before {
    position: absolute;
    inset: 0;

    content: "";

    background:
        linear-gradient(
            115deg,
            rgba(var(--message-accent-rgb), 0.07),
            transparent 48%
        );

    pointer-events: none;
}


/* ==========================================================
   Message Variants
========================================================== */

.site-message-success {
    --message-accent: #4c8c3c;
    --message-accent-rgb: 76, 140, 60;
}

.site-message-danger {
    --message-accent: #b5352e;
    --message-accent-rgb: 181, 53, 46;
}

.site-message-warning {
    --message-accent: #c08552;
    --message-accent-rgb: 192, 133, 82;
}

.site-message-info {
    --message-accent: #0f6e56;
    --message-accent-rgb: 15, 110, 86;
}


/* ==========================================================
   Icon
========================================================== */

.site-message-icon {
    position: relative;
    z-index: 1;

    width: 44px;
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 auto;

    background:
        rgba(var(--message-accent-rgb), 0.11);

    border:
        1px solid
        rgba(var(--message-accent-rgb), 0.13);

    border-radius: 14px;

    color:
        var(--message-accent);

    font-size: 19px;
    line-height: 1;

    box-shadow:
        inset 0 1px 0
        rgba(255, 255, 255, 0.76);
}


/* ==========================================================
   Content
========================================================== */

.site-message-content {
    position: relative;
    z-index: 1;

    min-width: 0;
}

.site-message-title {
    display: block;

    margin-bottom: 3px;

    color:
        var(--color-heading-primary, #1a1a1a);

    font-size: 14px;
    font-weight: 800;
    line-height: 1.3;
}

.site-message-text {
    color:
        var(--color-body, #6b6b6b);

    font-size: 12px;
    font-weight: 500;
    line-height: 1.55;

    overflow-wrap: anywhere;
}


/* ==========================================================
   Close Button
========================================================== */

.site-message-close {
    position: relative;
    z-index: 2;

    width: 34px;
    height: 34px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    align-self: start;

    padding: 0;

    background:
        rgba(255, 255, 255, 0.66);

    border:
        1px solid
        rgba(61, 61, 61, 0.08);

    border-radius: 50%;

    color:
        var(--color-caption, #9a9a9a);

    font-size: 12px;

    cursor: pointer;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.site-message-close:hover,
.site-message-close:focus-visible {
    background:
        rgba(var(--message-accent-rgb), 0.09);

    color:
        var(--message-accent);

    outline: none;

    transform: rotate(8deg);
}


/* ==========================================================
   Progress Bar
========================================================== */

.site-message-progress {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    z-index: 2;

    height: 3px;

    background:
        var(--message-accent);

    border-radius:
        0 0 16px 16px;

    transform-origin: left center;

    animation:
        siteMessageProgress
        5.5s
        linear
        forwards;
}


/* Pause progress while interacting */

.site-message:hover
.site-message-progress,
.site-message:focus-within
.site-message-progress {
    animation-play-state: paused;
}


/* ==========================================================
   Bootstrap Dismiss Animation
========================================================== */

.site-message.fade {
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.site-message.fade:not(.show) {
    opacity: 0;
    transform:
        translateX(24px)
        scale(0.97);
}


/* ==========================================================
   Animations
========================================================== */

@keyframes siteMessageEnter {

    from {
        opacity: 0;

        transform:
            translateX(34px)
            scale(0.96);
    }

    to {
        opacity: 1;

        transform:
            translateX(0)
            scale(1);
    }

}

@keyframes siteMessageProgress {

    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }

}



/* home hero page */
.home-hero {
    padding: 72px 0;
    background:
        linear-gradient(
            110deg,
            var(--color-page-bg) 0%,
            #ffffff 100%
        );
}

.home-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.hero-eyebrow,
.section-eyebrow {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--color-brand);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.home-hero h1 {
    max-width: 720px;
    margin-bottom: 24px;
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.08;
}

.home-hero h1 span {
    color: var(--color-brand);
}

.home-hero-content > p {
    max-width: 650px;
    margin-bottom: 30px;
    font-size: 18px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn-primary-custom {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #ffffff;
}

.btn-primary-custom:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #ffffff;
}

.btn-outline-custom {
    background: transparent;
    border: 1px solid var(--color-brand);
    color: var(--color-brand);
}

.btn-outline-custom:hover {
    background: var(--color-brand);
    color: #ffffff;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 42px;
}

.hero-trust div {
    display: flex;
    flex-direction: column;
}

.hero-trust strong {
    color: var(--color-heading-primary);
    font-size: 22px;
}

.hero-trust span {
    color: var(--color-caption);
    font-size: 13px;
}

.home-hero-image {
    position: relative;
}

.home-hero-image img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.hero-floating-card {
    position: absolute;
    left: -30px;
    bottom: 36px;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 280px;
    padding: 18px 20px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
}

.hero-floating-card i {
    color: var(--color-brand);
    font-size: 28px;
}

.hero-floating-card div {
    display: flex;
    flex-direction: column;
}

.hero-floating-card strong {
    color: var(--color-heading-primary);
}

.hero-floating-card span {
    color: var(--color-caption);
    font-size: 13px;
}

.home-intro-section {
    padding: 90px 0;
    background: #ffffff;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 46px;
    text-align: center;
}

.section-heading h2 {
    margin-bottom: 18px;
    font-size: clamp(32px, 4vw, 48px);
}

.home-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.home-feature-card {
    display: block;
    padding: 30px;
    background: var(--color-page-bg);
    border: 1px solid var(--color-border);
    border-radius: 18px;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.home-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(15, 110, 86, 0.3);
    box-shadow: var(--shadow-md);
}

.home-feature-card > i {
    margin-bottom: 22px;
    color: var(--color-brand);
    font-size: 30px;
}

.home-feature-card h3 {
    margin-bottom: 12px;
}

.home-feature-card p {
    min-height: 78px;
}

.home-feature-card span {
    color: var(--color-primary);
    font-weight: 700;
}

.home-feature-card span i {
    margin-left: 6px;
}






/* ==============================
   Hero Banner
============================== */

.hero-banner {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    padding: 70px 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(390px, 0.9fr);
    align-items: center;
    gap: 70px;
}

.hero-content {
    max-width: 720px;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
}

.hero-content h1 {
    max-width: 760px;
    margin-bottom: 24px;
    color: #ffffff;
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 700;
    line-height: 1.07;
    letter-spacing: -1.5px;
}

.hero-description {
    max-width: 650px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 18px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-primary-btn,
.hero-secondary-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 23px;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 700;
}

.hero-primary-btn {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #ffffff;
}

.hero-primary-btn:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #ffffff;
}

.hero-secondary-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.75);
    color: #ffffff;
    backdrop-filter: blur(8px);
}

.hero-secondary-btn:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--color-brand);
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 13px 28px;
    margin-top: 35px;
}

.hero-benefit {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.hero-benefit i {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: 50%;
    color: #ffffff;
    font-size: 10px;
}

/* ==============================
   Hero Lead Form
============================== */

.hero-form-card {
    padding: 32px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 18px;
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.22);
}

.hero-form-header {
    margin-bottom: 24px;
}

.hero-form-header .form-label {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--color-brand);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.hero-form-header h2 {
    margin-bottom: 10px;
    color: var(--color-heading-primary);
    font-size: 27px;
}

.hero-form-header p {
    margin: 0;
    color: var(--color-body);
    font-size: 14px;
}

.hero-lead-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-lead-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}

.hero-lead-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.hero-lead-form label {
    color: var(--color-heading-secondary);
    font-size: 13px;
    font-weight: 700;
}

.hero-lead-form label span {
    color: var(--color-caption);
    font-size: 11px;
    font-weight: 400;
}

.hero-lead-form input,
.hero-lead-form select,
.hero-lead-form textarea {
    width: 100%;
    min-height: 46px;
    padding: 11px 13px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 7px;
    color: var(--color-heading-primary);
    font-family: inherit;
    font-size: 14px;
    outline: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.hero-lead-form textarea {
    min-height: 82px;
    resize: vertical;
}

.hero-lead-form input:focus,
.hero-lead-form select:focus,
.hero-lead-form textarea:focus {
    border-color: var(--color-brand);
    box-shadow:
        0 0 0 3px rgba(15, 110, 86, 0.11);
}

.mobile-field {
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--color-border);
    border-radius: 7px;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.mobile-field:focus-within {
    border-color: var(--color-brand);
    box-shadow:
        0 0 0 3px rgba(15, 110, 86, 0.11);
}

.mobile-field span {
    padding: 0 12px;
    color: var(--color-heading-secondary);
    font-size: 14px;
    font-weight: 700;
    border-right: 1px solid var(--color-border);
}

.mobile-field input {
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.mobile-field input:focus {
    box-shadow: none;
}

.hero-submit-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 20px;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 7px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.hero-submit-btn:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    transform: translateY(-1px);
}

.hero-form-consent {
    margin: 0;
    color: var(--color-caption);
    font-size: 10px;
    line-height: 1.5;
    text-align: center;
}

/* ==============================
   Responsive Hero
============================== */

@media (max-width: 1199px) {
    .hero-grid {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(360px, 0.85fr);
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 52px;
    }
}

@media (max-width: 991px) {
    .hero-banner {
        padding: 60px 0;
    }

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

    .hero-content {
        max-width: 780px;
    }

    .hero-form-card {
        max-width: 700px;
    }
}

@media (max-width: 575px) {
    .hero-banner {
        padding: 45px 0;
    }

    .hero-content h1 {
        font-size: 38px;
        letter-spacing: -0.7px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-primary-btn,
    .hero-secondary-btn {
        width: 100%;
    }

    .hero-benefits {
        grid-template-columns: 1fr;
    }

    .hero-form-card {
        padding: 23px 18px;
        border-radius: 14px;
    }

    .hero-form-header h2 {
        font-size: 23px;
    }

    .hero-lead-form .form-row {
        grid-template-columns: 1fr;
    }
}





/* ==============================
   Trust Strip
============================== */

.trust-strip {
    position: relative;
    z-index: 5;
    background: #ffffff;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 108px;
    padding: 22px 24px;
    border-right: 1px solid var(--color-border);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(15, 110, 86, 0.1);
    border-radius: 50%;
    color: var(--color-brand);
    font-size: 18px;
}

.trust-content {
    display: flex;
    flex-direction: column;
}

.trust-content strong {
    color: var(--color-heading-primary);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.trust-content span {
    margin-top: 4px;
    color: var(--color-body);
    font-size: 13px;
}


/* ==============================
   Design Ideas Section
============================== */

.design-ideas-section {
    padding: 90px 0;
    background: var(--color-page-bg);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--color-brand);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.section-heading h2 {
    margin-bottom: 16px;
    color: var(--color-heading-primary);
    font-size: clamp(32px, 4vw, 48px);
}

.section-heading p {
    margin: 0;
    color: var(--color-body);
    font-size: 16px;
}

.design-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.design-category-card {
    display: block;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.design-category-image {
    position: relative;
    height: 320px;
    overflow: hidden;
    background: #e8e3dc;
}

.design-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

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

.design-category-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(15, 110, 86, 0.15),
            rgba(224, 122, 63, 0.16)
        );
    color: var(--color-brand);
    font-size: 48px;
}

.design-category-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(15, 27, 23, 0.88) 0%,
            rgba(15, 27, 23, 0.2) 55%,
            transparent 100%
        );
}

.design-category-content {
    position: absolute;
    right: 22px;
    bottom: 22px;
    left: 22px;
    z-index: 2;
}

.design-category-content h3 {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 21px;
}

.design-category-content span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
}

.design-category-arrow {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    color: var(--color-brand);
    transform: translateY(-8px);
    opacity: 0;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.design-category-card:hover .design-category-arrow {
    transform: translateY(0);
    opacity: 1;
}

.section-action {
    margin-top: 42px;
    text-align: center;
}

.section-outline-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 22px;
    border: 1px solid var(--color-brand);
    color: var(--color-brand);
    font-weight: 700;
}

.section-outline-button:hover {
    background: var(--color-brand);
    color: #ffffff;
}

.empty-section-message {
    grid-column: 1 / -1;
    padding: 50px 25px;
    background: #ffffff;
    border: 1px dashed var(--color-border);
    border-radius: 16px;
    text-align: center;
}

.empty-section-message i {
    margin-bottom: 18px;
    color: var(--color-brand);
    font-size: 42px;
}

.empty-section-message h3 {
    margin-bottom: 8px;
}




/* ==============================
   Home Services
============================== */

.home-services-section {
    padding: 90px 0;
    background: #ffffff;
}

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

.home-service-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.home-service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(15, 110, 86, 0.25);
    box-shadow: var(--shadow-md);
}

.home-service-image {
    position: relative;
    display: block;
    height: 225px;
    overflow: hidden;
    background: var(--color-page-bg);
}

.home-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.home-service-card:hover .home-service-image img {
    transform: scale(1.06);
}

.home-service-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(15, 110, 86, 0.12),
            rgba(224, 122, 63, 0.15)
        );
    color: var(--color-brand);
    font-size: 42px;
}

.service-featured-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 11px;
    background: var(--color-primary);
    border-radius: 30px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.home-service-content {
    position: relative;
    padding: 28px 22px 24px;
}

.home-service-icon {
    position: absolute;
    top: -27px;
    right: 22px;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-brand);
    font-size: 20px;
    box-shadow: var(--shadow-sm);
}

.home-service-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.home-service-content h3 {
    margin: 0 60px 12px 0;
    font-size: 20px;
}

.home-service-content h3 a {
    color: var(--color-heading-secondary);
}

.home-service-content h3 a:hover {
    color: var(--color-brand);
}

.home-service-content p {
    min-height: 68px;
    margin-bottom: 18px;
    color: var(--color-body);
    font-size: 14px;
    line-height: 1.6;
}

.service-price {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--color-border);
}

.service-price span {
    color: var(--color-caption);
    font-size: 12px;
}

.service-price strong {
    color: var(--color-heading-primary);
    font-size: 18px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-brand);
    font-size: 14px;
    font-weight: 700;
}

.service-card-link i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.service-card-link:hover i {
    transform: translateX(4px);
}




/* ==============================
   Home Estimate CTA
============================== */

.home-estimate-section {
    padding: 90px 0;
    background: var(--color-page-bg);
}

.estimate-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 65px;
    padding: 55px;
    background:
        linear-gradient(
            135deg,
            rgba(15, 110, 86, 0.07),
            rgba(224, 122, 63, 0.08)
        ),
        #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.estimate-content h2 {
    max-width: 560px;
    margin-bottom: 20px;
    color: var(--color-heading-primary);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
}

.estimate-content > p {
    max-width: 590px;
    margin-bottom: 28px;
    color: var(--color-body);
    font-size: 16px;
    line-height: 1.7;
}

.estimate-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.estimate-benefits div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-heading-secondary);
    font-size: 14px;
    font-weight: 600;
}

.estimate-benefits i {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 140, 60, 0.12);
    border-radius: 50%;
    color: var(--color-success);
    font-size: 10px;
}

.estimate-main-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.estimate-primary-button,
.estimate-outline-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 21px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
}

.estimate-primary-button {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #ffffff;
}

.estimate-primary-button:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #ffffff;
}

.estimate-outline-button {
    background: transparent;
    border: 1px solid var(--color-brand);
    color: var(--color-brand);
}

.estimate-outline-button:hover {
    background: var(--color-brand);
    color: #ffffff;
}

.estimate-calculator-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.estimate-calculator-card {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 14px;
    min-height: 132px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.estimate-calculator-card:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 110, 86, 0.35);
    box-shadow: var(--shadow-md);
}

.estimate-card-wide {
    grid-column: 1 / -1;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);

}
.estimate-card-wide h3
{
    color: #ffffff !important;
}
.estimate-card-wide .estimate-card-icon
{
    background: rgba(255, 255, 255, 0.288);
    color: #ffffff !important;
}

.estimate-card-wide p
{
    color: #ffffff !important;
}
.estimate-card-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(15, 110, 86, 0.1);
    border-radius: 12px;
    color: var(--color-brand);
    font-size: 19px;
}

.estimate-calculator-card h3 {
    margin-bottom: 6px;
    color: var(--color-heading-secondary);
    font-size: 17px;
}

.estimate-calculator-card p {
    margin: 0;
    color: var(--color-body);
    font-size: 12px;
    line-height: 1.5;
}

.estimate-card-arrow {
    color: var(--color-primary);
    font-size: 13px;
    transition: transform 0.2s ease;
}

.estimate-calculator-card:hover .estimate-card-arrow {
    transform: translateX(4px);
}





/* ==============================
   Featured Projects
============================== */

.home-projects-section {
    padding: 90px 0;
    background: #ffffff;
}

.projects-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 45px;
}

.section-heading-left {
    max-width: 760px;
    margin: 0;
    text-align: left;
}

.projects-view-all {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
    padding-bottom: 5px;
    color: var(--color-brand);
    border-bottom: 1px solid var(--color-brand);
    font-size: 14px;
    font-weight: 700;
}

.projects-view-all i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.projects-view-all:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.projects-view-all:hover i {
    transform: translateX(4px);
}

.home-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.home-project-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.home-project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(15, 110, 86, 0.25);
    box-shadow: var(--shadow-md);
}

.home-project-image {
    position: relative;
    display: block;
    height: 300px;
    overflow: hidden;
    background: var(--color-page-bg);
}

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

.home-project-card:hover .home-project-image img {
    transform: scale(1.06);
}

.project-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(15, 110, 86, 0.13),
            rgba(224, 122, 63, 0.14)
        );
    color: var(--color-brand);
    font-size: 46px;
}

.project-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(14, 25, 21, 0.48),
            transparent 55%
        );
}

.project-status {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 30px;
    color: var(--color-brand);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.project-view-icon {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    color: var(--color-brand);
    font-size: 14px;
    transform: translateY(10px);
    opacity: 0;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.home-project-card:hover .project-view-icon {
    transform: translateY(0);
    opacity: 1;
}

.home-project-content {
    padding: 24px;
}

.project-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-bottom: 12px;
}

.project-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-caption);
    font-size: 12px;
}

.project-meta i {
    color: var(--color-primary);
    font-size: 11px;
}

.home-project-content h3 {
    margin-bottom: 11px;
    font-size: 21px;
    line-height: 1.35;
}

.home-project-content h3 a {
    color: var(--color-heading-secondary);
}

.home-project-content h3 a:hover {
    color: var(--color-brand);
}

.home-project-content p {
    margin-bottom: 18px;
    color: var(--color-body);
    font-size: 14px;
    line-height: 1.65;
}

.project-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-brand);
    font-size: 14px;
    font-weight: 700;
}

.project-card-link i {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.project-card-link:hover i {
    transform: translateX(4px);
}

.projects-mobile-action {
    display: none;
    margin-top: 35px;
    text-align: center;
}


/* ==============================
   Home Interior Packages
============================== */

/* ==========================================================
   HOME INTERIOR PACKAGES
========================================================== */

.home-packages-section {
    position: relative;

    overflow: hidden;

    padding: 96px 0;

    background:
        linear-gradient(
            180deg,
            #faf8f5 0%,
            #ffffff 48%,
            #faf8f5 100%
        );
}


/* Decorative background topology */

.home-packages-section::before,
.home-packages-section::after {
    position: absolute;

    content: "";

    border-radius: 50%;

    pointer-events: none;
}

.home-packages-section::before {
    top: -190px;
    right: -150px;

    width: 420px;
    height: 420px;

    background:
        radial-gradient(
            circle,
            rgba(224, 122, 63, 0.09),
            transparent 70%
        );
}

.home-packages-section::after {
    bottom: -210px;
    left: -180px;

    width: 460px;
    height: 460px;

    background:
        radial-gradient(
            circle,
            rgba(15, 110, 86, 0.08),
            transparent 70%
        );
}

.home-packages-section > .container {
    position: relative;
    z-index: 1;
}


/* ==========================================================
   SECTION HEADING
========================================================== */

.home-packages-heading {
    max-width: 760px;

    margin:
        0 auto 46px;

    text-align: center;
}

.home-packages-heading h2 {
    margin:
        10px 0 14px;

    color:
        var(--color-heading-primary, #1a1a1a);

    font-size:
        clamp(32px, 4vw, 46px);

    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.home-packages-heading p {
    max-width: 680px;

    margin: 0 auto;

    color:
        var(--color-body, #6b6b6b);

    font-size: 16px;
    line-height: 1.75;
}


/* ==========================================================
   PACKAGE GRID
========================================================== */

.home-packages-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    align-items: stretch;
    gap: 24px;
}


/* ==========================================================
   PACKAGE CARD
========================================================== */

.home-package-card {
    position: relative;

    min-width: 0;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    background:
        rgba(255, 255, 255, 0.97);

    border:
        1px solid
        var(--color-border, #eaeaea);

    border-radius: 22px;

    box-shadow:
        0 12px 32px
        rgba(23, 39, 33, 0.08);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.home-package-card:hover {
    transform: translateY(-8px);

    border-color:
        rgba(15, 110, 86, 0.28);

    box-shadow:
        0 26px 58px
        rgba(23, 39, 33, 0.15);
}


/* Featured package emphasis */

.home-package-card.is-featured {
    border-color:
        rgba(224, 122, 63, 0.28);

    box-shadow:
        0 18px 44px
        rgba(224, 122, 63, 0.11);
}

.home-package-card.is-featured::before {
    position: absolute;
    top: 0;
    right: 28px;
    left: 28px;

    z-index: 4;

    height: 3px;

    content: "";

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--color-primary, #e07a3f),
            transparent
        );

    border-radius: 0 0 999px 999px;
}


/* ==========================================================
   PACKAGE MEDIA
========================================================== */

.home-package-media {
    position: relative;

    height: 225px;

    display: block;
    overflow: hidden;

    background: #ece8e2;

    text-decoration: none;
}

.home-package-media img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.55s
        cubic-bezier(0.22, 1, 0.36, 1);
}

.home-package-card:hover
.home-package-media img {
    transform: scale(1.065);
}


/* Placeholder */

.home-package-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            rgba(15, 110, 86, 0.13),
            rgba(224, 122, 63, 0.18)
        );

    color:
        var(--color-brand, #0f6e56);

    font-size: 50px;
}


/* Image overlay */

.home-package-media-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(12, 27, 22, 0.72) 0%,
            rgba(12, 27, 22, 0.17) 48%,
            transparent 76%
        );

    pointer-events: none;
}


/* ==========================================================
   PACKAGE MEDIA BADGES
========================================================== */

.home-package-badge-row {
    position: absolute;
    top: 14px;
    right: 14px;
    left: 14px;

    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;

    pointer-events: none;
}

.home-package-popular-badge,
.home-package-discount-badge {
    min-height: 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    padding: 6px 11px;

    border-radius: 999px;

    font-size: 10px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: 0.045em;
    text-transform: uppercase;

    box-shadow:
        0 8px 20px
        rgba(20, 32, 27, 0.16);
}

.home-package-popular-badge {
    margin-right: auto;

    background:
        var(--color-primary, #e07a3f);

    color: #ffffff;
}

.home-package-popular-badge i {
    font-size: 9px;
}

.home-package-discount-badge {
    margin-left: auto;

    background:
        rgba(255, 255, 255, 0.95);

    color:
        var(--color-success, #4c8c3c);
}


/* Package counter */

.home-package-number {
    position: absolute;
    bottom: 14px;
    left: 14px;

    z-index: 2;

    color:
        rgba(255, 255, 255, 0.76);

    font-size: 26px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: -0.05em;
}


/* Category */

.home-package-category {
    position: absolute;
    right: 14px;
    bottom: 14px;

    z-index: 2;

    max-width:
        calc(100% - 72px);

    padding: 7px 12px;

    overflow: hidden;

    background:
        rgba(255, 255, 255, 0.94);

    border:
        1px solid
        rgba(255, 255, 255, 0.75);

    border-radius: 999px;

    color:
        var(--color-brand, #0f6e56);

    font-size: 11px;
    font-weight: 750;
    line-height: 1.2;

    text-overflow: ellipsis;
    white-space: nowrap;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* ==========================================================
   PACKAGE CONTENT
========================================================== */

.home-package-card-content {
    min-width: 0;

    display: flex;
    flex: 1;
    flex-direction: column;

    padding: 24px 21px 21px;
}


/* ==========================================================
   PACKAGE HEADER
========================================================== */

.home-package-card-header {
    margin-bottom: 18px;
}

.home-package-mobile-category {
    display: none;

    margin-bottom: 7px;

    color:
        var(--color-primary, #e07a3f);

    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.home-package-card-header h3 {
    margin: 0;

    color:
        var(--color-heading-primary, #1a1a1a);

    font-size: 22px;
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: -0.02em;
}

.home-package-card-header h3 a {
    color: inherit;
    text-decoration: none;

    transition: color 0.2s ease;
}

.home-package-card-header h3 a:hover,
.home-package-card-header h3 a:focus {
    color:
        var(--color-brand, #0f6e56);
}

.home-package-card-header p {
    display: -webkit-box;
    overflow: hidden;

    margin: 10px 0 0;

    color:
        var(--color-body, #6b6b6b);

    font-size: 14px;
    line-height: 1.65;

    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


/* ==========================================================
   EXPANDABLE PACKAGE TOPOLOGY
========================================================== */

.home-package-topology {
    margin-bottom: 19px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            rgba(250, 248, 245, 0.96),
            rgba(255, 255, 255, 0.98)
        );

    border:
        1px solid
        rgba(15, 110, 86, 0.10);

    border-radius: 15px;

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.home-package-topology[open] {
    border-color:
        rgba(15, 110, 86, 0.20);

    box-shadow:
        0 10px 25px
        rgba(15, 110, 86, 0.07);
}


/* Remove browser marker */

.home-package-topology-summary {
    min-height: 64px;

    display: grid;
    grid-template-columns:
        40px minmax(0, 1fr) 32px;

    align-items: center;
    gap: 10px;

    padding: 11px 12px;

    list-style: none;

    cursor: pointer;

    user-select: none;
}

.home-package-topology-summary::-webkit-details-marker {
    display: none;
}

.home-package-topology-summary::marker {
    content: "";
}

.home-package-topology-summary:focus-visible {
    outline:
        3px solid
        rgba(15, 110, 86, 0.15);

    outline-offset: -3px;
}


/* Summary icon */

.home-package-topology-summary-icon {
    width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(15, 110, 86, 0.09);

    border:
        1px solid
        rgba(15, 110, 86, 0.10);

    border-radius: 11px;

    color:
        var(--color-brand, #0f6e56);

    font-size: 17px;
}


/* Summary text */

.home-package-topology-summary-text {
    min-width: 0;
}

.home-package-topology-summary-text strong,
.home-package-topology-summary-text small {
    display: block;
}

.home-package-topology-summary-text strong {
    color:
        var(--color-heading-secondary, #3d3d3d);

    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
}

.home-package-topology-summary-text small {
    margin-top: 3px;

    color:
        var(--color-caption, #9a9a9a);

    font-size: 10px;
    line-height: 1.35;
}


/* Expand arrow */

.home-package-topology-toggle {
    width: 30px;
    height: 30px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color:
        var(--color-brand, #0f6e56);

    font-size: 13px;

    transition:
        background-color 0.25s ease,
        transform 0.3s ease;
}

.home-package-topology-summary:hover
.home-package-topology-toggle {
    background:
        rgba(15, 110, 86, 0.08);
}

.home-package-topology[open]
.home-package-topology-toggle {
    background:
        rgba(15, 110, 86, 0.09);

    transform: rotate(180deg);
}


/* Expanded content */

.home-package-topology-content {
    padding:
        4px 13px 14px;

    border-top:
        1px solid
        rgba(15, 110, 86, 0.07);

    animation:
        homePackageTopologyReveal
        0.3s
        ease both;
}


/* ==========================================================
   TOPOLOGY MAP
========================================================== */

.home-package-topology-map {
    position: relative;

    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 7px;

    padding-top: 16px;
}


/* Connecting visual line */

.home-package-topology-map::before {
    position: absolute;
    top: 38px;
    right: 16.5%;
    left: 16.5%;

    z-index: 0;

    height: 2px;

    content: "";

    background:
        linear-gradient(
            90deg,
            rgba(15, 110, 86, 0.15),
            var(--color-brand, #0f6e56),
            rgba(224, 122, 63, 0.55)
        );

    border-radius: 999px;
}


/* Individual node */

.home-package-topology-node {
    position: relative;
    z-index: 1;

    min-width: 0;

    display: flex;
    align-items: center;
    flex-direction: column;

    text-align: center;
}

.home-package-node-icon {
    width: 46px;
    height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 9px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f5f1eb
        );

    border:
        2px solid
        rgba(15, 110, 86, 0.15);

    border-radius: 50%;

    color:
        var(--color-brand, #0f6e56);

    font-size: 17px;

    box-shadow:
        0 7px 16px
        rgba(15, 110, 86, 0.10);
}

.home-package-topology-node:nth-child(2)
.home-package-node-icon {
    border-color:
        rgba(224, 122, 63, 0.23);

    color:
        var(--color-primary, #e07a3f);
}

.home-package-topology-node:nth-child(3)
.home-package-node-icon {
    border-color:
        rgba(76, 140, 60, 0.22);

    color:
        var(--color-success, #4c8c3c);
}


/* Node content */

.home-package-node-content {
    width: 100%;
    min-width: 0;
}

.home-package-node-content small,
.home-package-node-content strong {
    display: block;
}

.home-package-node-content small {
    margin-bottom: 3px;

    color:
        var(--color-caption, #9a9a9a);

    font-size: 9px;
    font-weight: 650;
    line-height: 1.25;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.home-package-node-content strong {
    color:
        var(--color-heading-secondary, #3d3d3d);

    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;

    overflow-wrap: anywhere;
}


/* Topology explanatory message */

.home-package-topology-note {
    display: flex;
    align-items: flex-start;
    gap: 7px;

    margin:
        15px 0 0;
    padding: 10px;

    background:
        rgba(76, 140, 60, 0.06);

    border-radius: 9px;

    color:
        var(--color-body, #6b6b6b);

    font-size: 10px;
    line-height: 1.5;
}

.home-package-topology-note i {
    flex: 0 0 auto;

    margin-top: 2px;

    color:
        var(--color-success, #4c8c3c);

    font-size: 11px;
}


/* ==========================================================
   PACKAGE PRICE
========================================================== */

.home-package-price-area {
    margin-top: auto;
    padding-top: 18px;

    border-top:
        1px solid
        var(--color-border, #eaeaea);
}

.home-package-price-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;

    margin-bottom: 8px;
}

.home-package-price-heading > span:first-child {
    color:
        var(--color-caption, #9a9a9a);

    font-size: 11px;
    font-weight: 650;
}

.home-package-saving {
    display: inline-flex;
    align-items: center;
    gap: 4px;

    padding: 5px 8px;

    background:
        rgba(76, 140, 60, 0.08);

    border-radius: 999px;

    color:
        var(--color-success, #4c8c3c);

    font-size: 9px;
    font-weight: 800;
    line-height: 1;
}

.home-package-price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
}

.home-package-current-price {
    color:
        var(--color-heading-primary, #1a1a1a);

    font-size: 28px;
    font-weight: 850;
    line-height: 1;
    letter-spacing: -0.035em;
}

.home-package-original-price {
    color:
        var(--color-caption, #9a9a9a);

    font-size: 13px;
    font-weight: 500;
}

.home-package-price-note {
    display: flex;
    align-items: flex-start;
    gap: 6px;

    margin:
        11px 0 0;

    color:
        var(--color-caption, #9a9a9a);

    font-size: 10px;
    line-height: 1.5;
}

.home-package-price-note i {
    flex: 0 0 auto;

    margin-top: 2px;

    color:
        var(--color-brand, #0f6e56);

    font-size: 11px;
}


/* ==========================================================
   PACKAGE ACTIONS
========================================================== */

.home-package-card-actions {
    display: grid;
    grid-template-columns:
        minmax(0, 1fr) auto;

    gap: 9px;

    margin-top: 19px;
}

.home-package-primary-action,
.home-package-secondary-action {
    min-height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 11px 14px;

    border-radius: 10px;

    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;

    text-align: center;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}


/* Primary CTA */

.home-package-primary-action {
    background:
        var(--color-primary, #e07a3f);

    border:
        1px solid
        var(--color-primary, #e07a3f);

    color: #ffffff;

    box-shadow:
        0 8px 18px
        rgba(224, 122, 63, 0.23);
}

.home-package-primary-action:hover,
.home-package-primary-action:focus {
    background: #c96832;
    border-color: #c96832;
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 11px 23px
        rgba(224, 122, 63, 0.30);
}

.home-package-primary-action i {
    font-size: 13px;

    transition: transform 0.2s ease;
}

.home-package-primary-action:hover i {
    transform: translateX(3px);
}


/* Secondary CTA */

.home-package-secondary-action {
    background: #ffffff;

    border:
        1px solid
        rgba(15, 110, 86, 0.24);

    color:
        var(--color-brand, #0f6e56);
}

.home-package-secondary-action:hover,
.home-package-secondary-action:focus {
    background:
        rgba(15, 110, 86, 0.06);

    border-color:
        var(--color-brand, #0f6e56);

    color:
        var(--color-brand, #0f6e56);

    transform: translateY(-2px);
}


/* ==========================================================
   VIEW ALL PACKAGES
========================================================== */

.home-packages-action {
    display: flex;
    justify-content: center;

    margin-top: 44px;
}

.home-packages-view-all {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 13px 23px;

    background: #ffffff;

    border:
        1px solid
        var(--color-brand, #0f6e56);

    border-radius: 11px;

    color:
        var(--color-brand, #0f6e56);

    font-size: 14px;
    font-weight: 800;

    text-decoration: none;

    box-shadow:
        0 8px 20px
        rgba(15, 110, 86, 0.08);

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease;
}

.home-packages-view-all:hover,
.home-packages-view-all:focus {
    background:
        var(--color-brand, #0f6e56);

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 12px 26px
        rgba(15, 110, 86, 0.20);
}

.home-packages-view-all i {
    transition: transform 0.2s ease;
}

.home-packages-view-all:hover i {
    transform: translateX(3px);
}


/* ==========================================================
   EMPTY STATE
========================================================== */

.home-packages-empty {
    grid-column: 1 / -1;

    width: min(100%, 620px);

    margin: 0 auto;
    padding: 54px 28px;

    background: #ffffff;

    border:
        1px dashed
        rgba(15, 110, 86, 0.25);

    border-radius: 20px;

    text-align: center;

    box-shadow:
        0 12px 30px
        rgba(23, 39, 33, 0.06);
}

.home-packages-empty-icon {
    width: 66px;
    height: 66px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    background:
        rgba(15, 110, 86, 0.08);

    border-radius: 18px;

    color:
        var(--color-brand, #0f6e56);

    font-size: 28px;
}

.home-packages-empty h3 {
    margin:
        0 0 9px;

    color:
        var(--color-heading-primary, #1a1a1a);

    font-size: 23px;
    font-weight: 800;
}

.home-packages-empty p {
    max-width: 480px;

    margin: 0 auto;

    color:
        var(--color-body, #6b6b6b);

    font-size: 14px;
    line-height: 1.7;
}


/* ==========================================================
   ANIMATIONS
========================================================== */

@keyframes homePackageTopologyReveal {

    from {
        opacity: 0;
        transform: translateY(-7px);
    }

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

}


/* ==========================================================
   REDUCED MOTION
========================================================== */

@media (prefers-reduced-motion: reduce) {

    .home-package-card,
    .home-package-media img,
    .home-package-topology-toggle,
    .home-package-primary-action,
    .home-package-secondary-action,
    .home-packages-view-all {
        transition: none;
    }

    .home-package-topology-content {
        animation: none;
    }

}



/* ==============================
   Why Choose HomeDen
============================== */

.why-choose-section {
    padding: 90px 0;
    background: #ffffff;
}

.why-choose-layout {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    align-items: start;
    gap: 65px;
}

.why-choose-intro {
    position: sticky;
    top: 130px;
}

.why-choose-intro h2 {
    margin-bottom: 20px;
    color: var(--color-heading-primary);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
}

.why-choose-intro > p {
    margin-bottom: 30px;
    color: var(--color-body);
    font-size: 16px;
    line-height: 1.75;
}

/* Contact */

.why-choose-contact {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
    padding: 18px;
    background: var(--color-page-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
}

.why-contact-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(15, 110, 86, 0.11);
    border-radius: 50%;
    color: var(--color-brand);
    font-size: 17px;
}

.why-choose-contact span {
    display: block;
    margin-bottom: 4px;
    color: var(--color-caption);
    font-size: 12px;
}

.why-phone-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
}

.why-phone-links a {
    color: var(--color-heading-secondary);
    font-size: 13px;
    font-weight: 700;
}

.why-phone-links a:hover {
    color: var(--color-brand);
}

.why-phone-links span {
    margin: 0;
    color: var(--color-border);
}

/* Button */

.why-choose-button {
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 22px;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 7px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.why-choose-button:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #ffffff;
}

/* Why choose cards */

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-choose-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    min-height: 180px;
    padding: 26px;
    background: var(--color-page-bg);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    border-color: rgba(15, 110, 86, 0.3);
    box-shadow: var(--shadow-md);
}

.why-choose-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    background: rgba(15, 110, 86, 0.1);
    border-radius: 13px;
    color: var(--color-brand);
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.why-choose-icon img {
    width: 28px;
    height: 28px;
    display: block;
    object-fit: contain;
}

.why-choose-icon i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.why-choose-card:hover .why-choose-icon {
    background: var(--color-brand);
    color: #ffffff;
    transform: scale(1.04);
}

.why-choose-card:hover .why-choose-icon img {
    filter: brightness(0) invert(1);
}

.why-choose-card-content h3 {
    margin-bottom: 10px;
    color: var(--color-heading-secondary);
    font-size: 19px;
    line-height: 1.35;
}

.why-choose-card-content p {
    margin: 0;
    color: var(--color-body);
    font-size: 13px;
    line-height: 1.7;
}


.why-choose-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
    align-items: start;
    gap: 65px;
}

/* ==============================
   Home Work Process
============================== */

.work-process-section {
    padding: 90px 0;
    background:
        linear-gradient(
            135deg,
            rgba(15, 110, 86, 0.04),
            rgba(224, 122, 63, 0.05)
        ),
        var(--color-page-bg);
}

.work-process-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Connecting line */

.work-process-grid::before {
    content: "";
    position: absolute;
    top: 66px;
    right: 8%;
    left: 8%;
    height: 2px;
    background: var(--color-border);
}

.work-process-card {
    position: relative;
    z-index: 1;
    padding: 26px 20px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.work-process-card:hover {
    transform: translateY(-6px);
    border-color: rgba(15, 110, 86, 0.3);
    box-shadow: var(--shadow-md);
}

.process-step-number {
    position: absolute;
    top: 14px;
    right: 15px;
    color: rgba(15, 110, 86, 0.15);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.process-icon {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 22px;
    background: var(--color-brand);
    border: 7px solid #ffffff;
    border-radius: 50%;
    color: #ffffff;
    font-size: 22px;
    box-shadow:
        0 0 0 1px var(--color-border),
        0 8px 22px rgba(15, 110, 86, 0.17);
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.process-icon img {
    width: 32px;
    height: 32px;
    display: block;
    object-fit: contain;
}

.process-icon i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
}

.work-process-card:hover .process-icon {
    background: var(--color-primary);
    transform: scale(1.05);
}

.work-process-card:hover .process-icon img {
    filter: brightness(0) invert(1);
}

.work-process-card h3 {
    margin-bottom: 11px;
    color: var(--color-heading-secondary);
    font-size: 18px;
    line-height: 1.35;
}

.work-process-card p {
    margin: 0;
    color: var(--color-body);
    font-size: 13px;
    line-height: 1.7;
}

.work-process-action {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 13px;
    margin-top: 42px;
}

.process-primary-button,
.process-secondary-button {
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 22px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
}

.process-primary-button {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #ffffff;
}

.process-primary-button:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #ffffff;
}

.process-secondary-button {
    background: transparent;
    border: 1px solid var(--color-brand);
    color: var(--color-brand);
}

.process-secondary-button:hover {
    background: var(--color-brand);
    color: #ffffff;
}



/* ==============================
   Customer Reviews
============================== */

.customer-reviews-section {
    padding: 90px 0;
    background:
        linear-gradient(
            135deg,
            rgba(15, 110, 86, 0.04),
            rgba(224, 122, 63, 0.05)
        ),
        var(--color-page-bg);
}

.reviews-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 45px;
}

.reviews-heading-icon {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(15, 110, 86, 0.1);
    border-radius: 50%;
    color: var(--color-brand);
    font-size: 30px;
}

/* Review grid */

.customer-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.customer-review-card {
    display: flex;
    flex-direction: column;
    height: 330px;
    padding: 28px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.customer-review-card:hover {
    transform: translateY(-6px);
    border-color: rgba(15, 110, 86, 0.3);
    box-shadow: var(--shadow-md);
}



.customer-reviews-slider{
    padding:10px 6px 60px;
}

.customer-reviews-slider .swiper-slide{
    height:auto;
}

.customer-review-card{
    height:100%;
}

.customer-reviews-slider .swiper-button-next,
.customer-reviews-slider .swiper-button-prev{
    width:46px;
    height:46px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    color:var(--color-brand);
}

.customer-reviews-slider .swiper-button-next::after,
.customer-reviews-slider .swiper-button-prev::after{
    font-size:18px;
    font-weight:700;
}

.customer-reviews-slider .swiper-pagination{
    bottom:0;
}

.customer-reviews-slider .swiper-pagination-bullet{
    width:10px;
    height:10px;
}

.customer-reviews-slider .swiper-pagination-bullet-active{
    background:var(--color-brand);
}
/* Review header */

.review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.review-quote-icon {
    color: rgba(15, 110, 86, 0.18);
    font-size: 46px;
    line-height: 1;
}

.review-stars {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    color: var(--color-primary);
    font-size: 14px;
}

/* Review content */

.review-text {
    flex: 1;
}

.review-text p {
    margin: 0;
    color: var(--color-heading-secondary);
    font-size: 15px;
    font-style: italic;
    line-height: 1.85;
}

/* Customer */

.review-customer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 13px;
    margin-top: 25px;
    padding-top: 21px;
    border-top: 1px solid var(--color-border);
}

.review-avatar {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--color-brand);
    border-radius: 50%;
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.review-customer-details h3 {
    margin: 0 0 4px;
    color: var(--color-heading-secondary);
    font-size: 15px;
    line-height: 1.3;
}

.review-customer-details span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--color-caption);
    font-size: 12px;
}

.review-customer-details i {
    color: var(--color-primary);
}

.review-verified {
    color: var(--color-brand);
    font-size: 19px;
}

/* Bottom CTA */

.reviews-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 45px;
    padding: 26px 30px;
    background: var(--color-brand);
    border-radius: 16px;
}

.reviews-cta h3 {
    margin-bottom: 6px;
    color: #ffffff;
    font-size: 21px;
}

.reviews-cta p {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
}

.reviews-cta-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex-shrink: 0;
    padding: 12px 21px;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 7px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.reviews-cta-button:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--color-brand);
}





/* ==============================
   Homepage Videos
============================== */


/* ==============================
   Testimonial Video Carousel
============================== */

.testimonial-videos-section {
    padding: 90px 0 70px;
    overflow: hidden;
    background: #ffffff;
}

.testimonial-video-container {
    max-width: 1840px;
    padding-right: 4%;
    padding-left: 4%;
}

.testimonial-video-heading {
    max-width: 850px;
    margin: 0 auto 42px;
    text-align: center;
}

.testimonial-video-heading h2 {
    margin-bottom: 13px;
    color: var(--color-heading-primary);
    font-size: clamp(29px, 3vw, 43px);
    font-weight: 700;
    line-height: 1.25;
}

.testimonial-video-heading p {
    margin: 0;
    color: var(--color-body);
    font-size: 15px;
}

.testimonial-video-carousel {
    position: relative;
}

.testimonial-video-viewport {
    width: 100%;
    overflow: hidden;
}

.testimonial-video-track {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    transition: transform 0.55s ease;
    will-change: transform;
}

/* Three items on desktop */

.testimonial-video-item {
    flex: 0 0 calc((100% - 56px) / 3);
    min-width: 0;
}

/* Video image */

.testimonial-video-image {
    position: relative;
    display: block;
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: var(--color-page-bg);
    border-radius: 9px;
}

.testimonial-video-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-video-item:hover .testimonial-video-image img {
    transform: scale(1.035);
}

.testimonial-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 15, 13, 0.08);
    transition: background 0.3s ease;
}

.testimonial-video-item:hover .testimonial-video-overlay {
    background: rgba(10, 15, 13, 0.18);
}

.testimonial-video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(15, 110, 86, 0.15),
            rgba(224, 122, 63, 0.17)
        );
    color: var(--color-brand);
    font-size: 52px;
}

/* Play button */

.testimonial-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-left: 3px;
    background: rgba(255, 255, 255, 0.17);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: #ffffff;
    font-size: 25px;
    backdrop-filter: blur(5px);
    transform: translate(-50%, -50%);
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.testimonial-video-item:hover .testimonial-play-button {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translate(-50%, -50%) scale(1.08);
}

.testimonial-video-duration {
    position: absolute;
    right: 14px;
    bottom: 13px;
    z-index: 3;
    padding: 5px 9px;
    background: rgba(12, 18, 15, 0.78);
    border-radius: 4px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
}

/* Video information */

.testimonial-video-content {
    padding: 12px 0 0;
}

.testimonial-video-content h3 {
    margin: 0 0 2px;
    color: var(--color-heading-primary);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.testimonial-video-content h3 a {
    color: inherit;
}

.testimonial-video-content h3 a:hover {
    color: var(--color-brand);
}

.testimonial-video-location {
    display: block;
    margin-bottom: 13px;
    color: var(--color-caption);
    font-size: 12px;
    line-height: 1.4;
}

.testimonial-video-content p {
    margin: 0;
    color: var(--color-heading-secondary);
    font-size: 14px;
    font-style: normal;
    line-height: 1.55;
}

/* Navigation */

.testimonial-video-navigation {
    display: grid;
    grid-template-columns: 46px 1fr 46px;
    align-items: center;
    gap: 24px;
    max-width: 360px;
    margin: 32px auto 0;
}

.testimonial-carousel-button {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-heading-secondary);
    font-size: 17px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.testimonial-carousel-button:hover:not(:disabled) {
    background: var(--color-brand);
    border-color: var(--color-brand);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Active button */
.testimonial-carousel-button.active {
    background: var(--color-brand);
    border-color: var(--color-brand);
    color: #ffffff;
}

.testimonial-carousel-button.active:hover {
    background: var(--color-brand);
    border-color: var(--color-brand);
    color: #ffffff;
}

.testimonial-carousel-button:disabled {
    cursor: not-allowed;
    opacity: 0.35;
}


.testimonial-carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.testimonial-carousel-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    background: #c5c5c5;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition:
        width 0.2s ease,
        background 0.2s ease;
}

.testimonial-carousel-dot.active {
    width: 20px;
    background: var(--color-primary);
    border-radius: 20px;
}

.testimonial-video-view-all {
    margin-top: 28px;
    text-align: center;
}


/* ==============================
   Homepage Blog
============================== */

.home-blog-section {
    padding: 72px 0;
    background: var(--color-page-bg);
}

.blog-heading-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.blog-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--color-brand);
    color: var(--color-brand);
    font-size: 14px;
    font-weight: 700;
}

.blog-view-all i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.blog-view-all:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.blog-view-all:hover i {
    transform: translateX(4px);
}

/* Blog grid */

.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.home-blog-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.home-blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(15, 110, 86, 0.3);
    box-shadow: var(--shadow-md);
}

/* Blog image */

.home-blog-image {
    position: relative;
    display: block;
    height: 235px;
    overflow: hidden;
    background: #ece8e2;
}

.home-blog-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.home-blog-card:hover .home-blog-image img {
    transform: scale(1.06);
}

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(15, 110, 86, 0.14),
            rgba(224, 122, 63, 0.16)
        );
    color: var(--color-brand);
    font-size: 46px;
}

.blog-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(12, 25, 21, 0.42),
            transparent 55%
        );
}

.blog-category-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    z-index: 2;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 30px;
    color: var(--color-brand);
    font-size: 11px;
    font-weight: 800;
}

/* Blog content */

.home-blog-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 23px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 17px;
    margin-bottom: 12px;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-caption);
    font-size: 11px;
}

.blog-meta i {
    color: var(--color-primary);
    font-size: 11px;
}

.home-blog-content h3 {
    margin-bottom: 11px;
    font-size: 20px;
    line-height: 1.4;
}

.home-blog-content h3 a {
    color: var(--color-heading-secondary);
}

.home-blog-content h3 a:hover {
    color: var(--color-brand);
}

.home-blog-content > p {
    margin-bottom: 18px;
    color: var(--color-body);
    font-size: 13px;
    line-height: 1.7;
}

.blog-read-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--color-brand);
    font-size: 13px;
    font-weight: 700;
}

.blog-read-link i {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.blog-read-link:hover {
    color: var(--color-primary);
}

.blog-read-link:hover i {
    transform: translateX(4px);
}

.blog-mobile-action {
    display: none;
    margin-top: 32px;
    text-align: center;
}


/* ==============================
   Homepage FAQ
============================== */

.home-faq-section {
    padding: 72px 0;
    background: #ffffff;
}

.faq-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
    align-items: start;
    gap: 70px;
}

/* FAQ introduction */

.faq-introduction {
    position: sticky;
    top: 130px;
}

.faq-introduction h2 {
    margin-bottom: 18px;
    color: var(--color-heading-primary);
    font-size: clamp(31px, 4vw, 46px);
    line-height: 1.18;
}

.faq-introduction > p {
    margin-bottom: 28px;
    color: var(--color-body);
    font-size: 15px;
    line-height: 1.75;
}

/* Help card */

.faq-help-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 22px;
    padding: 20px;
    background: var(--color-page-bg);
    border: 1px solid var(--color-border);
    border-radius: 14px;
}

.faq-help-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(15, 110, 86, 0.1);
    border-radius: 50%;
    color: var(--color-brand);
    font-size: 20px;
}

.faq-help-card h3 {
    margin-bottom: 5px;
    color: var(--color-heading-secondary);
    font-size: 17px;
}

.faq-help-card p {
    margin-bottom: 11px;
    color: var(--color-body);
    font-size: 12px;
    line-height: 1.6;
}

.faq-phone-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.faq-phone-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--color-brand);
    font-size: 12px;
    font-weight: 700;
}

.faq-phone-links a:hover {
    color: var(--color-primary);
}

.faq-consultation-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 21px;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 7px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.faq-consultation-button:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #ffffff;
}

/* FAQ list */

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 13px;
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.faq-item[open] {
    border-color: rgba(15, 110, 86, 0.3);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 15px;
    min-height: 74px;
    padding: 18px 20px;
    cursor: pointer;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-number {
    color: rgba(15, 110, 86, 0.45);
    font-size: 12px;
    font-weight: 800;
}

.faq-question-text {
    color: var(--color-heading-secondary);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.5;
}

.faq-toggle-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 110, 86, 0.08);
    border-radius: 50%;
    color: var(--color-brand);
    font-size: 13px;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.faq-item[open] .faq-toggle-icon {
    background: var(--color-brand);
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 67px 20px 53px;
    color: var(--color-body);
    font-size: 14px;
    line-height: 1.75;
}

.faq-answer p {
    margin: 0;
}


/* ==============================
   Final Contact CTA
============================== */

.final-contact-cta {
    padding: 72px 0;
    background: var(--color-page-bg);
}

.final-cta-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
    align-items: center;
    gap: 60px;
    overflow: hidden;
    padding: 58px;
    background:
        linear-gradient(
            135deg,
            #0f6e56 0%,
            #0b5845 55%,
            #084537 100%
        );
    border-radius: 24px;
    box-shadow: 0 24px 65px rgba(15, 110, 86, 0.2);
}

/* Decorative circles */

.final-cta-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.final-cta-decoration-one {
    top: -130px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.06);
}

.final-cta-decoration-two {
    bottom: -150px;
    left: 30%;
    width: 260px;
    height: 260px;
    background: rgba(224, 122, 63, 0.15);
}

/* Content */

.final-cta-content,
.final-cta-action-area {
    position: relative;
    z-index: 2;
}

.final-cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 17px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.final-cta-eyebrow i {
    color: var(--color-primary);
    font-size: 15px;
}

.final-cta-content h2 {
    max-width: 650px;
    margin-bottom: 18px;
    color: #ffffff;
    font-size: clamp(32px, 4vw, 49px);
    line-height: 1.15;
}

.final-cta-content > p {
    max-width: 680px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.76);
    font-size: 15px;
    line-height: 1.75;
}

.final-cta-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
}

.final-cta-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
}

.final-cta-benefits i {
    color: var(--color-primary);
    font-size: 14px;
}

/* Action area */

.final-cta-action-area {
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    backdrop-filter: blur(10px);
}

.final-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.final-cta-primary,
.final-cta-secondary {
    min-height: 51px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
}

.final-cta-primary {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #ffffff;
}

.final-cta-primary:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #ffffff;
    transform: translateY(-2px);
}

.final-cta-primary i {
    transition: transform 0.2s ease;
}

.final-cta-primary:hover i {
    transform: translateX(4px);
}

.final-cta-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

.final-cta-secondary:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--color-brand);
}

/* Phone contacts */

.final-cta-contact {
    margin-top: 23px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
    text-align: center;
}

.final-cta-contact > span {
    display: block;
    margin-bottom: 11px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 11px;
}

.final-cta-phone-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.final-cta-phone-links a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.final-cta-phone-links a:hover {
    color: var(--color-primary);
}

.final-cta-phone-links i {
    color: var(--color-primary);
}

.final-phone-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.25);
}



/* ==============================
   Design Ideas Listing
============================== */

.design-list-hero {
    padding: 62px 0;
}

.design-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: var(--color-caption);
    font-size: 12px;
}

.design-breadcrumb a {
    color: var(--color-brand);
    font-weight: 600;
}

.design-breadcrumb i {
    font-size: 9px;
}

.design-list-hero-content {
    max-width: 780px;
}

.design-list-hero-content h1 {
    margin-bottom: 16px;
    color: var(--color-heading-primary);
    font-size: clamp(37px, 5vw, 58px);
    line-height: 1.12;
}

.design-list-hero-content p {
    max-width: 680px;
    margin: 0;
    color: var(--color-body);
    font-size: 16px;
    line-height: 1.75;
}

.design-list-section {
    padding: 72px 0;
    background: #ffffff;
}

/* Search */

.design-search-form {
    max-width: 760px;
    margin: 0 auto 30px;
}

.design-search-field {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.design-search-field > i {
    margin-left: 18px;
    color: var(--color-caption);
}

.design-search-field input {
    min-width: 0;
    height: 54px;
    padding: 0 14px;
    background: transparent;
    border: 0;
    color: var(--color-heading-primary);
    font-size: 14px;
    outline: none;
}

.design-search-field button {
    align-self: stretch;
    padding: 0 24px;
    background: var(--color-brand);
    border: 0;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

/* Filters */

.design-filter-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    margin-bottom: 45px;
}

.design-filter-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 15px;
    background: var(--color-page-bg);
    border: 1px solid var(--color-border);
    border-radius: 30px;
    color: var(--color-heading-secondary);
    font-size: 12px;
    font-weight: 700;
}

.design-filter-item span {
    min-width: 21px;
    padding: 2px 6px;
    background: rgba(15, 110, 86, 0.09);
    border-radius: 20px;
    color: var(--color-brand);
    font-size: 10px;
    text-align: center;
}

.design-filter-item:hover,
.design-filter-item.active {
    background: var(--color-brand);
    border-color: var(--color-brand);
    color: #ffffff;
}

.design-filter-item.active span,
.design-filter-item:hover span {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

/* Results */

.design-result-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
}

.design-result-heading h2 {
    margin-bottom: 5px;
    font-size: 25px;
}

.design-result-heading p {
    margin: 0;
    color: var(--color-caption);
    font-size: 12px;
}

.clear-design-filters {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--color-danger);
    font-size: 12px;
    font-weight: 700;
}

/* Cards */

.design-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.design-list-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.design-list-card:hover {
    transform: translateY(-6px);
    border-color: rgba(15, 110, 86, 0.28);
    box-shadow: var(--shadow-md);
}

.design-list-image {
    position: relative;
    display: block;
    height: 285px;
    overflow: hidden;
    background: var(--color-page-bg);
}

.design-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.design-list-card:hover .design-list-image img {
    transform: scale(1.06);
}

.design-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(10, 25, 20, 0.35),
            transparent 60%
        );
}

.design-featured-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 6px 11px;
    background: var(--color-primary);
    border-radius: 30px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.design-card-view {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    color: var(--color-brand);
    transform: translateY(8px);
    opacity: 0;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.design-list-card:hover .design-card-view {
    transform: translateY(0);
    opacity: 1;
}

.design-list-content {
    padding: 22px;
}

.design-card-category {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--color-brand);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.design-list-content h3 {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.4;
}

.design-list-content h3 a {
    color: var(--color-heading-secondary);
}

.design-list-content h3 a:hover {
    color: var(--color-brand);
}

.design-list-content p {
    margin-bottom: 17px;
    color: var(--color-body);
    font-size: 13px;
    line-height: 1.7;
}

.design-card-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--color-brand);
    font-size: 13px;
    font-weight: 700;
}

.design-card-link i {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.design-card-link:hover i {
    transform: translateX(4px);
}

/* Pagination */

.design-pagination {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 20px;
    margin-top: 48px;
}

.pagination-navigation {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--color-brand);
    font-size: 13px;
    font-weight: 700;
}

.pagination-navigation:last-child {
    justify-self: end;
}

.pagination-navigation.disabled {
    color: var(--color-caption);
    opacity: 0.55;
}

.pagination-pages {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pagination-page {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-heading-secondary);
    font-size: 12px;
    font-weight: 700;
}

.pagination-page:hover,
.pagination-page.active {
    background: var(--color-brand);
    border-color: var(--color-brand);
    color: #ffffff;
}




/* ==============================
   Design Category Page
============================== */

.design-category-hero {
    padding: 56px 0 68px;
    background:
        linear-gradient(
            135deg,
            rgba(15, 110, 86, 0.08),
            rgba(224, 122, 63, 0.07)
        ),
        var(--color-page-bg);
}

.design-category-hero-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(400px, 1.1fr);
    align-items: center;
    gap: 65px;
}

.design-category-hero-content h1 {
    margin-bottom: 18px;
    color: var(--color-heading-primary);
    font-size: clamp(39px, 5vw, 62px);
    line-height: 1.1;
}

.design-category-description,
.design-category-hero-content > p {
    max-width: 660px;
    margin-bottom: 25px;
    color: var(--color-body);
    font-size: 16px;
    line-height: 1.75;
}

.design-category-description p {
    margin-bottom: 10px;
}

.category-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-bottom: 28px;
}

.category-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-heading-secondary);
    font-size: 13px;
    font-weight: 600;
}

.category-hero-meta i {
    color: var(--color-primary);
}

.category-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.category-primary-button,
.category-secondary-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 21px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
}

.category-primary-button {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #ffffff;
}

.category-primary-button:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #ffffff;
}

.category-secondary-button {
    background: transparent;
    border: 1px solid var(--color-brand);
    color: var(--color-brand);
}

.category-secondary-button:hover {
    background: var(--color-brand);
    color: #ffffff;
}

/* Category hero image */

.design-category-hero-image {
    position: relative;
    height: 430px;
}

.design-category-hero-image img,
.category-hero-placeholder {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.category-hero-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(15, 110, 86, 0.18),
            rgba(224, 122, 63, 0.18)
        );
    color: var(--color-brand);
    font-size: 65px;
}

.category-image-decoration {
    position: absolute;
    right: -20px;
    bottom: -20px;
    width: 75%;
    height: 75%;
    background: var(--color-primary);
    border-radius: 20px;
    opacity: 0.14;
}

/* Results */

.category-designs-section {
    padding: 72px 0;
    background: #ffffff;
}

.category-results-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 36px;
}

.category-results-heading h2 {
    margin-bottom: 7px;
    color: var(--color-heading-primary);
    font-size: clamp(29px, 4vw, 42px);
}

.category-results-heading p {
    margin: 0;
    color: var(--color-caption);
    font-size: 13px;
}

.category-all-designs-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--color-brand);
    color: var(--color-brand);
    font-size: 13px;
    font-weight: 700;
}

.category-all-designs-link:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.design-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-page-bg);
    color: var(--color-brand);
    font-size: 42px;
}

.design-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.design-wishlist-button {
    width: 39px;
    height: 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--color-page-bg);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-brand);
    font-size: 15px;
}

.design-wishlist-button:hover {
    background: var(--color-brand);
    border-color: var(--color-brand);
    color: #ffffff;
}

/* Reusable pagination */

.site-pagination {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 22px;
    margin-top: 48px;
}

.pagination-next {
    justify-self: end;
}

.pagination-navigation {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--color-brand);
    font-size: 13px;
    font-weight: 700;
}

.pagination-navigation:hover {
    color: var(--color-primary);
}

.pagination-navigation.disabled {
    color: var(--color-caption);
    pointer-events: none;
    opacity: 0.55;
}

.pagination-pages {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.pagination-page {
    width: 39px;
    height: 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-heading-secondary);
    font-size: 12px;
    font-weight: 700;
}

.pagination-page:hover,
.pagination-page.active {
    background: var(--color-brand);
    border-color: var(--color-brand);
    color: #ffffff;
}

.pagination-ellipsis {
    padding: 0 3px;
    color: var(--color-caption);
}

.pagination-summary {
    margin: 14px 0 0;
    color: var(--color-caption);
    font-size: 11px;
    text-align: center;
}

/* Category CTA */

.category-consultation-cta {
    padding: 0 0 72px;
    background: #ffffff;
}

.category-consultation-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 38px 42px;
    background: var(--color-brand);
    border-radius: 20px;
}

.category-consultation-wrapper span {
    display: block;
    margin-bottom: 7px;
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.category-consultation-wrapper h2 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 28px;
}

.category-consultation-wrapper p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.category-consultation-button {
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex-shrink: 0;
    padding: 12px 22px;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 7px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

.category-consultation-button:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--color-brand);
}




/* ==============================
   Design Detail Page
============================== */

.design-detail-breadcrumb-section {
    padding: 22px 0;
    background: var(--color-page-bg);
    border-bottom: 1px solid var(--color-border);
}

.design-detail-breadcrumb-section .design-breadcrumb {
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
}

.design-detail-breadcrumb-section .design-breadcrumb span {
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Main layout */

.design-detail-section {
    padding: 55px 0 72px;
    background: #ffffff;
}

.design-detail-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(360px, 0.75fr);
    align-items: start;
    gap: 55px;
}

/* Main gallery */

.design-main-image {
    position: relative;
    height: 570px;
    overflow: hidden;
    background: var(--color-page-bg);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.design-main-image > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: opacity 0.2s ease;
}

.design-detail-featured {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    background: var(--color-primary);
    border-radius: 30px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.design-expand-button {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.94);
    border: 0;
    border-radius: 50%;
    color: var(--color-brand);
    font-size: 17px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.design-expand-button:hover {
    background: var(--color-brand);
    color: #ffffff;
    transform: scale(1.05);
}

/* Gallery thumbnails */

.design-gallery-thumbnails {
    display: flex;
    gap: 11px;
    margin-top: 14px;
    padding-bottom: 5px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.design-gallery-thumbnail {
    width: 92px;
    height: 72px;
    flex: 0 0 92px;
    overflow: hidden;
    padding: 0;
    background: var(--color-page-bg);
    border: 2px solid transparent;
    border-radius: 9px;
    cursor: pointer;
}

.design-gallery-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.design-gallery-thumbnail:hover,
.design-gallery-thumbnail.active {
    border-color: var(--color-primary);
}

/* Information */

.design-detail-information {
    position: sticky;
    top: 125px;
    padding: 32px;
    background: var(--color-page-bg);
    border: 1px solid var(--color-border);
    border-radius: 18px;
}

.design-detail-category {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--color-brand);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.design-detail-information h1 {
    margin-bottom: 17px;
    color: var(--color-heading-primary);
    font-size: clamp(32px, 4vw, 47px);
    line-height: 1.16;
}

.design-detail-summary {
    margin-bottom: 25px;
    color: var(--color-body);
    font-size: 15px;
    line-height: 1.75;
}

.design-detail-meta {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 26px;
    padding: 20px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.design-detail-meta > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.design-meta-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(15, 110, 86, 0.1);
    border-radius: 10px;
    color: var(--color-brand);
    font-size: 16px;
}

.design-detail-meta small {
    display: block;
    margin-bottom: 2px;
    color: var(--color-caption);
    font-size: 10px;
}

.design-detail-meta strong {
    display: block;
    color: var(--color-heading-secondary);
    font-size: 13px;
}

.design-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.design-consultation-button,
.design-quotation-button {
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 20px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
}

.design-consultation-button {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #ffffff;
}

.design-consultation-button:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #ffffff;
}

.design-quotation-button {
    background: transparent;
    border: 1px solid var(--color-brand);
    color: var(--color-brand);
}

.design-quotation-button:hover {
    background: var(--color-brand);
    color: #ffffff;
}

.design-contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.design-contact-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(15, 110, 86, 0.1);
    border-radius: 50%;
    color: var(--color-brand);
}

.design-contact-card small {
    display: block;
    margin-bottom: 2px;
    color: var(--color-caption);
    font-size: 10px;
}

.design-contact-card a {
    color: var(--color-heading-secondary);
    font-size: 14px;
    font-weight: 800;
}

/* Description */

.design-description-section {
    padding: 72px 0;
    background: var(--color-page-bg);
}

.design-description-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    align-items: start;
    gap: 65px;
}

.design-description-content h2 {
    margin-bottom: 22px;
    color: var(--color-heading-primary);
    font-size: clamp(30px, 4vw, 43px);
}

.design-description-text {
    color: var(--color-body);
    font-size: 15px;
    line-height: 1.85;
}

.design-description-text p {
    margin-bottom: 16px;
}

/* Planning card */

.design-planning-card {
    padding: 28px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 17px;
    box-shadow: var(--shadow-sm);
}

.design-planning-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: rgba(15, 110, 86, 0.1);
    border-radius: 14px;
    color: var(--color-brand);
    font-size: 22px;
}

.design-planning-card h3 {
    margin-bottom: 11px;
    color: var(--color-heading-secondary);
    font-size: 21px;
}

.design-planning-card > p {
    margin-bottom: 19px;
    color: var(--color-body);
    font-size: 13px;
    line-height: 1.7;
}

.design-planning-card ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
}

.design-planning-card li {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--color-heading-secondary);
    font-size: 13px;
}

.design-planning-card li i {
    color: var(--color-success);
}

.design-site-visit-button {
    width: 100%;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-brand);
    border: 1px solid var(--color-brand);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.design-site-visit-button:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

/* Full gallery */

.design-full-gallery-section {
    padding: 72px 0;
    background: #ffffff;
}

.design-full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 16px;
}

.design-full-gallery-item {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: var(--color-page-bg);
    border: 0;
    border-radius: 14px;
    cursor: pointer;
}

.design-full-gallery-item.gallery-item-large {
    grid-column: span 2;
    grid-row: span 2;
}

.design-full-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.design-full-gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-image-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 16, 0.1);
    transition: background 0.25s ease;
}

.design-full-gallery-item:hover .gallery-image-overlay {
    background: rgba(10, 20, 16, 0.28);
}

.gallery-expand-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 47px;
    height: 47px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.93);
    border-radius: 50%;
    color: var(--color-brand);
    font-size: 16px;
    opacity: 0;
    transform: translate(-50%, -40%);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.design-full-gallery-item:hover .gallery-expand-icon {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.gallery-image-caption {
    position: absolute;
    right: 16px;
    bottom: 14px;
    left: 16px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-align: left;
}

/* Related designs */

.related-designs-section {
    padding: 72px 0;
    background: var(--color-page-bg);
}

.related-designs-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 36px;
}

.related-designs-heading h2 {
    margin: 0;
    font-size: clamp(29px, 4vw, 42px);
}

.related-designs-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    color: var(--color-brand);
    font-size: 13px;
    font-weight: 700;
}

.related-designs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 21px;
}

.related-design-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.related-design-image {
    position: relative;
    display: block;
    height: 220px;
    overflow: hidden;
}

.related-design-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-design-card:hover img {
    transform: scale(1.06);
}

.related-design-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(10, 23, 18, 0.4),
            transparent 60%
        );
}

.related-featured-label {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 9px;
    background: var(--color-primary);
    border-radius: 20px;
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.related-design-arrow {
    position: absolute;
    right: 13px;
    bottom: 13px;
    width: 37px;
    height: 37px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    color: var(--color-brand);
}

.related-design-content {
    padding: 18px;
}

.related-design-content > span {
    display: block;
    margin-bottom: 6px;
    color: var(--color-brand);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.related-design-content h3 {
    margin-bottom: 8px;
    font-size: 17px;
    line-height: 1.4;
}

.related-design-content h3 a {
    color: var(--color-heading-secondary);
}

.related-design-content p {
    margin: 0;
    color: var(--color-body);
    font-size: 12px;
    line-height: 1.6;
}

/* Final CTA */

.design-detail-final-cta {
    padding: 0 0 72px;
    background: var(--color-page-bg);
}

.design-final-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: 40px 44px;
    background: var(--color-brand);
    border-radius: 20px;
}

.design-final-cta-wrapper span {
    display: block;
    margin-bottom: 6px;
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.design-final-cta-wrapper h2 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 29px;
}

.design-final-cta-wrapper p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.design-final-cta-actions {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.design-final-primary,
.design-final-secondary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 19px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
}

.design-final-primary {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #ffffff;
}

.design-final-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

.design-final-primary:hover,
.design-final-secondary:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--color-brand);
}

/* Image modal */

.design-image-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(5, 12, 10, 0.94);
}

.design-image-modal.open {
    display: flex;
}

.design-modal-content {
    max-width: 1200px;
    max-height: 90vh;
    text-align: center;
}

.design-modal-content img {
    max-width: 100%;
    max-height: 82vh;
    display: block;
    object-fit: contain;
    border-radius: 8px;
}

.design-modal-content p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.design-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #ffffff;
    font-size: 19px;
    cursor: pointer;
}

/* ==============================
   Service Listing Page
============================== */


.service-list-hero {
    padding: 64px 0 72px;
}

.service-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    color: var(--color-caption);
    font-size: 12px;
}

.service-breadcrumb a {
    color: var(--color-brand);
    font-weight: 700;
}

.service-breadcrumb i {
    font-size: 9px;
}

.service-list-hero-content {
    max-width: 820px;
}

.service-list-hero-content h1 {
    margin-bottom: 18px;
    color: var(--color-heading-primary);
    font-size: clamp(39px, 5vw, 62px);
    line-height: 1.1;
}

.service-list-hero-content p {
    max-width: 700px;
    margin-bottom: 28px;
    color: var(--color-body);
    font-size: 16px;
    line-height: 1.75;
}

.service-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.service-hero-primary,
.service-hero-secondary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 21px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
}

.service-hero-primary {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #ffffff;
}

.service-hero-primary:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #ffffff;
}

.service-hero-secondary {
    background: transparent;
    border: 1px solid var(--color-brand);
    color: var(--color-brand);
}

.service-hero-secondary:hover {
    background: var(--color-brand);
    color: #ffffff;
}

/* Listing */

.service-list-page {
    padding: 72px 0;
    background: #ffffff;
}

/* Search */

.service-search-form {
    max-width: 760px;
    margin: 0 auto 28px;
}

.service-search-field {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.service-search-field > i {
    margin-left: 18px;
    color: var(--color-caption);
}

.service-search-field input {
    min-width: 0;
    height: 54px;
    padding: 0 14px;
    background: transparent;
    border: 0;
    color: var(--color-heading-primary);
    font-size: 14px;
    outline: none;
}

.service-search-field button {
    align-self: stretch;
    padding: 0 25px;
    background: var(--color-brand);
    border: 0;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

/* Filters */

.service-filter-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    margin-bottom: 44px;
}

.service-filter-button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 16px;
    background: var(--color-page-bg);
    border: 1px solid var(--color-border);
    border-radius: 30px;
    color: var(--color-heading-secondary);
    font-size: 12px;
    font-weight: 700;
}

.service-filter-button:hover,
.service-filter-button.active {
    background: var(--color-brand);
    border-color: var(--color-brand);
    color: #ffffff;
}

/* Result heading */

.service-results-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 32px;
}

.service-results-heading h2 {
    margin-bottom: 6px;
    color: var(--color-heading-primary);
    font-size: clamp(27px, 4vw, 40px);
}

.service-results-heading p {
    margin: 0;
    color: var(--color-caption);
    font-size: 12px;
}

.clear-service-filters {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--color-danger);
    font-size: 12px;
    font-weight: 700;
}

/* Grid */

.service-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.service-page-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 17px;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.service-page-card:hover {
    transform: translateY(-6px);
    border-color: rgba(15, 110, 86, 0.3);
    box-shadow: var(--shadow-md);
}

.service-page-image {
    position: relative;
    display: block;
    height: 270px;
    overflow: hidden;
    background: var(--color-page-bg);
}

.service-page-image > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.service-page-card:hover .service-page-image > img {
    transform: scale(1.06);
}

.service-page-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(15, 110, 86, 0.15),
            rgba(224, 122, 63, 0.16)
        );
    color: var(--color-brand);
    font-size: 48px;
}

.service-page-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(11, 25, 20, 0.45),
            transparent 58%
        );
}

.service-page-featured {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    padding: 6px 11px;
    background: var(--color-primary);
    border-radius: 30px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.service-page-arrow {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    width: 41px;
    height: 41px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    color: var(--color-brand);
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.service-page-card:hover .service-page-arrow {
    opacity: 1;
    transform: translateY(0);
}

/* Content */

.service-page-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 23px;
}

.service-page-title-row {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 13px;
    margin-bottom: 14px;
}

.service-page-icon {
    width: 47px;
    height: 47px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(15, 110, 86, 0.1);
    border-radius: 12px;
    color: var(--color-brand);
    font-size: 20px;
}

.service-page-icon img {
    width: 27px;
    height: 27px;
    display: block;
    object-fit: contain;
}

.service-page-title-row h3 {
    margin: 0;
    font-size: 20px;
    line-height: 1.35;
}

.service-page-title-row h3 a {
    color: var(--color-heading-secondary);
}

.service-page-title-row h3 a:hover {
    color: var(--color-brand);
}

.service-page-content > p {
    margin-bottom: 19px;
    color: var(--color-body);
    font-size: 13px;
    line-height: 1.7;
}

.service-page-price {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
    padding: 16px 0;
    border-top: 1px solid var(--color-border);
}

.service-page-price span {
    color: var(--color-caption);
    font-size: 11px;
}

.service-page-price strong {
    color: var(--color-heading-primary);
    font-size: 20px;
}

.service-page-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;
}

.service-explore-link,
.service-quote-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 700;
}

.service-explore-link {
    color: var(--color-brand);
}

.service-explore-link i {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.service-explore-link:hover i {
    transform: translateX(4px);
}

.service-quote-link {
    padding: 7px 11px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    color: var(--color-heading-secondary);
}

.service-quote-link:hover {
    border-color: var(--color-brand);
    color: var(--color-brand);
}

/* Bottom CTA */

.service-list-cta {
    padding: 0 0 72px;
    background: #ffffff;
}

.service-list-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: 40px 44px;
    background: var(--color-brand);
    border-radius: 20px;
}

.service-list-cta-wrapper span {
    display: block;
    margin-bottom: 7px;
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.service-list-cta-wrapper h2 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 29px;
}

.service-list-cta-wrapper p {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.service-list-cta-actions {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.service-list-cta-primary,
.service-list-cta-secondary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 19px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
}

.service-list-cta-primary {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #ffffff;
}

.service-list-cta-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

.service-list-cta-primary:hover,
.service-list-cta-secondary:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--color-brand);
}



/* ==============================
   Service Detail Page
============================== */


.service-detail-breadcrumb-section {
    padding: 22px 0;
    background: var(--color-page-bg);
    border-bottom: 1px solid var(--color-border);
}

.service-detail-breadcrumb-section .service-breadcrumb {
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
}

.service-detail-breadcrumb-section .service-breadcrumb span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.service-detail-main {
    padding: 55px 0 72px;
    background: #ffffff;
}

.service-detail-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(360px, 0.75fr);
    align-items: start;
    gap: 55px;
}

/* Main image */

.service-main-image {
    position: relative;
    height: 570px;
    overflow: hidden;
    background: var(--color-page-bg);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.service-main-image > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: opacity 0.2s ease;
}

.service-detail-featured {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    background: var(--color-primary);
    border-radius: 30px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.service-image-expand {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: 0;
    border-radius: 50%;
    color: var(--color-brand);
    font-size: 17px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.service-image-expand:hover {
    background: var(--color-brand);
    color: #ffffff;
}

/* Thumbnails */

.service-gallery-thumbnails {
    display: flex;
    gap: 11px;
    margin-top: 14px;
    padding-bottom: 5px;
    overflow-x: auto;
}

.service-gallery-thumbnail {
    width: 92px;
    height: 72px;
    flex: 0 0 92px;
    overflow: hidden;
    padding: 0;
    background: var(--color-page-bg);
    border: 2px solid transparent;
    border-radius: 9px;
    cursor: pointer;
}

.service-gallery-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.service-gallery-thumbnail:hover,
.service-gallery-thumbnail.active {
    border-color: var(--color-primary);
}

/* Information */

.service-detail-information {
    position: sticky;
    top: 125px;
    padding: 32px;
    background: var(--color-page-bg);
    border: 1px solid var(--color-border);
    border-radius: 18px;
}

.service-detail-heading-row {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 14px;
}

.service-detail-heading-row > span {
    color: var(--color-brand);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.service-detail-icon {
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: rgba(15, 110, 86, 0.1);
    border-radius: 11px;
    color: var(--color-brand);
    font-size: 20px;
}

.service-detail-icon img {
    width: 27px;
    height: 27px;
    object-fit: contain;
}

.service-detail-information h1 {
    margin-bottom: 17px;
    color: var(--color-heading-primary);
    font-size: clamp(32px, 4vw, 47px);
    line-height: 1.15;
}

.service-detail-summary {
    margin-bottom: 23px;
    color: var(--color-body);
    font-size: 15px;
    line-height: 1.75;
}

.service-detail-price-card {
    margin-bottom: 23px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 13px;
}

.service-detail-price-card > div {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 8px;
}

.service-detail-price-card span {
    color: var(--color-caption);
    font-size: 11px;
}

.service-detail-price-card strong {
    color: var(--color-heading-primary);
    font-size: 27px;
}

.service-detail-price-card small {
    display: block;
    color: var(--color-caption);
    font-size: 10px;
    line-height: 1.6;
}

.service-detail-benefits {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.service-detail-benefits > div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--color-heading-secondary);
    font-size: 13px;
}

.service-detail-benefits i {
    color: var(--color-success);
}

.service-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-detail-primary,
.service-detail-secondary {
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 20px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
}

.service-detail-primary {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #ffffff;
}

.service-detail-primary:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #ffffff;
}

.service-detail-secondary {
    background: transparent;
    border: 1px solid var(--color-brand);
    color: var(--color-brand);
}

.service-detail-secondary:hover {
    background: var(--color-brand);
    color: #ffffff;
}

.service-detail-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 21px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.service-contact-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(15, 110, 86, 0.1);
    border-radius: 50%;
    color: var(--color-brand);
}

.service-detail-contact small {
    display: block;
    margin-bottom: 2px;
    color: var(--color-caption);
    font-size: 10px;
}

.service-detail-contact a {
    color: var(--color-heading-secondary);
    font-size: 14px;
    font-weight: 800;
}

/* Description */

.service-description-section {
    padding: 72px 0;
    background: var(--color-page-bg);
}

.service-description-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(330px, 0.8fr);
    align-items: start;
    gap: 65px;
}

.service-description-content h2 {
    margin-bottom: 22px;
    color: var(--color-heading-primary);
    font-size: clamp(30px, 4vw, 43px);
}

.service-description-text {
    color: var(--color-body);
    font-size: 15px;
    line-height: 1.85;
}

.service-description-text p {
    margin-bottom: 16px;
}

/* Process card */

.service-process-card {
    padding: 28px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 17px;
    box-shadow: var(--shadow-sm);
}

.service-process-card h3 {
    margin-bottom: 23px;
    font-size: 22px;
}

.service-process-steps {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 24px;
}

.service-process-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 13px;
}

.service-process-step > span {
    width: 39px;
    height: 39px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 110, 86, 0.1);
    border-radius: 50%;
    color: var(--color-brand);
    font-size: 11px;
    font-weight: 800;
}

.service-process-step strong {
    display: block;
    margin-bottom: 4px;
    color: var(--color-heading-secondary);
    font-size: 13px;
}

.service-process-step p {
    margin: 0;
    color: var(--color-body);
    font-size: 11px;
    line-height: 1.6;
}

.service-site-visit-button {
    width: 100%;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-brand);
    border: 1px solid var(--color-brand);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.service-site-visit-button:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

/* Full gallery */

.service-full-gallery-section {
    padding: 72px 0;
    background: #ffffff;
}

.service-full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 16px;
}

.service-full-gallery-item {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: var(--color-page-bg);
    border: 0;
    border-radius: 14px;
    cursor: pointer;
}

.service-full-gallery-item.service-gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.service-full-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-full-gallery-item:hover img {
    transform: scale(1.05);
}

.service-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 16, 0.12);
}

.service-full-gallery-item:hover .service-gallery-overlay {
    background: rgba(10, 20, 16, 0.3);
}

.service-gallery-expand-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 47px;
    height: 47px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 50%;
    color: var(--color-brand);
    opacity: 0;
    transform: translate(-50%, -40%);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.service-full-gallery-item:hover .service-gallery-expand-icon {
    opacity: 1;
    transform: translate(-50%, -50%);
}

/* Related services */

.related-services-section {
    padding: 72px 0;
    background: var(--color-page-bg);
}

.related-services-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.related-services-heading h2 {
    margin: 0;
    font-size: clamp(29px, 4vw, 42px);
}

.related-services-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-brand);
    font-size: 13px;
    font-weight: 700;
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 21px;
}

.related-service-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.related-service-image {
    position: relative;
    display: block;
    height: 215px;
    overflow: hidden;
}

.related-service-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-service-card:hover img {
    transform: scale(1.06);
}

.related-service-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(10, 23, 18, 0.42),
            transparent 60%
        );
}

.related-service-featured {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 9px;
    background: var(--color-primary);
    border-radius: 20px;
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.related-service-arrow {
    position: absolute;
    right: 13px;
    bottom: 13px;
    width: 37px;
    height: 37px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    color: var(--color-brand);
}

.related-service-content {
    padding: 18px;
}

.related-service-content h3 {
    margin-bottom: 8px;
    font-size: 18px;
}

.related-service-content h3 a {
    color: var(--color-heading-secondary);
}

.related-service-content p {
    margin-bottom: 15px;
    color: var(--color-body);
    font-size: 12px;
    line-height: 1.6;
}

.related-service-content > div {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    padding-top: 13px;
    border-top: 1px solid var(--color-border);
}

.related-service-content span {
    color: var(--color-caption);
    font-size: 10px;
}

.related-service-content strong {
    color: var(--color-heading-primary);
    font-size: 16px;
}

/* Final CTA */

.service-detail-final-cta {
    padding: 0 0 72px;
    background: var(--color-page-bg);
}

.service-detail-final-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: 40px 44px;
    background: var(--color-brand);
    border-radius: 20px;
}

.service-detail-final-wrapper > div:first-child > span {
    display: block;
    margin-bottom: 7px;
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.service-detail-final-wrapper h2 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 29px;
}

.service-detail-final-wrapper p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.service-final-actions {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.service-final-primary,
.service-final-secondary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 19px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
}

.service-final-primary {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #ffffff;
}

.service-final-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

.service-final-primary:hover,
.service-final-secondary:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--color-brand);
}

/* Modal */

.service-image-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(5, 12, 10, 0.94);
}

.service-image-modal.open {
    display: flex;
}

.service-modal-content {
    max-width: 1200px;
    max-height: 90vh;
    text-align: center;
}

.service-modal-content img {
    max-width: 100%;
    max-height: 82vh;
    display: block;
    object-fit: contain;
    border-radius: 8px;
}

.service-modal-content p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.service-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #ffffff;
    font-size: 19px;
    cursor: pointer;
}


/* ==============================
   Service Listing Cards
============================== */

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

.service-list-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.service-list-card:hover {
    transform: translateY(-6px);
    border-color: rgba(15, 110, 86, 0.28);
    box-shadow: var(--shadow-md);
}

.service-list-media {
    position: relative;
}

.service-list-image {
    position: relative;
    display: block;
    height: 280px;
    overflow: hidden;
    background: var(--color-page-bg);
}

.service-list-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.service-list-card:hover .service-list-image img {
    transform: scale(1.06);
}

.service-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand);
    font-size: 48px;
}

.service-card-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(8, 35, 28, 0.38),
            transparent 60%
        );
}

.service-list-featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 11px;
    background: var(--color-primary);
    border-radius: 30px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.service-card-view {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 3;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    color: var(--color-brand);
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.service-list-card:hover .service-card-view {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================
   Service Wishlist Button
========================================================== */

.service-list-media {
    position: relative;
}

.service-wishlist-form {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 6;

    margin: 0;
}

.service-list-wishlist-button {
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.9);

    color: #3d3d3d;

    font-size: 18px;
    line-height: 1;

    text-decoration: none;

    box-shadow:
        0 8px 22px rgba(20, 35, 30, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    cursor: pointer;

    transition:
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.18s ease;
}

.service-list-wishlist-button i {
    display: block;
    line-height: 1;
    transition: transform 0.2s ease;
}

.service-list-wishlist-button:hover,
.service-list-wishlist-button:focus-visible {
    border-color: rgba(181, 53, 46, 0.2);
    background: #ffffff;
    color: #b5352e;

    box-shadow:
        0 10px 26px rgba(181, 53, 46, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 1);

    transform: translateY(-2px);
}

.service-list-wishlist-button:hover i {
    transform: scale(1.12);
}

.service-list-wishlist-button:active {
    transform: scale(0.9);
}


/* Saved state */

.service-list-wishlist-button.is-saved {
    border-color: var(--color-primary-hover);
    background: var(--color-primary-hover);
    color: #ffffff;

    box-shadow:
        0 9px 22px rgba(181, 53, 46, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.service-list-wishlist-button.is-saved:hover,
.service-list-wishlist-button.is-saved:focus-visible {
    border-color: var(--color-primary-hover);
    background: var(--color-primary-hover);
    color: #ffffff;
}


/* Login link uses the same position as the form */

.service-wishlist-login {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 6;
}


/* Keyboard accessibility */

.service-list-wishlist-button:focus-visible {
    outline: 3px solid rgba(181, 53, 46, 0.22);
    outline-offset: 3px;
}


/* Mobile */

@media (max-width: 767.98px) {

    .service-wishlist-form {
        top: 10px;
        right: 10px;
    }

    .service-wishlist-login {
        top: 10px;
        right: 10px;
    }

    .service-list-wishlist-button {
        width: 38px;
        height: 38px;

        font-size: 16px;
    }

}


/* Reduced motion */

@media (prefers-reduced-motion: reduce) {

    .service-list-wishlist-button,
    .service-list-wishlist-button i {
        transition: none;
    }

}

/* Wishlist */
/* ==========================================
   Service Detail Wishlist
========================================== */

.service-detail-wishlist {
    width: 100%;
    margin-top: 14px;
}

.service-detail-wishlist-form .service-wishlist-form {
    width: 100%;
    margin: 0;
}


/* Authenticated wishlist button */

.service-detail-wishlist
.service-list-wishlist-button {
    width: 100%;
    min-width: 0;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 0 18px;

    background: transparent;
    border: 1px solid var(--color-brand);
    border-radius: 6px;

    color: var(--color-brand);

    font-size: 13px;
    font-weight: 700;
    line-height: 1;

    box-shadow: none;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}


.service-detail-wishlist .service-list-wishlist-button i {
    font-size: 17px;
    line-height: 1;
}

.service-detail-wishlist .service-list-wishlist-button:hover {
    background: var(--color-brand);
    border-color: var(--color-brand);
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px
        rgba(15, 110, 86, 0.16);
}


/* Saved state */

.service-detail-wishlist
.service-list-wishlist-button.is-saved {
    background:var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.service-detail-wishlist
.service-list-wishlist-button.is-saved:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}


/* Login to save button */

.service-detail-wishlist .service-wishlist-button {
    min-width: 190px;
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    padding: 10px 18px;

    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 8px;

    color: var(--color-heading-secondary);

    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.service-detail-wishlist .service-wishlist-button i {
    color: var(--color-brand);
    font-size: 17px;
}

/* Hover */

.service-detail-wishlist
.service-list-wishlist-button:hover {
    background: var(--color-brand);
    border-color: var(--color-brand);
    color: #ffffff;

    transform: none;
}




/* Content */

.service-list-content {
    position: relative;
    padding: 24px;
}

.service-list-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: -52px;
    margin-bottom: 17px;
    position: relative;
    z-index: 4;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    color: var(--color-brand);
    box-shadow: var(--shadow-sm);
}

.service-list-icon img {
    width: 34px;
    height: 34px;
    display: block;
    object-fit: contain;
}

.service-list-icon i {
    color: var(--color-brand);
    font-size: 30px;
    line-height: 1;
}

.service-list-content h3 {
    margin-bottom: 10px;
    font-size: 21px;
    line-height: 1.35;
}

.service-list-content h3 a {
    color: var(--color-heading-secondary);
}

.service-list-content h3 a:hover {
    color: var(--color-brand);
}

.service-list-content > p {
    margin-bottom: 17px;
    color: var(--color-body);
    font-size: 13px;
    line-height: 1.7;
}

.service-list-price {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 18px;
    padding: 12px 14px;
    background: var(--color-page-bg);
    border-radius: 8px;
}

.service-list-price span {
    color: var(--color-caption);
    font-size: 11px;
}

.service-list-price strong {
    color: var(--color-brand);
    font-size: 17px;
}

.service-list-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-brand);
    font-size: 13px;
    font-weight: 700;
}

.service-list-card-link i {
    transition: transform 0.2s ease;
}

.service-list-card-link:hover i {
    transform: translateX(4px);
}




/* ==============================
   Design Card Wishlist
============================== */

.design-list-media {
    position: relative;
}

.design-wishlist-form {
    margin: 0;
}

.design-list-media > .design-wishlist-button,
.design-wishlist-form {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
}

.design-wishlist-button {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    color: var(--color-brand);
    font-size: 18px;
    line-height: 1;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
    cursor: pointer;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.design-wishlist-button:hover {
    background: var(--color-brand);
    border-color: var(--color-brand);
    color: #ffffff;
    transform: scale(1.08);
}

.design-wishlist-button.is-saved {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

.design-wishlist-button.is-saved:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
}

.design-wishlist-button i {
    display: block;
    line-height: 1;
}




.design-card-wishlist-form{
    position:absolute;
    top:16px;
    right:16px;
    z-index:20;
    margin:0;
}

.design-card-wishlist-btn{
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#666;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    text-decoration:none;
    transition:all .25s ease;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.design-card-wishlist-btn:hover{
    color:#e63946;
    transform:translateY(-2px);
}

.design-card-wishlist-btn.saved{
    background:#e63946;
    color:#fff;
}

.design-card-wishlist-btn.saved:hover{
    background:#cf2438;
}

.design-card-wishlist-btn i{
    font-size:18px;
}

/* ==============================
   Project Listing Page
============================== */


.project-list-hero {
    padding: 64px 0 72px;
}

.project-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
    color: var(--color-caption);
    font-size: 12px;
}

.project-breadcrumb a {
    color: var(--color-brand);
    font-weight: 700;
}

.project-breadcrumb i {
    font-size: 9px;
}

.project-list-hero-content {
    max-width: 840px;
}

.project-list-hero-content h1 {
    max-width: 800px;
    margin-bottom: 18px;
    color: var(--color-heading-primary);
    font-size: clamp(39px, 5vw, 62px);
    line-height: 1.1;
}

.project-list-hero-content p {
    max-width: 720px;
    margin-bottom: 28px;
    color: var(--color-body);
    font-size: 16px;
    line-height: 1.75;
}

.project-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.project-hero-primary,
.project-hero-secondary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 21px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
}

.project-hero-primary {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #ffffff;
}

.project-hero-primary:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #ffffff;
}

.project-hero-secondary {
    background: transparent;
    border: 1px solid var(--color-brand);
    color: var(--color-brand);
}

.project-hero-secondary:hover {
    background: var(--color-brand);
    color: #ffffff;
}

/* Listing */

.project-list-section {
    padding: 72px 0;
    background: #ffffff;
}

/* Filters */

.project-filter-form {
    display: grid;
    grid-template-columns:
        minmax(240px, 1.7fr)
        minmax(160px, 0.8fr)
        minmax(135px, 0.6fr)
        auto
        auto;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding: 15px;
    background: var(--color-page-bg);
    border: 1px solid var(--color-border);
    border-radius: 15px;
}

.project-search-field,
.project-select-field {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 9px;
}

.project-search-field > i,
.project-select-field > i {
    position: absolute;
    left: 14px;
    z-index: 2;
    color: var(--color-caption);
    font-size: 13px;
    pointer-events: none;
}

.project-search-field input,
.project-select-field select {
    width: 100%;
    height: 48px;
    padding: 0 14px 0 40px;
    background: transparent;
    border: 0;
    color: var(--color-heading-secondary);
    font-size: 12px;
    outline: none;
}

.project-select-field select {
    cursor: pointer;
}

.project-featured-filter {
    cursor: pointer;
}

.project-featured-filter input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.project-featured-filter span {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 15px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 9px;
    color: var(--color-heading-secondary);
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.project-featured-filter input:checked + span {
    background: var(--color-brand);
    border-color: var(--color-brand);
    color: #ffffff;
}

.project-filter-submit {
    min-height: 48px;
    padding: 0 20px;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 9px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.project-filter-submit:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
}

/* Active filters */

.project-active-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 38px;
    padding: 12px 15px;
    background: rgba(15, 110, 86, 0.06);
    border-radius: 9px;
}

.project-active-filters > div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}

.project-active-filters > div > span:first-child {
    color: var(--color-caption);
    font-size: 10px;
    font-weight: 700;
}

.project-filter-tag {
    padding: 5px 9px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    color: var(--color-brand);
    font-size: 10px;
    font-weight: 700;
}

.clear-project-filters {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    color: var(--color-danger);
    font-size: 11px;
    font-weight: 700;
}

/* Heading */

.project-results-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 33px;
}

.project-results-heading h2 {
    margin-bottom: 6px;
    color: var(--color-heading-primary);
    font-size: clamp(28px, 4vw, 41px);
}

.project-results-heading p {
    margin: 0;
    color: var(--color-caption);
    font-size: 12px;
}

.project-site-visit-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--color-brand);
    color: var(--color-brand);
    font-size: 13px;
    font-weight: 700;
}

/* Grid */

.project-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.project-page-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 17px;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.project-page-card:hover {
    transform: translateY(-6px);
    border-color: rgba(15, 110, 86, 0.3);
    box-shadow: var(--shadow-md);
}

.project-page-image {
    position: relative;
    display: block;
    height: 295px;
    overflow: hidden;
    background: var(--color-page-bg);
}

.project-page-image > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.project-page-card:hover .project-page-image > img {
    transform: scale(1.06);
}

.project-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(15, 110, 86, 0.15),
            rgba(224, 122, 63, 0.15)
        );
    color: var(--color-brand);
    font-size: 50px;
}

.project-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(7, 20, 15, 0.55),
            transparent 62%
        );
}

.project-featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 11px;
    background: var(--color-primary);
    border-radius: 30px;
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.project-card-arrow {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 2;
    width: 41px;
    height: 41px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    color: var(--color-brand);
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.project-page-card:hover .project-card-arrow {
    opacity: 1;
    transform: translateY(0);
}

.project-card-location {
    position: absolute;
    bottom: 19px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: calc(100% - 85px);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
}

/* Content */

.project-page-content {
    padding: 22px;
}

.project-completion-date {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 9px;
    color: var(--color-brand);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.project-page-content h3 {
    margin-bottom: 10px;
    font-size: 21px;
    line-height: 1.4;
}

.project-page-content h3 a {
    color: var(--color-heading-secondary);
}

.project-page-content h3 a:hover {
    color: var(--color-brand);
}

.project-page-content > p {
    margin-bottom: 18px;
    color: var(--color-body);
    font-size: 13px;
    line-height: 1.7;
}

.project-card-specifications {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 18px;
    padding: 14px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.project-card-specifications > div {
    min-width: 0;
}

.project-card-specifications > div + div {
    padding-left: 12px;
    border-left: 1px solid var(--color-border);
}

.project-card-specifications span {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 4px;
    color: var(--color-caption);
    font-size: 9px;
}

.project-card-specifications strong {
    display: block;
    overflow: hidden;
    color: var(--color-heading-secondary);
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.project-view-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-brand);
    font-size: 12px;
    font-weight: 700;
}

.project-view-link i {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.project-view-link:hover i {
    transform: translateX(4px);
}

/* CTA */

.project-list-cta {
    padding: 0 0 72px;
    background: #ffffff;
}

.project-list-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: 40px 44px;
    background: var(--color-brand);
    border-radius: 20px;
}

.project-list-cta-wrapper span {
    display: block;
    margin-bottom: 7px;
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.project-list-cta-wrapper h2 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 29px;
}

.project-list-cta-wrapper p {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.project-list-cta-actions {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.project-list-cta-primary,
.project-list-cta-secondary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 19px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
}

.project-list-cta-primary {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #ffffff;
}

.project-list-cta-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

.project-list-cta-primary:hover,
.project-list-cta-secondary:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--color-brand);
}


/* ==============================
   Project Detail Page
============================== */

.project-detail-breadcrumb-section {
    padding: 22px 0;
    background: var(--color-page-bg);
    border-bottom: 1px solid var(--color-border);
}

.project-detail-breadcrumb-section .project-breadcrumb {
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
}

.project-detail-breadcrumb-section .project-breadcrumb span {
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Main layout */

.project-detail-main {
    padding: 55px 0 72px;
    background: #ffffff;
}

.project-detail-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(360px, 0.75fr);
    align-items: start;
    gap: 55px;
}

/* Main image */

.project-main-image {
    position: relative;
    height: 580px;
    overflow: hidden;
    background: var(--color-page-bg);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.project-main-image > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: opacity 0.2s ease;
}

.project-detail-featured {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 13px;
    background: var(--color-primary);
    border-radius: 30px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.project-main-location {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    max-width: calc(100% - 95px);
    padding: 8px 13px;
    background: rgba(10, 24, 18, 0.72);
    border-radius: 25px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.project-image-expand {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: 0;
    border-radius: 50%;
    color: var(--color-brand);
    font-size: 17px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.project-image-expand:hover {
    background: var(--color-brand);
    color: #ffffff;
    transform: scale(1.05);
}

/* Thumbnails */

.project-gallery-thumbnails {
    display: flex;
    gap: 11px;
    margin-top: 14px;
    padding-bottom: 5px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.project-gallery-thumbnail {
    width: 94px;
    height: 73px;
    flex: 0 0 94px;
    overflow: hidden;
    padding: 0;
    background: var(--color-page-bg);
    border: 2px solid transparent;
    border-radius: 9px;
    cursor: pointer;
}

.project-gallery-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.project-gallery-thumbnail:hover,
.project-gallery-thumbnail.active {
    border-color: var(--color-primary);
}

/* Information card */

.project-detail-information {
    position: sticky;
    top: 125px;
    padding: 32px;
    background: var(--color-page-bg);
    border: 1px solid var(--color-border);
    border-radius: 18px;
}

.project-detail-label {
    display: block;
    margin-bottom: 12px;
    color: var(--color-brand);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-transform: uppercase;
}

.project-detail-information h1 {
    margin-bottom: 17px;
    color: var(--color-heading-primary);
    font-size: clamp(32px, 4vw, 47px);
    line-height: 1.15;
}

.project-detail-introduction {
    margin-bottom: 24px;
    color: var(--color-body);
    font-size: 14px;
    line-height: 1.75;
}

/* Specifications */

.project-specification-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
    margin-bottom: 22px;
}

.project-specification-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    padding: 13px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 11px;
}

.project-specification-icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(15, 110, 86, 0.1);
    border-radius: 9px;
    color: var(--color-brand);
    font-size: 15px;
}

.project-specification-item small {
    display: block;
    margin-bottom: 2px;
    color: var(--color-caption);
    font-size: 9px;
}

.project-specification-item strong {
    display: block;
    overflow: hidden;
    color: var(--color-heading-secondary);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Budget */

.project-budget-card {
    margin-bottom: 23px;
    padding: 19px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 12px;
}

.project-budget-card > div {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 8px;
}

.project-budget-card span {
    color: var(--color-caption);
    font-size: 11px;
}

.project-budget-card strong {
    color: var(--color-heading-primary);
    font-size: 25px;
}

.project-budget-card p {
    margin: 0;
    color: var(--color-caption);
    font-size: 9px;
    line-height: 1.6;
}

/* Actions */

.project-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.project-detail-primary,
.project-detail-secondary {
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 12px 20px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
}

.project-detail-primary {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #ffffff;
}

.project-detail-primary:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #ffffff;
}

.project-detail-secondary {
    background: transparent;
    border: 1px solid var(--color-brand);
    color: var(--color-brand);
}

.project-detail-secondary:hover {
    background: var(--color-brand);
    color: #ffffff;
}

.project-detail-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 21px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.project-contact-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(15, 110, 86, 0.1);
    border-radius: 50%;
    color: var(--color-brand);
}

.project-detail-contact small {
    display: block;
    margin-bottom: 2px;
    color: var(--color-caption);
    font-size: 10px;
}

.project-detail-contact a {
    color: var(--color-heading-secondary);
    font-size: 14px;
    font-weight: 800;
}

/* Description */

.project-description-section {
    padding: 72px 0;
    background: var(--color-page-bg);
}

.project-description-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(330px, 0.8fr);
    align-items: start;
    gap: 65px;
}

.project-description-content h2 {
    margin-bottom: 22px;
    color: var(--color-heading-primary);
    font-size: clamp(30px, 4vw, 43px);
}

.project-description-text {
    color: var(--color-body);
    font-size: 15px;
    line-height: 1.85;
}

.project-description-text p {
    margin-bottom: 16px;
}

/* Summary card */

.project-summary-card {
    padding: 27px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 17px;
    box-shadow: var(--shadow-sm);
}

.project-summary-heading {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
}

.project-summary-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(15, 110, 86, 0.1);
    border-radius: 13px;
    color: var(--color-brand);
    font-size: 21px;
}

.project-summary-heading small {
    display: block;
    margin-bottom: 2px;
    color: var(--color-caption);
    font-size: 9px;
    text-transform: uppercase;
}

.project-summary-heading h3 {
    margin: 0;
    font-size: 20px;
}

.project-summary-list {
    margin: 0 0 23px;
}

.project-summary-list > div {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 15px;
    padding: 11px 0;
    border-bottom: 1px solid var(--color-border);
}

.project-summary-list dt {
    color: var(--color-caption);
    font-size: 11px;
    font-weight: 500;
}

.project-summary-list dd {
    margin: 0;
    color: var(--color-heading-secondary);
    font-size: 12px;
    font-weight: 700;
    text-align: right;
}

.project-site-visit-button {
    width: 100%;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-brand);
    border: 1px solid var(--color-brand);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.project-site-visit-button:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

/* Full gallery */

.project-full-gallery-section {
    padding: 72px 0;
    background: #ffffff;
}

.project-full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 16px;
}

.project-full-gallery-item {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: var(--color-page-bg);
    border: 0;
    border-radius: 14px;
    cursor: pointer;
}

.project-full-gallery-item.project-gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.project-full-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.project-full-gallery-item:hover img {
    transform: scale(1.05);
}

.project-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(8, 19, 15, 0.12);
    transition: background 0.25s ease;
}

.project-full-gallery-item:hover .project-gallery-overlay {
    background: rgba(8, 19, 15, 0.32);
}

.project-gallery-expand-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 47px;
    height: 47px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 50%;
    color: var(--color-brand);
    opacity: 0;
    transform: translate(-50%, -40%);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.project-full-gallery-item:hover .project-gallery-expand-icon {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.project-gallery-number {
    position: absolute;
    right: 15px;
    bottom: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 800;
}

/* Process */

.project-process-section {
    padding: 72px 0;
    background: var(--color-page-bg);
}

.project-process-heading {
    max-width: 720px;
    margin: 0 auto 38px;
    text-align: center;
}

.project-process-heading h2 {
    margin-bottom: 12px;
    font-size: clamp(29px, 4vw, 42px);
}

.project-process-heading p {
    margin: 0;
    color: var(--color-body);
    font-size: 14px;
    line-height: 1.7;
}

.project-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.project-process-item {
    position: relative;
    padding: 27px 22px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 15px;
}

.project-process-item > span {
    position: absolute;
    top: 17px;
    right: 17px;
    color: rgba(15, 110, 86, 0.18);
    font-size: 29px;
    font-weight: 900;
}

.project-process-item > i {
    width: 49px;
    height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 17px;
    background: rgba(15, 110, 86, 0.1);
    border-radius: 12px;
    color: var(--color-brand);
    font-size: 20px;
}

.project-process-item h3 {
    margin-bottom: 9px;
    font-size: 18px;
}

.project-process-item p {
    margin: 0;
    color: var(--color-body);
    font-size: 12px;
    line-height: 1.65;
}

/* Related projects */

.related-projects-section {
    padding: 72px 0;
    background: #ffffff;
}

.related-projects-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.related-projects-heading h2 {
    margin: 0;
    font-size: clamp(29px, 4vw, 42px);
}

.related-projects-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    color: var(--color-brand);
    font-size: 13px;
    font-weight: 700;
}

.related-projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 21px;
}

.related-project-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.related-project-image {
    position: relative;
    display: block;
    height: 220px;
    overflow: hidden;
}

.related-project-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-project-card:hover img {
    transform: scale(1.06);
}

.related-project-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(7, 19, 14, 0.58),
            transparent 62%
        );
}

.related-project-featured {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 9px;
    background: var(--color-primary);
    border-radius: 20px;
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.related-project-location {
    position: absolute;
    bottom: 14px;
    left: 13px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    max-width: calc(100% - 65px);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
}

.related-project-arrow {
    position: absolute;
    right: 13px;
    bottom: 13px;
    width: 37px;
    height: 37px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    color: var(--color-brand);
}

.related-project-content {
    padding: 18px;
}

.related-project-content > span {
    display: block;
    margin-bottom: 6px;
    color: var(--color-brand);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.related-project-content h3 {
    margin-bottom: 13px;
    font-size: 18px;
    line-height: 1.4;
}

.related-project-content h3 a {
    color: var(--color-heading-secondary);
}

.related-project-specifications {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--color-border);
}

.related-project-specifications span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--color-caption);
    font-size: 10px;
}

.related-project-specifications strong {
    color: var(--color-heading-primary);
    font-size: 14px;
}

/* Final CTA */

.project-detail-final-cta {
    padding: 0 0 72px;
    background: #ffffff;
}

.project-final-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: 40px 44px;
    background: var(--color-brand);
    border-radius: 20px;
}

.project-final-cta-wrapper > div:first-child > span {
    display: block;
    margin-bottom: 7px;
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.project-final-cta-wrapper h2 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 29px;
}

.project-final-cta-wrapper p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.project-final-cta-actions {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.project-final-primary,
.project-final-secondary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 19px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
}

.project-final-primary {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #ffffff;
}

.project-final-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

.project-final-primary:hover,
.project-final-secondary:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--color-brand);
}

/* Image modal */

.project-image-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(5, 12, 10, 0.94);
}

.project-image-modal.open {
    display: flex;
}

.project-modal-content {
    max-width: 1200px;
    max-height: 90vh;
    text-align: center;
}

.project-modal-content img {
    max-width: 100%;
    max-height: 82vh;
    display: block;
    object-fit: contain;
    border-radius: 8px;
}

.project-modal-content p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.project-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #ffffff;
    font-size: 19px;
    cursor: pointer;
}



/* ==============================
   Package Listing Page
============================== */

/* ==========================================================
   HOMEDEN - PACKAGE LISTING PAGE
   Base styles only. Responsive rules are in responsive.css.
========================================================== */

/* ----------------------------------------------------------
   Shared package-page typography
---------------------------------------------------------- */

.pkg-hero,
.pkg-discovery,
.pkg-bottom-cta {
    font-size: 16px;
}

.pkg-hero .section-eyebrow,
.pkg-results-header .section-eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--color-primary, #E07A3F);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

/* ==========================================================
   HERO
========================================================== */

.pkg-hero {
    padding: 58px 0 76px;
}

.pkg-breadcrumb {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 40px;
    color: var(--color-caption, #9A9A9A);
    font-size: 13px;
    line-height: 1.5;
}

.pkg-breadcrumb a {
    color: var(--color-brand, #0F6E56);
    font-weight: 700;
}

.pkg-breadcrumb i {
    font-size: 10px;
}

.pkg-hero-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(320px, 0.6fr);
    align-items: center;
    gap: 76px;
}

.pkg-hero-content {
    max-width: 820px;
}

.pkg-hero-content h1 {
    max-width: 800px;
    margin: 8px 0 22px;
    color: var(--color-heading-primary, #1A1A1A);
    font-size: clamp(44px, 5vw, 66px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -1.8px;
}

.pkg-hero-content h1 span {
    color: var(--color-brand, #0F6E56);
}

.pkg-hero-content > p {
    max-width: 700px;
    margin-bottom: 30px;
    color: var(--color-body, #6B6B6B);
    font-size: 17px;
    line-height: 1.78;
}

.pkg-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pkg-primary-btn,
.pkg-secondary-btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 22px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.2;
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.pkg-primary-btn {
    background: var(--color-primary, #E07A3F);
    border: 1px solid var(--color-primary, #E07A3F);
    color: #ffffff;
}

.pkg-primary-btn:hover {
    background: var(--color-primary-hover, #C96832);
    border-color: var(--color-primary-hover, #C96832);
    color: #ffffff;
    transform: translateY(-1px);
}

.pkg-secondary-btn {
    background: #ffffff;
    border: 1px solid var(--color-border, #EAEAEA);
    color: var(--color-brand, #0F6E56);
}

.pkg-secondary-btn:hover {
    border-color: var(--color-brand, #0F6E56);
    color: var(--color-brand, #0F6E56);
    transform: translateY(-1px);
}

.pkg-hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 28px;
}

.pkg-hero-benefits > div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-body, #6B6B6B);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.5;
}

.pkg-hero-benefits i {
    color: var(--color-success, #4C8C3C);
    font-size: 14px;
}

/* Hero side card */

.pkg-hero-side-card {
    position: relative;
    padding: 34px;
    background: #ffffff;
    border: 1px solid var(--color-border, #EAEAEA);
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(15, 40, 32, 0.08);
}

.pkg-hero-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 21px;
    background: rgba(15, 110, 86, 0.10);
    border-radius: 14px;
    color: var(--color-brand, #0F6E56);
    font-size: 24px;
}

.pkg-hero-card-label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-primary, #E07A3F);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.pkg-hero-side-card h2 {
    margin-bottom: 12px;
    color: var(--color-heading-primary, #1A1A1A);
    font-size: 27px;
    font-weight: 700;
    line-height: 1.3;
}

.pkg-hero-side-card > p {
    margin-bottom: 21px;
    color: var(--color-body, #6B6B6B);
    font-size: 15px;
    line-height: 1.72;
}

.pkg-hero-side-card > a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-brand, #0F6E56);
    font-size: 14px;
    font-weight: 800;
}

/* =========================================================
   PACKAGE OFFER BUTTON
========================================================= */

.pkg-hero-offer-link {
    width: 100%;
    min-height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    margin-top: 24px;
    padding: 11px 15px;

    border:
        1px solid
        rgba(224, 122, 63, 0.32);

    border-radius: 9px;

    background:
        rgba(224, 122, 63, 0.10);

    color: #e07a3f;

    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;

    box-shadow:
        0 8px 20px
        rgba(224, 122, 63, 0.10);

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}


/* Default icon */

.pkg-hero-offer-link > i {
    color: #e07a3f !important;

    font-size: 15px;

    transition:
        color 0.2s ease;
}


/* Default link */

.pkg-hero-offer-link > a {
    color: #e07a3f !important;

    font-weight: 800;
    text-decoration: none;

    transition:
        color 0.2s ease;
}


/* Hover and keyboard focus */

.pkg-hero-offer-link:hover,
.pkg-hero-offer-link:focus-within {
    border-color: #e07a3f;

    background: #e07a3f;
    color: #ffffff !important;

    box-shadow:
        0 12px 26px
        rgba(224, 122, 63, 0.24);

    transform: translateY(-2px);
}


/* Force link and icon to white */

.pkg-hero-offer-link:hover > a,
.pkg-hero-offer-link:focus-within > a,
.pkg-hero-offer-link:hover > i,
.pkg-hero-offer-link:focus-within > i {
    color: #ffffff !important;
}
/* ==========================================================
   DISCOVERY
========================================================== */

.pkg-discovery {
    padding: 72px 0 82px;
    background: #ffffff;
    scroll-margin-top: 110px;
}

/* Filter */

.pkg-filter-panel {
    position: sticky;
    top: 92px;
    z-index: 50;
    margin-bottom: 24px;
}

.pkg-filter-form {
    display: grid;
    grid-template-columns:
        minmax(230px, 1.4fr)
        minmax(170px, 0.8fr)
        minmax(170px, 0.8fr)
        minmax(180px, 0.85fr)
        auto
        auto;
    align-items: center;
    gap: 9px;
    padding: 11px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--color-border, #EAEAEA);
    border-radius: 14px;
    box-shadow: 0 10px 35px rgba(20, 35, 29, 0.08);
    backdrop-filter: blur(14px);
}

.pkg-filter-search,
.pkg-filter-select {
    position: relative;
    min-width: 0;
}

.pkg-filter-search > i,
.pkg-filter-select > i {
    position: absolute;
    top: 50%;
    left: 14px;
    z-index: 2;
    color: var(--color-caption, #9A9A9A);
    font-size: 13px;
    transform: translateY(-50%);
    pointer-events: none;
}

.pkg-filter-search input,
.pkg-filter-select select {
    width: 100%;
    height: 48px;
    padding: 0 13px 0 39px;
    background: var(--color-page-bg, #FAF8F5);
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--color-heading-secondary, #3D3D3D);
    font-size: 13px;
    line-height: 1.4;
    outline: none;
}

.pkg-filter-search input::placeholder {
    color: var(--color-caption, #9A9A9A);
}

.pkg-filter-search input:focus,
.pkg-filter-select select:focus {
    background: #ffffff;
    border-color: var(--color-brand, #0F6E56);
}

.pkg-featured-toggle {
    position: relative;
}

.pkg-featured-toggle input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.pkg-featured-toggle span {
    height: 48px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 15px;
    background: var(--color-page-bg, #FAF8F5);
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--color-body, #6B6B6B);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.pkg-featured-toggle input:checked + span {
    background: rgba(15, 110, 86, 0.10);
    border-color: rgba(15, 110, 86, 0.14);
    color: var(--color-brand, #0F6E56);
}

.pkg-filter-submit {
    height: 48px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 19px;
    background: var(--color-brand, #0F6E56);
    border: 0;
    border-radius: 8px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.pkg-filter-submit:hover {
    background: var(--color-primary, #E07A3F);
}

.pkg-mobile-filter-trigger {
    display: none;
}

/* Active filters */

.pkg-active-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 38px;
}

.pkg-active-filter-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.pkg-active-label {
    color: var(--color-caption, #9A9A9A);
    font-size: 12px;
    font-weight: 700;
}

.pkg-filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    background: rgba(15, 110, 86, 0.07);
    border-radius: 20px;
    color: var(--color-brand, #0F6E56);
    font-size: 12px;
    font-weight: 700;
}

.pkg-clear-filters {
    color: var(--color-danger, #B5352E);
    font-size: 12px;
    font-weight: 700;
}

/* Results */

.pkg-results-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 35px;
    margin: 48px 0 32px;
}

.pkg-results-header h2 {
    margin: 5px 0 6px;
    color: var(--color-heading-primary, #1A1A1A);
    font-size: clamp(31px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.2;
}

.pkg-results-header p {
    margin: 0;
    color: var(--color-caption, #9A9A9A);
    font-size: 14px;
    line-height: 1.5;
}

.pkg-results-header p strong {
    color: var(--color-heading-secondary, #3D3D3D);
}

.pkg-compare-action {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 11px;
    padding: 11px 14px;
    background: var(--color-page-bg, #FAF8F5);
    border: 1px solid var(--color-border, #EAEAEA);
    border-radius: 11px;
    transition:
        border-color 0.2s ease,
        transform 0.2s ease;
}

.pkg-compare-action:hover {
    border-color: var(--color-brand, #0F6E56);
    transform: translateY(-1px);
}

.pkg-compare-icon {
    width: 39px;
    height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 110, 86, 0.10);
    border-radius: 8px;
    color: var(--color-brand, #0F6E56);
    font-size: 16px;
}

.pkg-compare-action small {
    display: block;
    color: var(--color-caption, #9A9A9A);
    font-size: 11px;
    line-height: 1.3;
}

.pkg-compare-action span span {
    color: var(--color-heading-secondary, #3D3D3D);
    font-size: 13px;
    font-weight: 800;
}

/* ==========================================================
   PACKAGE CARDS
========================================================== */

.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 26px;
}

.pkg-card {
    display: flex;
    overflow: hidden;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid var(--color-border, #EAEAEA);
    border-radius: 17px;
    box-shadow: 0 5px 18px rgba(20, 32, 27, 0.05);
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

.pkg-card:hover {
    transform: translateY(-5px);
    border-color: rgba(15, 110, 86, 0.25);
    box-shadow: 0 20px 42px rgba(15, 50, 38, 0.10);
}

/* Media */

.pkg-card-media {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--color-page-bg, #FAF8F5);
}

.pkg-card-media > a {
    display: block;
    width: 100%;
    height: 100%;
}

.pkg-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.pkg-card:hover .pkg-card-media img {
    transform: scale(1.045);
}

.pkg-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand, #0F6E56);
    font-size: 48px;
}

.pkg-card-top-badges {
    position: absolute;
    top: 13px;
    left: 13px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.pkg-badge {
    padding: 7px 10px;
    border-radius: 20px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.2;
}

.pkg-badge-featured {
    background: var(--color-primary, #E07A3F);
}

.pkg-badge-saving {
    background: var(--color-success, #4C8C3C);
}

.pkg-card-offer {
    position: absolute;
    right: 13px;
    bottom: 13px;
    left: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 9px;
    color: var(--color-primary, #E07A3F);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
    backdrop-filter: blur(9px);
}

/* Body */

.pkg-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 23px;
}

.pkg-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.pkg-card-category {
    display: block;
    margin-bottom: 6px;
    color: var(--color-brand, #0F6E56);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.pkg-card-header h3 {
    margin: 0;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.35;
}

.pkg-card-header h3 a {
    color: var(--color-heading-secondary, #3D3D3D);
}

.pkg-card-header h3 a:hover {
    color: var(--color-brand, #0F6E56);
}

.pkg-property-pill {
    flex-shrink: 0;
    padding: 6px 9px;
    background: rgba(15, 110, 86, 0.08);
    border-radius: 20px;
    color: var(--color-brand, #0F6E56);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.3;
}

.pkg-card-description {
    margin: 13px 0 18px;
    color: var(--color-body, #6B6B6B);
    font-size: 14px;
    line-height: 1.72;
}

/* Metadata */

.pkg-card-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}

.pkg-card-meta > div {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px;
    background: var(--color-page-bg, #FAF8F5);
    border-radius: 8px;
}

.pkg-card-meta i {
    color: var(--color-brand, #0F6E56);
    font-size: 15px;
}

.pkg-card-meta small {
    display: block;
    color: var(--color-caption, #9A9A9A);
    font-size: 10px;
    line-height: 1.3;
}

.pkg-card-meta strong {
    display: block;
    color: var(--color-heading-secondary, #3D3D3D);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

/* Features */

.pkg-card-feature-section {
    margin-bottom: 19px;
    padding: 15px 0;
    border-top: 1px solid var(--color-border, #EAEAEA);
    border-bottom: 1px solid var(--color-border, #EAEAEA);
}

.pkg-feature-heading {
    display: block;
    margin-bottom: 10px;
    color: var(--color-caption, #9A9A9A);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pkg-card-feature-section ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pkg-card-feature-section li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    color: var(--color-heading-secondary, #3D3D3D);
    font-size: 12px;
    line-height: 1.5;
}

.pkg-card-feature-section i {
    margin-top: 2px;
    color: var(--color-success, #4C8C3C);
    font-size: 13px;
}

/* Pricing */

.pkg-card-pricing {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-top: auto;
    margin-bottom: 18px;
}

.pkg-price-label {
    display: block;
    margin-bottom: 4px;
    color: var(--color-caption, #9A9A9A);
    font-size: 11px;
    line-height: 1.4;
}

.pkg-price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 7px;
}

.pkg-price-row strong {
    color: var(--color-heading-primary, #1A1A1A);
    font-size: 27px;
    font-weight: 800;
    line-height: 1.2;
}

.pkg-price-row del {
    color: var(--color-caption, #9A9A9A);
    font-size: 13px;
}

.pkg-saving-pill {
    padding: 7px 10px;
    background: rgba(76, 140, 60, 0.09);
    border-radius: 7px;
    color: var(--color-success, #4C8C3C);
    font-size: 11px;
    line-height: 1.4;
}

.pkg-saving-pill strong {
    display: block;
    margin-top: 1px;
    font-size: 12px;
}

/* Actions */

.pkg-card-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 9px;
}

.pkg-card-primary,
.pkg-card-secondary {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
}

.pkg-card-primary {
    background: var(--color-brand, #0F6E56);
    color: #ffffff;
}

.pkg-card-primary:hover {
    background: var(--color-primary, #E07A3F);
    color: #ffffff;
}

.pkg-card-secondary {
    border: 1px solid var(--color-border, #EAEAEA);
    color: var(--color-brand, #0F6E56);
}

.pkg-card-secondary:hover {
    border-color: var(--color-brand, #0F6E56);
}

.pkg-card-compare {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: 12px;
    color: var(--color-caption, #9A9A9A);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

.pkg-card-compare:hover {
    color: var(--color-brand, #0F6E56);
}

/* Empty state */

.pkg-empty-state {
    grid-column: 1 / -1;
    padding: 74px 20px;
    text-align: center;
}

.pkg-empty-state > span {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: rgba(15, 110, 86, 0.08);
    border-radius: 50%;
    color: var(--color-brand, #0F6E56);
    font-size: 27px;
}

.pkg-empty-state h3 {
    margin-bottom: 8px;
    color: var(--color-heading-primary, #1A1A1A);
    font-size: 25px;
}

.pkg-empty-state p {
    color: var(--color-body, #6B6B6B);
    font-size: 15px;
    line-height: 1.7;
}

.pkg-empty-state a {
    color: var(--color-brand, #0F6E56);
    font-size: 14px;
    font-weight: 800;
}

/* ==========================================================
   BOTTOM CTA
========================================================== */

.pkg-bottom-cta {
    padding: 0 0 80px;
    background: #ffffff;
}

.pkg-bottom-cta-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 38px 42px;
    background: var(--color-brand, #0F6E56);
    border-radius: 20px;
}

.pkg-bottom-cta-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    color: #ffffff;
    font-size: 26px;
}

.pkg-bottom-cta-content > span {
    color: var(--color-primary, #E07A3F);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.pkg-bottom-cta-content h2 {
    margin: 5px 0 7px;
    color: #ffffff;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.pkg-bottom-cta-content p {
    max-width: 680px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.7;
}

.pkg-bottom-cta-actions {
    display: flex;
    gap: 9px;
}

.pkg-cta-primary,
.pkg-cta-secondary {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
}

.pkg-cta-primary {
    background: var(--color-primary, #E07A3F);
    color: #ffffff;
}

.pkg-cta-primary:hover {
    background: #ffffff;
    color: var(--color-brand, #0F6E56);
}

.pkg-cta-secondary {
    border: 1px solid rgba(255, 255, 255, 0.45);
    color: #ffffff;
}

.pkg-cta-secondary:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--color-brand, #0F6E56);
}
/* ==============================
   Package Detail Page
============================== */

.package-detail-breadcrumb-section {
    padding: 22px 0;
    background: var(--color-page-bg);
    border-bottom: 1px solid var(--color-border);
}

.package-detail-breadcrumb-section .package-breadcrumb {
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
}

.package-detail-breadcrumb-section .package-breadcrumb span {
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Main layout */

.package-detail-main {
    padding: 55px 0 72px;
    background: #ffffff;
}

.package-detail-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(370px, 0.8fr);
    align-items: start;
    gap: 55px;
}

/* Main image */

.package-main-image {
    position: relative;
    height: 580px;
    overflow: hidden;
    background: var(--color-page-bg);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.package-main-image > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: opacity 0.2s ease;
}

.package-main-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(15, 110, 86, 0.17),
            rgba(224, 122, 63, 0.18)
        );
    color: var(--color-brand);
    font-size: 70px;
}

.package-main-badges {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
}

.package-detail-featured,
.package-detail-discount {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    width: fit-content;
    padding: 8px 13px;
    border-radius: 30px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
}

.package-detail-featured {
    background: var(--color-primary);
}

.package-detail-discount {
    background: var(--color-success);
}

.package-image-expand {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border: 0;
    border-radius: 50%;
    color: var(--color-brand);
    font-size: 17px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.package-image-expand:hover {
    background: var(--color-brand);
    color: #ffffff;
}

/* Thumbnails */

.package-gallery-thumbnails {
    display: flex;
    gap: 11px;
    margin-top: 14px;
    padding-bottom: 5px;
    overflow-x: auto;
}

.package-gallery-thumbnail {
    width: 94px;
    height: 73px;
    flex: 0 0 94px;
    overflow: hidden;
    padding: 0;
    background: var(--color-page-bg);
    border: 2px solid transparent;
    border-radius: 9px;
    cursor: pointer;
}

.package-gallery-thumbnail img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.package-gallery-thumbnail:hover,
.package-gallery-thumbnail.active {
    border-color: var(--color-primary);
}

/* Information */

.package-detail-information {
    position: sticky;
    top: 125px;
    padding: 32px;
    background: var(--color-page-bg);
    border: 1px solid var(--color-border);
    border-radius: 18px;
}

.package-detail-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 12px;
}

.package-detail-category {
    color: var(--color-brand);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.package-detail-bhk {
    padding: 6px 10px;
    background: rgba(15, 110, 86, 0.1);
    border-radius: 20px;
    color: var(--color-brand);
    font-size: 9px;
    font-weight: 800;
}

.package-detail-information h1 {
    margin-bottom: 17px;
    color: var(--color-heading-primary);
    font-size: clamp(32px, 4vw, 47px);
    line-height: 1.15;
}

.package-detail-summary {
    margin-bottom: 23px;
    color: var(--color-body);
    font-size: 14px;
    line-height: 1.75;
}

/* Price */

.package-detail-price-card {
    margin-bottom: 22px;
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 13px;
}

.package-detail-price-label {
    display: block;
    margin-bottom: 4px;
    color: var(--color-caption);
    font-size: 10px;
}

.package-detail-price-values {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 7px;
}

.package-detail-price-values strong {
    color: var(--color-heading-primary);
    font-size: 29px;
}

.package-detail-price-values del {
    color: var(--color-caption);
    font-size: 13px;
}

.package-detail-saving {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    color: var(--color-success);
    font-size: 11px;
    font-weight: 800;
}

.package-detail-price-card small {
    display: block;
    color: var(--color-caption);
    font-size: 9px;
    line-height: 1.6;
}

/* Specifications */

.package-detail-specifications {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 22px;
}

.package-detail-specifications > div {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    padding: 12px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
}

.package-specification-icon {
    width: 37px;
    height: 37px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(15, 110, 86, 0.1);
    border-radius: 9px;
    color: var(--color-brand);
    font-size: 15px;
}

.package-detail-specifications small {
    display: block;
    margin-bottom: 2px;
    color: var(--color-caption);
    font-size: 8px;
}

.package-detail-specifications strong {
    display: block;
    overflow: hidden;
    color: var(--color-heading-secondary);
    font-size: 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Offer */

.package-current-offer {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 11px;
    margin-bottom: 22px;
    padding: 14px;
    background: rgba(224, 122, 63, 0.1);
    border: 1px dashed rgba(224, 122, 63, 0.45);
    border-radius: 11px;
}

.package-offer-icon {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    border-radius: 50%;
    color: #ffffff;
}

.package-current-offer small {
    display: block;
    margin-bottom: 2px;
    color: var(--color-caption);
    font-size: 8px;
}

.package-current-offer strong {
    display: block;
    color: var(--color-heading-secondary);
    font-size: 11px;
}

.package-current-offer p {
    margin: 2px 0 0;
    color: var(--color-primary);
    font-size: 9px;
    font-weight: 700;
}

.package-current-offer > a {
    color: var(--color-brand);
    font-size: 10px;
    font-weight: 800;
}

/* Actions */

.package-detail-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.package-detail-primary,
.package-detail-secondary {
    min-height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
}

.package-detail-primary {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #ffffff;
}

.package-detail-primary:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #ffffff;
}

.package-detail-secondary {
    background: transparent;
    border: 1px solid var(--color-brand);
    color: var(--color-brand);
}

.package-detail-secondary:hover {
    background: var(--color-brand);
    color: #ffffff;
}

.package-detail-secondary-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px 17px;
    margin-top: 18px;
}

.package-detail-secondary-actions a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-caption);
    font-size: 10px;
    font-weight: 700;
}

.package-detail-secondary-actions a:hover {
    color: var(--color-brand);
}

/* Description */

.package-description-section {
    padding: 72px 0;
    background: var(--color-page-bg);
}

.package-description-layout {
    display: grid;
    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(330px, 0.8fr);
    align-items: start;
    gap: 65px;
}

.package-description-content h2 {
    margin-bottom: 22px;
    font-size: clamp(30px, 4vw, 43px);
}

.package-description-text {
    color: var(--color-body);
    font-size: 15px;
    line-height: 1.85;
}

.package-description-text p {
    margin-bottom: 16px;
}

/* Summary */

.package-summary-card {
    padding: 27px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 17px;
    box-shadow: var(--shadow-sm);
}

.package-summary-heading {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
}

.package-summary-icon {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 110, 86, 0.1);
    border-radius: 13px;
    color: var(--color-brand);
    font-size: 21px;
}

.package-summary-heading small {
    display: block;
    margin-bottom: 2px;
    color: var(--color-caption);
    font-size: 9px;
    text-transform: uppercase;
}

.package-summary-heading h3 {
    margin: 0;
    font-size: 20px;
}

.package-summary-list {
    margin: 0 0 23px;
}

.package-summary-list > div {
    display: grid;
    grid-template-columns: 115px minmax(0, 1fr);
    gap: 15px;
    padding: 11px 0;
    border-bottom: 1px solid var(--color-border);
}

.package-summary-list dt {
    color: var(--color-caption);
    font-size: 11px;
    font-weight: 500;
}

.package-summary-list dd {
    margin: 0;
    color: var(--color-heading-secondary);
    font-size: 12px;
    font-weight: 700;
    text-align: right;
}

.package-site-visit-button {
    width: 100%;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-brand);
    border: 1px solid var(--color-brand);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.package-site-visit-button:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

/* Features */

.package-features-section {
    padding: 72px 0;
    background: #ffffff;
}

.package-features-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(290px, 0.7fr);
    align-items: start;
    gap: 35px;
}

.package-feature-column-heading,
.excluded-feature-heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.package-feature-column-heading > span,
.excluded-feature-heading > span {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 110, 86, 0.1);
    border-radius: 12px;
    color: var(--color-success);
    font-size: 18px;
}

.package-feature-column-heading small,
.excluded-feature-heading small {
    display: block;
    color: var(--color-caption);
    font-size: 9px;
    text-transform: uppercase;
}

.package-feature-column-heading h3,
.excluded-feature-heading h3 {
    margin: 2px 0 0;
    font-size: 21px;
}

.package-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px;
}

.package-feature-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 17px;
    background: var(--color-page-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
}

.package-feature-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #ffffff;
    border-radius: 10px;
    color: var(--color-success);
}

.package-feature-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.package-feature-item h4 {
    margin-bottom: 5px;
    font-size: 14px;
}

.package-feature-item p {
    margin: 0;
    color: var(--color-body);
    font-size: 10px;
    line-height: 1.6;
}

/* Excluded */

.excluded-package-features {
    padding: 24px;
    background: var(--color-page-bg);
    border: 1px solid var(--color-border);
    border-radius: 15px;
}

.excluded-package-features ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.excluded-package-features li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
}

.excluded-package-features li > i {
    margin-top: 2px;
    color: var(--color-primary);
}

.excluded-package-features strong {
    display: block;
    margin-bottom: 2px;
    color: var(--color-heading-secondary);
    font-size: 12px;
}

.excluded-package-features li span {
    display: block;
    color: var(--color-body);
    font-size: 10px;
    line-height: 1.5;
}

.excluded-package-features > p {
    margin: 0;
    padding-top: 15px;
    border-top: 1px solid var(--color-border);
    color: var(--color-caption);
    font-size: 10px;
    line-height: 1.6;
}

/* Price options */

.package-price-options-section {
    padding: 72px 0;
    background: var(--color-page-bg);
}

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

.package-price-option-card {
    position: relative;
    padding: 27px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.package-price-option-card.recommended {
    border-color: var(--color-brand);
}

.price-option-recommended {
    position: absolute;
    top: 0;
    right: 20px;
    padding: 6px 11px;
    background: var(--color-brand);
    border-radius: 0 0 8px 8px;
    color: #ffffff;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.price-option-number {
    display: block;
    margin-bottom: 18px;
    color: rgba(15, 110, 86, 0.17);
    font-size: 32px;
    font-weight: 900;
}

.package-price-option-card h3 {
    margin-bottom: 12px;
    font-size: 21px;
}

.price-option-value {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin-bottom: 14px;
}

.price-option-value strong {
    color: var(--color-heading-primary);
    font-size: 28px;
}

.price-option-value span {
    color: var(--color-caption);
    font-size: 10px;
}

.package-price-option-card > p {
    min-height: 65px;
    margin-bottom: 20px;
    color: var(--color-body);
    font-size: 12px;
    line-height: 1.7;
}

.price-option-button {
    width: 100%;
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--color-brand);
    color: var(--color-brand);
    font-size: 12px;
    font-weight: 700;
}

.price-option-button:hover {
    background: var(--color-brand);
    color: #ffffff;
}

/* EMI */

.package-emi-section {
    padding: 72px 0;
    background: #ffffff;
}

.package-emi-layout {
    display: grid;
    grid-template-columns: minmax(270px, 0.7fr) minmax(0, 1.3fr);
    align-items: center;
    gap: 55px;
}

.package-emi-introduction h2 {
    margin-bottom: 14px;
    font-size: clamp(29px, 4vw, 42px);
}

.package-emi-introduction p {
    margin-bottom: 18px;
    color: var(--color-body);
    font-size: 13px;
    line-height: 1.7;
}

.package-view-emi-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--color-brand);
    font-size: 12px;
    font-weight: 700;
}

.package-emi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.package-emi-card {
    padding: 20px;
    background: var(--color-page-bg);
    border: 1px solid var(--color-border);
    border-radius: 14px;
}

.package-emi-card-heading {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 17px;
}

.package-emi-card-heading > span {
    width: 49px;
    height: 49px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-brand);
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
}

.package-emi-card-heading small {
    display: block;
    color: var(--color-caption);
    font-size: 8px;
}

.package-emi-card-heading strong {
    font-size: 11px;
}

.package-emi-card h3 {
    margin-bottom: 14px;
    font-size: 16px;
}

.package-emi-card dl {
    margin: 0 0 14px;
}

.package-emi-card dl > div {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid var(--color-border);
}

.package-emi-card dt,
.package-emi-card dd {
    font-size: 9px;
}

.package-emi-card dt {
    color: var(--color-caption);
}

.package-emi-card dd {
    margin: 0;
    color: var(--color-heading-secondary);
    font-weight: 700;
}

.package-emi-card > p {
    margin: 0;
    color: var(--color-body);
    font-size: 9px;
    line-height: 1.6;
}

/* Offers */

.package-offers-section {
    padding: 72px 0;
    background: var(--color-page-bg);
}

.package-offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.package-offer-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 17px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 15px;
}

.package-offer-card-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(224, 122, 63, 0.12);
    border-radius: 13px;
    color: var(--color-primary);
    font-size: 22px;
}

.package-offer-card-content > span {
    display: block;
    margin-bottom: 5px;
    color: var(--color-caption);
    font-size: 9px;
}

.package-offer-card h3 {
    margin-bottom: 8px;
    font-size: 19px;
}

.package-offer-card p {
    margin-bottom: 12px;
    color: var(--color-body);
    font-size: 11px;
    line-height: 1.65;
}

.package-offer-discount {
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: var(--color-success);
}

.package-offer-discount strong {
    font-size: 19px;
}

.package-offer-discount span {
    font-size: 10px;
    font-weight: 700;
}

/* Full gallery */

.package-full-gallery-section {
    padding: 72px 0;
    background: #ffffff;
}

.package-full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 16px;
}

.package-full-gallery-item {
    position: relative;
    overflow: hidden;
    padding: 0;
    background: var(--color-page-bg);
    border: 0;
    border-radius: 14px;
    cursor: pointer;
}

.package-full-gallery-item.package-gallery-large {
    grid-column: span 2;
    grid-row: span 2;
}

.package-full-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.package-full-gallery-item:hover img {
    transform: scale(1.05);
}

.package-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 20, 15, 0.12);
}

.package-full-gallery-item:hover .package-gallery-overlay {
    background: rgba(7, 20, 15, 0.3);
}

.package-gallery-expand-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 47px;
    height: 47px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.94);
    border-radius: 50%;
    color: var(--color-brand);
    opacity: 0;
    transform: translate(-50%, -40%);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.package-full-gallery-item:hover .package-gallery-expand-icon {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.package-gallery-caption {
    position: absolute;
    right: 15px;
    bottom: 13px;
    left: 15px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    text-align: left;
}

/* Related */

.related-packages-section {
    padding: 72px 0;
    background: var(--color-page-bg);
}

.related-packages-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.related-packages-heading h2 {
    margin: 0;
    font-size: clamp(29px, 4vw, 42px);
}

.related-packages-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-brand);
    font-size: 13px;
    font-weight: 700;
}

.related-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.related-package-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.related-package-image {
    position: relative;
    display: block;
    height: 230px;
    overflow: hidden;
}

.related-package-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-package-card:hover img {
    transform: scale(1.06);
}

.related-package-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-page-bg);
    color: var(--color-brand);
    font-size: 45px;
}

.related-package-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(7, 19, 14, 0.5),
            transparent 60%
        );
}

.related-package-featured,
.related-package-discount {
    position: absolute;
    top: 12px;
    padding: 5px 9px;
    border-radius: 20px;
    color: #ffffff;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.related-package-featured {
    left: 12px;
    background: var(--color-primary);
}

.related-package-discount {
    right: 12px;
    background: var(--color-success);
}

.related-package-arrow {
    position: absolute;
    right: 13px;
    bottom: 13px;
    width: 37px;
    height: 37px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 50%;
    color: var(--color-brand);
}

.related-package-content {
    padding: 19px;
}

.related-package-content > span {
    display: block;
    margin-bottom: 5px;
    color: var(--color-brand);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.related-package-content h3 {
    margin-bottom: 6px;
    font-size: 19px;
}

.related-package-content h3 a {
    color: var(--color-heading-secondary);
}

.related-package-content > small {
    display: block;
    margin-bottom: 14px;
    color: var(--color-caption);
    font-size: 9px;
}

.related-package-price {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    padding-top: 13px;
    border-top: 1px solid var(--color-border);
}

.related-package-price span {
    display: block;
    color: var(--color-caption);
    font-size: 8px;
}

.related-package-price strong {
    display: block;
    color: var(--color-heading-primary);
    font-size: 17px;
}

.related-package-price > a {
    color: var(--color-brand);
    font-size: 10px;
    font-weight: 800;
}

/* Final CTA */

.package-detail-final-cta {
    padding: 0 0 72px;
    background: var(--color-page-bg);
}

.package-final-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: 40px 44px;
    background: var(--color-brand);
    border-radius: 20px;
}

.package-final-cta-wrapper > div:first-child > span {
    display: block;
    margin-bottom: 7px;
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.package-final-cta-wrapper h2 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 29px;
}

.package-final-cta-wrapper p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.package-final-cta-actions {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.package-final-primary,
.package-final-secondary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 19px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
}

.package-final-primary {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #ffffff;
}

.package-final-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

.package-final-primary:hover,
.package-final-secondary:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--color-brand);
}

/* Modal */

.package-image-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(5, 12, 10, 0.94);
}

.package-image-modal.open {
    display: flex;
}

.package-modal-content {
    max-width: 1200px;
    max-height: 90vh;
    text-align: center;
}

.package-modal-content img {
    max-width: 100%;
    max-height: 82vh;
    display: block;
    object-fit: contain;
    border-radius: 8px;
}

.package-modal-content p {
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
}

.package-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #ffffff;
    font-size: 19px;
    cursor: pointer;
}



/* Package price options */

.package-price-option-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 22px;
}

.package-price-option-card {
    position: relative;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.package-price-option-card:hover {
    transform: translateY(-5px);
    border-color: rgba(15, 110, 86, 0.32);
    box-shadow: var(--shadow-md);
}

.package-price-option-card.recommended {
    border-color: var(--color-brand);
}

/* Image */

.price-option-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--color-page-bg);
}

.price-option-image > img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.package-price-option-card:hover .price-option-image > img {
    transform: scale(1.05);
}

.price-option-image::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(
            to top,
            rgba(8, 22, 16, 0.44),
            transparent 58%
        );
    pointer-events: none;
}

.price-option-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(15, 110, 86, 0.16),
            rgba(224, 122, 63, 0.16)
        );
    color: var(--color-brand);
    font-size: 48px;
}

.price-option-recommended {
    position: absolute;
    top: 0;
    right: 20px;
    z-index: 4;
    padding: 7px 12px;
    background: var(--color-primary);
    border-radius: 0 0 8px 8px;
    color: #ffffff;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.price-option-number {
    position: absolute;
    right: 15px;
    bottom: 13px;
    z-index: 2;
    color: rgba(255, 255, 255, 0.9);
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

/* Content */

.price-option-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.price-option-content h3 {
    margin-bottom: 12px;
    color: var(--color-heading-secondary);
    font-size: 21px;
}

.price-option-value {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 14px;
}

.price-option-value strong {
    color: var(--color-heading-primary);
    font-size: 28px;
}

.price-option-value span {
    color: var(--color-caption);
    font-size: 10px;
}

.price-option-content > p {
    margin-bottom: 20px;
    color: var(--color-body);
    font-size: 12px;
    line-height: 1.7;
}

.price-option-button {
    width: 100%;
    min-height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    background: transparent;
    border: 1px solid var(--color-brand);
    border-radius: 7px;
    color: var(--color-brand);
    font-size: 12px;
    font-weight: 700;
}

.price-option-button:hover {
    background: var(--color-brand);
    color: #ffffff;
}


/* Download */

.package-download-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    width:100%;
    height:56px;

    background:#E7F0EE;
    border:1px solid #E3E6EA;

    color:#374151;

    border-radius:12px;

    transition:.3s ease;
}

.package-download-btn i{
    font-size:18px;
}

.package-download-btn:hover{
    background:#E7F0EE;
    border-color:#D5D9DF;
    color:var(--color-primary);
    transform:translateY(-2px);
}





/* ==============================
   Package Comparison Page
============================== */

.package-compare-hero {
    padding: 62px 0 70px;
    background:
        linear-gradient(
            135deg,
            rgba(15, 110, 86, 0.1),
            rgba(224, 122, 63, 0.09)
        ),
        var(--color-page-bg);
}

.package-compare-hero-content {
    max-width: 820px;
}

.package-compare-hero-content h1 {
    margin-bottom: 18px;
    color: var(--color-heading-primary);
    font-size: clamp(38px, 5vw, 60px);
    line-height: 1.1;
}

.package-compare-hero-content p {
    max-width: 700px;
    margin: 0;
    color: var(--color-body);
    font-size: 16px;
    line-height: 1.75;
}

.package-compare-section {
    padding: 72px 0;
    background: #ffffff;
}

/* Selector */



.comparison-selector-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 26px;
}

.comparison-selector-heading h2 {
    margin-bottom: 6px;
    font-size: clamp(27px, 4vw, 38px);
}

.comparison-selector-heading p {
    margin: 0;
    color: var(--color-caption);
    font-size: 11px;
}

.clear-package-comparison {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    flex-shrink: 0;
    color: var(--color-danger);
    font-size: 11px;
    font-weight: 700;
}


/* ==========================================
   SaaS Grade Package Comparison Workspace
========================================== */

.package-comparison-workspace {
    position: relative;
    padding: 32px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    box-shadow:
        0 4px 15px rgba(20, 30, 25, 0.04),
        0 18px 45px rgba(20, 30, 25, 0.06);
}


/* ==============================
   Header
============================== */

.comparison-selector-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 35px;
    margin-bottom: 24px;
}

.comparison-selector-title {
    max-width: 650px;
}

.comparison-selector-title h2 {
    margin-bottom: 8px;
    color: var(--color-heading-primary);
    font-size: clamp(27px, 3vw, 38px);
    line-height: 1.2;
}

.comparison-selector-title p {
    margin: 0;
    color: var(--color-body);
    font-size: 13px;
    line-height: 1.7;
}


/* Status */

.comparison-selector-status {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.comparison-selection-counter {
    display: flex;
    align-items: baseline;
    gap: 4px;
    padding: 10px 15px;
    background: rgba(15, 110, 86, 0.08);
    border: 1px solid rgba(15, 110, 86, 0.12);
    border-radius: 10px;
}

.comparison-selection-counter > span {
    color: var(--color-brand);
    font-size: 20px;
    font-weight: 800;
}

.comparison-selection-counter small {
    color: var(--color-body);
    font-size: 10px;
    font-weight: 600;
}

.comparison-clear-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-caption);
    font-size: 11px;
    font-weight: 700;
}

.comparison-clear-button:hover {
    color: var(--color-danger);
}


/* ==============================
   Progress
============================== */

.comparison-progress {
    margin-bottom: 28px;
}

.comparison-progress-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 8px;
}

.comparison-progress-header span {
    color: var(--color-caption);
    font-size: 10px;
    font-weight: 700;
}

.comparison-progress-track {
    position: relative;
    height: 5px;
    overflow: hidden;
    background: #eeeeee;
    border-radius: 10px;
}

.comparison-progress-value {
    position: absolute;
    inset: 0 auto 0 0;
    width: 0;
    background: var(--color-brand);
    border-radius: inherit;
    transition: width 0.3s ease;
}


/* ==============================
   Carousel
============================== */

.comparison-carousel {
    position: relative;
}

.comparison-carousel-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(270px, 310px);
    gap: 16px;

    overflow-x: auto;
    overflow-y: hidden;

    padding:
        5px
        2px
        16px;

    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;

    overscroll-behavior-inline: contain;
}

.comparison-carousel-track::-webkit-scrollbar {
    display: none;
}


/* Carousel arrows */

.comparison-carousel-button {
    position: absolute;
    top: 50%;
    z-index: 10;

    width: 44px;
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border: 1px solid var(--color-border);
    border-radius: 50%;

    color: var(--color-heading-secondary);

    box-shadow:
        0 8px 25px rgba(20, 30, 25, 0.12);

    cursor: pointer;

    transform: translateY(-50%);

    transition:
        background 0.2s ease,
        color 0.2s ease,
        opacity 0.2s ease,
        transform 0.2s ease;
}

.comparison-carousel-button:hover {
    background: var(--color-brand);
    border-color: var(--color-brand);
    color: #ffffff;
}

.comparison-carousel-button:disabled {
    opacity: 0;
    pointer-events: none;
}

.comparison-carousel-previous {
    left: -22px;
}

.comparison-carousel-next {
    right: -22px;
}


/* ==============================
   Package Card
============================== */

.comparison-package-card {
    position: relative;
    min-width: 0;
    cursor: pointer;
    scroll-snap-align: start;
}

.comparison-package-card > input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.comparison-card-inner {
    display: flex;
    height: 100%;
    overflow: hidden;
    flex-direction: column;

    background: #ffffff;

    border:
        1.5px
        solid
        var(--color-border);

    border-radius: 16px;

    box-shadow:
        0 3px 10px rgba(25, 30, 28, 0.04);

    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.comparison-package-card:hover
.comparison-card-inner {
    transform: translateY(-4px);

    border-color:
        rgba(15, 110, 86, 0.28);

    box-shadow:
        0 12px 30px
        rgba(15, 110, 86, 0.1);
}


/* Selected state */

.comparison-package-card
input:checked
+ .comparison-card-inner {
    border-color: var(--color-brand);

    box-shadow:
        0 0 0 3px
        rgba(15, 110, 86, 0.08),
        0 14px 35px
        rgba(15, 110, 86, 0.13);
}


/* Image */

.comparison-card-image {
    position: relative;
    height: 175px;
    overflow: hidden;
    background: var(--color-page-bg);
}

.comparison-card-image > img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;

    transition:
        transform 0.4s ease;
}

.comparison-package-card:hover
.comparison-card-image > img {
    transform: scale(1.04);
}

.comparison-card-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            rgba(15, 110, 86, 0.13),
            rgba(224, 122, 63, 0.14)
        );

    color: var(--color-brand);
    font-size: 42px;
}


/* Featured */

.comparison-card-featured {
    position: absolute;
    top: 12px;
    left: 12px;

    display: inline-flex;
    align-items: center;
    gap: 5px;

    padding: 6px 9px;

    background:
        rgba(255, 255, 255, 0.94);

    border-radius: 20px;

    color: var(--color-primary);

    font-size: 8px;
    font-weight: 800;

    text-transform: uppercase;

    backdrop-filter: blur(6px);
}


/* Check button */

.comparison-card-check {
    position: absolute;
    top: 11px;
    right: 11px;

    width: 32px;
    height: 32px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(255, 255, 255, 0.96);

    border:
        1px
        solid
        rgba(255, 255, 255, 0.8);

    border-radius: 50%;

    color: transparent;

    box-shadow:
        0 4px 12px
        rgba(0, 0, 0, 0.08);

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.comparison-package-card
input:checked
+ .comparison-card-inner
.comparison-card-check {
    background: var(--color-brand);
    border-color: var(--color-brand);
    color: #ffffff;

    transform: scale(1.05);
}


/* Content */

.comparison-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;

    padding: 18px;
}

.comparison-card-category {
    display: block;
    margin-bottom: 6px;

    color: var(--color-brand);

    font-size: 8px;
    font-weight: 800;

    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.comparison-card-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 10px;

    margin-bottom: 10px;
}

.comparison-card-title-row > strong {
    color: var(--color-heading-secondary);

    font-size: 17px;
    line-height: 1.35;
}

.comparison-card-title-row > small {
    flex-shrink: 0;

    padding: 5px 8px;

    background:
        rgba(15, 110, 86, 0.08);

    border-radius: 20px;

    color: var(--color-brand);

    font-size: 8px;
    font-weight: 800;
}

.comparison-card-description {
    display: -webkit-box;
    overflow: hidden;

    margin-bottom: 14px;

    color: var(--color-body);

    font-size: 11px;
    line-height: 1.65;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}


/* Meta */

.comparison-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 12px;

    margin-bottom: 16px;
}

.comparison-card-meta > span {
    display: inline-flex;
    align-items: center;
    gap: 5px;

    color: var(--color-caption);

    font-size: 9px;
}

.comparison-card-meta i {
    color: var(--color-brand);
}


/* Footer */

.comparison-card-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 14px;

    margin-top: auto;
    padding-top: 14px;

    border-top:
        1px
        solid
        var(--color-border);
}

.comparison-card-footer > span:first-child > small {
    display: block;

    margin-bottom: 2px;

    color: var(--color-caption);

    font-size: 8px;
}

.comparison-card-footer > span:first-child > strong {
    color: var(--color-heading-primary);

    font-size: 18px;
}

.comparison-select-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 68px;

    padding: 7px 10px;

    background:
        var(--color-page-bg);

    border-radius: 7px;

    color: var(--color-brand);

    font-size: 9px;
    font-weight: 800;
}

.selected-package-text {
    display: none;
}

.comparison-package-card
input:checked
+ .comparison-card-inner
.select-package-text {
    display: none;
}

.comparison-package-card
input:checked
+ .comparison-card-inner
.selected-package-text {
    display: inline;
}

.comparison-package-card
input:checked
+ .comparison-card-inner
.comparison-select-label {
    background: var(--color-brand);
    color: #ffffff;
}


/* Disabled cards */

.comparison-package-card
input:disabled
+ .comparison-card-inner {
    opacity: 0.48;
    cursor: not-allowed;
}


/* ==============================
   Selected Chips
============================== */

.comparison-selected-summary {
    display: flex;
    align-items: flex-start;
    gap: 20px;

    margin-top: 20px;
    padding: 16px 18px;

    background:
        rgba(15, 110, 86, 0.045);

    border:
        1px
        solid
        rgba(15, 110, 86, 0.1);

    border-radius: 12px;
}

.comparison-selected-title {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    flex-shrink: 0;

    padding-top: 5px;

    color: var(--color-brand);

    font-size: 10px;
    font-weight: 800;

    text-transform: uppercase;
}

.comparison-selected-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.comparison-selected-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 6px 10px;

    background: #ffffff;

    border: 1px solid var(--color-border);
    border-radius: 20px;

    color: var(--color-heading-secondary);

    font-size: 10px;
    font-weight: 700;
}

.comparison-selected-empty {
    color: var(--color-caption);
    font-size: 10px;
}


/* ==============================
   Action Bar
============================== */

.comparison-selector-action-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    margin-top: 24px;
    padding-top: 24px;

    border-top:
        1px
        solid
        var(--color-border);
}

.comparison-action-message {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    color: var(--color-caption);

    font-size: 10px;
}

.comparison-action-message i {
    color: var(--color-brand);
}

.comparison-selector-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-browse-button {
    min-height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 17px;
    border-radius: 8px;
    color: var(--color-brand);
    border: 1px solid var(--color-brand);
    font-size: 11px;
    font-weight: 700;
}

.comparison-submit-button {
    min-height: 46px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    padding: 11px 20px;

    background: var(--color-primary);
    border: 1px solid var(--color-primary);

    border-radius: 8px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 800;

    transition:
        background 0.2s ease,
        opacity 0.2s ease;
}

.comparison-submit-button:hover:not(:disabled) {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #ffffff;
}

.comparison-submit-button:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}


.comparison-package-option > input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}



.comparison-package-option:hover .comparison-option-content {
    transform: translateY(-3px);
}

.comparison-package-option input:checked + .comparison-option-content {
    border-color: var(--color-brand);
}

.comparison-option-check {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: transparent;
    font-size: 12px;
}

.comparison-package-option input:checked
+ .comparison-option-content
.comparison-option-check {
    background: var(--color-brand);
    border-color: var(--color-brand);
    color: #ffffff;
}

.comparison-option-image {
    height: 145px;
    overflow: hidden;
    background: var(--color-page-bg);
}

.comparison-option-image img,
.comparison-image-placeholder {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.comparison-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand);
    font-size: 36px;
}

.comparison-option-details {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 15px;
}

.comparison-option-details small {
    margin-bottom: 5px;
    color: var(--color-brand);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.comparison-option-details strong {
    margin-bottom: 8px;
    color: var(--color-heading-secondary);
    font-size: 14px;
    line-height: 1.4;
}

.comparison-option-details > span {
    margin-top: auto;
    color: var(--color-heading-primary);
    font-size: 11px;
    font-weight: 800;
}

.comparison-selector-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 25px;
}

.compare-selected-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.compare-selected-button:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #ffffff;
}

.comparison-back-link {
    color: var(--color-brand);
    font-size: 12px;
    font-weight: 700;
}

/* Comparison results */

.package-comparison-results {
    margin-top: 65px;
}

.comparison-results-heading {
    margin-bottom: 28px;
}

.comparison-results-heading h2 {
    margin-bottom: 7px;
    font-size: clamp(29px, 4vw, 42px);
}

.comparison-results-heading p {
    margin: 0;
    color: var(--color-body);
    font-size: 13px;
}

.package-comparison-table-wrapper {
    position: relative;
    overflow-x: auto;
    overflow-y: visible;

    margin-top: 10px;

    background: #ffffff;

    border: 1px solid var(--color-border);
    border-radius: 18px;

    box-shadow:
        0 8px 30px
        rgba(20, 30, 25, 0.06);

    scrollbar-width: thin;
}


.package-comparison-table {
    min-width: calc(240px + (var(--comparison-columns) * 280px));
}

.comparison-row {
    display: grid;
    grid-template-columns: 240px repeat(var(--comparison-columns), minmax(320px, 1fr));
    align-items: stretch;
}

.comparison-row + .comparison-row {
    border-top: 1px solid var(--color-border);
}

.comparison-row-label,
.comparison-value {
    min-width: 0;
    padding: 20px;
}

.comparison-row-label {
    position: sticky;
    left: 0;
    z-index: 5;

    background: var(--color-page-bg);

    box-shadow:
        1px 0 0
        var(--color-border);
}

.comparison-row-label i {
    color: var(--color-brand);
}

.comparison-value {
    padding: 24px;
    min-height: 110px;
    border-left: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.comparison-package-header {
    align-items: stretch;
}

.comparison-package-header .comparison-row-label {
    align-items: flex-start;
}

.comparison-package-header
.comparison-row-label {
    z-index: 7;
}

.comparison-row:nth-child(even)
.comparison-value {
    background:
        rgba(250, 248, 245, 0.45);
}

.comparison-header-card{
    display:flex;
    flex-direction:column;
    height:100%;
    background:#fff;
}


.comparison-header-image {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: var(--color-page-bg);
}

.comparison-header-image img,
.comparison-header-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-header-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-brand);
    font-size: 42px;
}

.comparison-header-image > span {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 9px;
    background: var(--color-primary);
    border-radius: 20px;
    color: #ffffff;
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.comparison-header-content{
    padding:24px;
    display:flex;
    flex-direction:column;
    flex:1;
}


.comparison-header-content small {
    display: block;
    margin-bottom: 5px;
    color: var(--color-brand);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
}

.comparison-header-content h3{
    margin:10px 0;
    font-size:32px;
    line-height:1.3;
    white-space:normal;
    overflow:visible;
    text-overflow:unset;
    word-break:break-word;
}

.comparison-header-content p {
    margin: 0 0 12px;
    color: var(--color-caption);
    font-size: 10px;
}

.comparison-header-content a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-brand);
    font-size: 10px;
    font-weight: 700;
}

.comparison-price-value strong {
    display: block;
    color: var(--color-heading-primary);
    font-size: 22px;
}

.comparison-price-value del {
    display: block;
    color: var(--color-caption);
    font-size: 10px;
}

.comparison-price-value > span {
    color: var(--color-success);
    font-size: 9px;
    font-weight: 700;
}

.comparison-description-value{
    align-items:flex-start;
    justify-content:flex-start;

    min-height:180px;

    font-size:15px;
    line-height:1.9;
    color:var(--color-body);

    white-space:normal;
    overflow:visible;
    text-overflow:unset;
    word-break:break-word;
}



.comparison-feature-row .comparison-value{
    align-items:flex-start;
}

.comparison-feature-row small{
    margin-top:10px;
    display:block;
    line-height:1.7;
}

.comparison-header-image{
    aspect-ratio:16/10;
    overflow:hidden;
}

.comparison-header-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.comparison-price-value strong{
    font-size:38px;
    line-height:1;
}

.comparison-price-value del{
    margin-top:8px;
    display:block;
}

.comparison-price-value span{
    display:block;
    margin-top:6px;
}



.comparison-not-specified {
    color: var(--color-caption);
    font-size: 10px;
}

.comparison-included,
.comparison-excluded {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
}

.comparison-included {
    color: var(--color-success);
}

.comparison-excluded {
    color: var(--color-caption);
}

.comparison-feature-row small {
    display: block;
    margin-top: 6px;
    color: var(--color-body);
    font-size: 9px;
}

.comparison-action-row .comparison-value {
    text-align: center;
}

.comparison-quote-button {
    width: 100%;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: var(--color-brand);
    border: 1px solid var(--color-brand);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
}

.comparison-quote-button:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

.comparison-view-package {
    display: inline-block;
    margin-top: 9px;
    color: var(--color-caption);
    font-size: 9px;
    font-weight: 700;
}


.package-comparison-table-wrapper{
    overflow-x:auto;
    scrollbar-width:thin;
}

.package-comparison-table-wrapper::-webkit-scrollbar{
    height:8px;
}

.package-comparison-table-wrapper::-webkit-scrollbar-thumb{
    background:#cfd8dc;
    border-radius:50px;
}



/* mobile compare view  */


.mobile-package-card{

    background:#fff;
    border:1px solid var(--color-border);
    border-radius:18px;

    margin-bottom:24px;

    overflow:hidden;

    box-shadow:
    0 12px 30px rgba(0,0,0,.05);

}




.mobile-package-header{

    position:relative;

}

.mobile-package-image{

    width:100%;
    height:230px;

    object-fit:cover;

}

.mobile-package-content{

    padding:24px;

}

.mobile-package-title{

    font-size:24px;
    font-weight:700;

}

.mobile-package-price{

    margin:16px 0;

    font-size:32px;
    font-weight:800;

    color:var(--color-brand);

} 



.mobile-package-row{

    display:flex;

    justify-content:space-between;

    gap:20px;

    padding:14px 0;

    border-bottom:1px solid #eee;

}

.mobile-package-row:last-child{

    border:none;

}

.mobile-package-label{

    font-weight:700;

    color:#555;

}

.mobile-package-value{

    text-align:right;

    font-weight:600;

} 



.mobile-package-description{

    margin-top:20px;

    color:#666;

    line-height:1.8;

} 



.mobile-package-button{

    width:100%;

    margin-top:24px;

    padding:16px;

    border-radius:12px;

} 

    .mobile-package-comparison{
    display:none;
}


/* Empty state */

.comparison-empty-state {
    max-width: 620px;
    margin: 65px auto 0;
    text-align: center;
}

.comparison-empty-state > span {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    background: rgba(15, 110, 86, 0.1);
    border-radius: 50%;
    color: var(--color-brand);
    font-size: 27px;
}

.comparison-empty-state h2 {
    margin-bottom: 10px;
    font-size: 28px;
}

.comparison-empty-state p {
    margin: 0;
    color: var(--color-body);
    font-size: 13px;
    line-height: 1.7;
}

/* CTA */

.package-comparison-cta {
    padding: 0 0 72px;
    background: #ffffff;
}

.package-comparison-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: 40px 44px;
    background: var(--color-brand);
    border-radius: 20px;
}

.package-comparison-cta-wrapper > div:first-child > span {
    display: block;
    margin-bottom: 7px;
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.package-comparison-cta-wrapper h2 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 29px;
}

.package-comparison-cta-wrapper p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.package-comparison-cta-actions {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.package-comparison-primary,
.package-comparison-secondary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 19px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
}

.package-comparison-primary {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #ffffff;
}

.package-comparison-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

.package-comparison-primary:hover,
.package-comparison-secondary:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--color-brand);
}



/* ==============================
   Offer Listing Page
============================== */

.offer-list-hero {
    padding: 64px 0 72px;
    background:
        linear-gradient(
            135deg,
            rgba(15, 110, 86, 0.09),
            rgba(224, 122, 63, 0.1)
        ),
        var(--color-page-bg);
}

.offer-list-hero-content {
    max-width: 850px;
}

.offer-list-hero-content h1 {
    max-width: 800px;
    margin-bottom: 18px;
    color: var(--color-heading-primary);
    font-size: clamp(39px, 5vw, 62px);
    line-height: 1.1;
}

.offer-list-hero-content p {
    max-width: 700px;
    margin-bottom: 28px;
    color: var(--color-body);
    font-size: 16px;
    line-height: 1.75;
}

.offer-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.offer-hero-primary,
.offer-hero-secondary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 21px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
}

.offer-hero-primary {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #ffffff;
}

.offer-hero-primary:hover {
    background: var(--color-primary-hover);
    border-color: var(--color-primary-hover);
    color: #ffffff;
}

.offer-hero-secondary {
    border: 1px solid var(--color-brand);
    color: var(--color-brand);
}

.offer-hero-secondary:hover {
    background: var(--color-brand);
    color: #ffffff;
}


/* Listing */

.offer-list-section {
    padding: 72px 0;
    background: #ffffff;
}


/* Filter */

.offer-filter-form {
    display: grid;
    grid-template-columns:
        minmax(240px, 1.5fr)
        minmax(180px, 0.8fr)
        minmax(165px, 0.7fr)
        auto;
    gap: 10px;
    margin-bottom: 24px;
    padding: 15px;
    background: var(--color-page-bg);
    border: 1px solid var(--color-border);
    border-radius: 15px;
}

.offer-search-field,
.offer-select-field {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 9px;
}

.offer-search-field > i,
.offer-select-field > i {
    position: absolute;
    left: 14px;
    color: var(--color-caption);
    pointer-events: none;
}

.offer-search-field input,
.offer-select-field select {
    width: 100%;
    height: 48px;
    padding: 0 14px 0 40px;
    background: transparent;
    border: 0;
    color: var(--color-heading-secondary);
    font-size: 12px;
    outline: none;
}

.offer-filter-submit {
    min-height: 48px;
    padding: 0 21px;
    background: var(--color-primary);
    border: 0;
    border-radius: 9px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}


/* Active filters */

.offer-active-filters {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 25px;
    padding: 11px 15px;
    background: rgba(15, 110, 86, 0.06);
    border-radius: 9px;
}

.offer-active-filters > div {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}

.offer-active-filters > div > span:first-child {
    color: var(--color-caption);
    font-size: 10px;
}

.offer-filter-tag {
    padding: 5px 9px;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    color: var(--color-brand);
    font-size: 10px;
    font-weight: 700;
}

.clear-offer-filters {
    color: var(--color-danger);
    font-size: 11px;
    font-weight: 700;
}


/* Status tabs */

.offer-status-navigation {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 44px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.offer-status-navigation a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding: 9px 15px;
    background: var(--color-page-bg);
    border: 1px solid var(--color-border);
    border-radius: 25px;
    color: var(--color-heading-secondary);
    font-size: 11px;
    font-weight: 700;
}

.offer-status-navigation a:hover,
.offer-status-navigation a.active {
    background: var(--color-brand);
    border-color: var(--color-brand);
    color: #ffffff;
}


/* Heading */

.offer-results-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 33px;
}

.offer-results-heading h2 {
    margin-bottom: 6px;
    font-size: clamp(28px, 4vw, 41px);
}

.offer-results-heading p {
    margin: 0;
    color: var(--color-caption);
    font-size: 12px;
}

.offer-view-packages-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--color-brand);
    font-size: 13px;
    font-weight: 700;
}


/* Grid */

.offer-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.offer-page-card {
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 17px;
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.offer-page-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}


/* Image */

.offer-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: var(--color-page-bg);
}

.offer-card-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            135deg,
            rgba(15, 110, 86, 0.15),
            rgba(224, 122, 63, 0.18)
        );
    color: var(--color-primary);
    font-size: 55px;
}

.offer-image-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to top,
            rgba(7, 20, 15, 0.5),
            transparent 60%
        );
}


/* Status */

.offer-status-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 20px;
    color: #ffffff;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.offer-status-badge.current {
    background: var(--color-success);
}

.offer-status-badge.upcoming {
    background: var(--color-brand);
}

.offer-status-badge.expired {
    background: var(--color-caption);
}


/* Discount */

.offer-discount-display {
    position: absolute;
    right: 15px;
    bottom: 15px;
    z-index: 2;
    text-align: right;
}

.offer-discount-display strong {
    display: block;
    color: #ffffff;
    font-size: 27px;
    line-height: 1;
}

.offer-discount-display span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 9px;
    font-weight: 800;
}


/* Content */

.offer-page-content {
    padding: 22px;
}

.offer-package-name {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 9px;
    color: var(--color-brand);
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.offer-package-name.general {
    color: var(--color-primary);
}

.offer-page-content h3 {
    margin-bottom: 10px;
    font-size: 21px;
    line-height: 1.4;
}

.offer-card-description {
    margin-bottom: 18px;
    color: var(--color-body);
    font-size: 12px;
    line-height: 1.7;
}


/* Validity */

.offer-validity {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    margin-bottom: 17px;
    padding: 14px;
    background: var(--color-page-bg);
    border-radius: 10px;
}

.offer-validity > div {
    min-width: 0;
}

.offer-validity span {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 3px;
    color: var(--color-caption);
    font-size: 8px;
}

.offer-validity strong {
    display: block;
    color: var(--color-heading-secondary);
    font-size: 10px;
}

.offer-validity-divider {
    width: 1px;
    height: 30px;
    background: var(--color-border);
}


/* Terms */

.offer-terms {
    margin-bottom: 17px;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.offer-terms summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
    color: var(--color-heading-secondary);
    font-size: 10px;
    font-weight: 700;
    cursor: pointer;
}

.offer-terms summary::marker {
    display: none;
}

.offer-terms > div {
    padding-bottom: 12px;
    color: var(--color-body);
    font-size: 9px;
    line-height: 1.6;
}


/* Actions */

.offer-card-actions {
    display: flex;
    align-items: center;
    gap: 13px;
}

.offer-claim-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 15px;
    background: var(--color-brand);
    border: 1px solid var(--color-brand);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
}

.offer-claim-button:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
}

.offer-package-link {
    color: var(--color-brand);
    font-size: 10px;
    font-weight: 700;
}


/* CTA */

.offer-list-cta {
    padding: 0 0 72px;
    background: #ffffff;
}

.offer-list-cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    padding: 40px 44px;
    background: var(--color-brand);
    border-radius: 20px;
}

.offer-list-cta-wrapper > div:first-child > span {
    display: block;
    margin-bottom: 7px;
    color: var(--color-primary);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.offer-list-cta-wrapper h2 {
    margin-bottom: 8px;
    color: #ffffff;
    font-size: 29px;
}

.offer-list-cta-wrapper p {
    max-width: 700px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.offer-list-cta-actions {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
}

.offer-list-cta-primary,
.offer-list-cta-secondary {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 19px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
}

.offer-list-cta-primary {
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #ffffff;
}

.offer-list-cta-secondary {
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: #ffffff;
}

.offer-list-cta-primary:hover,
.offer-list-cta-secondary:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--color-brand);
}



/* =========================================================
   HOME PAGE — LOCATION AND MAP
========================================================= */

.home-location-section {
    --location-heading: #1a1a1a;
    --location-subheading: #3d3d3d;
    --location-text: #6b6b6b;
    --location-caption: #929292;
    --location-primary: #0f6e56;
    --location-primary-dark: #084d3c;
    --location-accent: #e07a3f;
    --location-light: #f4f8f6;
    --location-border: #dfe8e3;
    --location-white: #ffffff;

    position: relative;

    padding: 82px 0;

    overflow: hidden;

    background-color: var(--location-white)!important;
}

.home-location-section,
.home-location-section * {
    box-sizing: border-box;
}





.home-location-section .site-container {
    position: relative;
    z-index: 1;

    width: min(
        1180px,
        calc(100% - 40px)
    );

    margin-inline: auto;
}


/* =========================================================
   TWO-COLUMN LAYOUT
========================================================= */

.home-location-section
.contact-location-layout {
    display: grid;

    grid-template-columns:
        minmax(320px, 0.88fr)
        minmax(500px, 1.12fr);

    align-items: center;
    gap: clamp(42px, 6vw, 76px);
}


/* =========================================================
   LOCATION CONTENT
========================================================= */

.home-location-section
.contact-location-content {
    min-width: 0;
}

.home-location-section
.contact-location-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 13px;

    color: var(--location-primary);

    font-size: 10px;
    font-weight: 850;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-location-section
.contact-location-eyebrow::before {
    width: 27px;
    height: 2px;

    flex: 0 0 27px;

    border-radius: 999px;

    background: var(--location-accent);

    content: "";
}

.home-location-section
.contact-location-content h2 {
    max-width: 520px;

    margin: 0;

    color: var(--location-heading);

    font-size: clamp(28px, 3.2vw, 42px);
    font-weight: 850;
    line-height: 1.14;
    letter-spacing: -0.035em;
}

.home-location-section
.contact-location-content > p {
    max-width: 540px;

    margin: 17px 0 0;

    color: var(--location-text);

    font-size: 12px;
    font-weight: 550;
    line-height: 1.82;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.home-location-section
.contact-location-details {
    display: grid;

    margin: 27px 0 0;

    border-top:
        1px solid
        var(--location-border);

    font-style: normal;
}

.home-location-section
.contact-location-item {
    display: grid;

    grid-template-columns:
        42px
        minmax(0, 1fr);

    align-items: start;
    gap: 13px;

    padding: 15px 0;

    border-bottom:
        1px solid
        var(--location-border);
}

.home-location-section
.contact-location-item > span {
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgb(15 110 86 / 10%);

    border-radius: 11px;

    background:
        rgb(15 110 86 / 8%);

    color: var(--location-primary);

    font-size: 15px;

    transition:
        background-color 0.22s ease,
        color 0.22s ease,
        transform 0.22s ease;
}

.home-location-section
.contact-location-item:hover > span {
    background: var(--location-primary);
    color: var(--location-white);

    transform: translateY(-2px);
}

.home-location-section
.contact-location-item small,
.home-location-section
.contact-location-item strong,
.home-location-section
.contact-location-item a {
    display: block;
}

.home-location-section
.contact-location-item small {
    margin-bottom: 4px;

    color: var(--location-caption);

    font-size: 8px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.home-location-section
.contact-location-item strong,
.home-location-section
.contact-location-item a {
    color: var(--location-subheading);

    font-size: 11px;
    font-weight: 750;
    line-height: 1.65;

    text-decoration: none;

    overflow-wrap: anywhere;

    transition:
        color 0.2s ease;
}

.home-location-section
.contact-location-item a:hover,
.home-location-section
.contact-location-item a:focus-visible {
    color: var(--location-primary);
}


/* =========================================================
   LOCATION BUTTONS
========================================================= */

.home-location-section
.contact-location-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;

    margin-top: 27px;
}

.home-location-section
.contact-location-primary,
.home-location-section
.contact-location-secondary {
    min-height: 45px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 11px 17px;

    border-radius: 9px;

    font-size: 10px;
    font-weight: 800;
    line-height: 1.3;

    text-align: center;
    text-decoration: none;

    transition:
        background-color 0.22s ease,
        border-color 0.22s ease,
        color 0.22s ease,
        box-shadow 0.22s ease,
        transform 0.22s ease;
}

.home-location-section
.contact-location-primary {
    border:
        1px solid
        var(--location-primary);

    background: var(--location-primary);
    color: var(--location-white);

    box-shadow:
        0 10px 24px
        rgb(15 110 86 / 17%);
}

.home-location-section
.contact-location-primary:hover,
.home-location-section
.contact-location-primary:focus-visible {
    border-color: var(--location-primary-dark);

    background: var(--location-primary-dark);
    color: var(--location-white);

    box-shadow:
        0 14px 30px
        rgb(8 77 60 / 22%);

    transform: translateY(-2px);
}

.home-location-section
.contact-location-secondary {
    border:
        1px solid
        var(--location-border);

    background: var(--location-white);
    color: var(--location-primary);
}

.home-location-section
.contact-location-secondary:hover,
.home-location-section
.contact-location-secondary:focus-visible {
    border-color:
        rgb(15 110 86 / 35%);

    background:
        rgb(15 110 86 / 6%);

    color: var(--location-primary-dark);

    transform: translateY(-2px);
}


/* =========================================================
   GOOGLE MAP
========================================================= */

.home-location-section
.contact-map-wrap {
    position: relative;

    min-width: 0;

    padding: 10px 0 0 10px;
}

.home-location-section
.contact-map-wrap::before {
    position: absolute;
    top: -2px;
    left: -2px;

    width: 110px;
    height: 110px;

    border-top:
        3px solid
        var(--location-accent);

    border-left:
        3px solid
        var(--location-accent);

    border-radius: 18px 0 0 0;

    content: "";

    pointer-events: none;
}

.home-location-section
.contact-map-wrap::after {
    position: absolute;
    right: -11px;
    bottom: -11px;

    width: 120px;
    height: 120px;

    border-right:
        3px solid
        rgb(15 110 86 / 35%);

    border-bottom:
        3px solid
        rgb(15 110 86 / 35%);

    border-radius: 0 0 18px 0;

    content: "";

    pointer-events: none;
}

.home-location-section
.contact-map {
    position: relative;
    z-index: 1;

    width: 100%;
    height: 430px;

    display: block;

    border: 0;
    border-radius: 18px;

    background: #dfe8e3;

    box-shadow:
        0 24px 58px
        rgb(11 41 34 / 16%);
}


/* =========================================================
   MAP BADGE
========================================================= */

.home-location-section
.contact-map-badge {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 2;

    display: flex;
    align-items: center;
    gap: 11px;

    padding: 12px 15px;

    border:
        1px solid
        rgb(255 255 255 / 15%);

    border-radius: 11px;

    background:
        rgb(8 77 60 / 94%);

    box-shadow:
        0 14px 30px
        rgb(8 77 60 / 28%);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.home-location-section
.contact-map-badge > span {
    width: 36px;
    height: 36px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    flex: 0 0 36px;

    border-radius: 9px;

    background:
        rgb(255 255 255 / 11%);

    color: #f3a174;

    font-size: 15px;
}

.home-location-section
.contact-map-badge strong,
.home-location-section
.contact-map-badge small {
    display: block;
}

.home-location-section
.contact-map-badge strong {
    color: var(--location-white);

    font-size: 10.5px;
    font-weight: 850;
    line-height: 1.35;
}

.home-location-section
.contact-map-badge small {
    margin-top: 2px;

    color:
        rgb(255 255 255 / 68%);

    font-size: 8.5px;
    font-weight: 600;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 991.98px) {

    .home-location-section {
        padding: 70px 0;
    }

    .home-location-section
    .contact-location-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .home-location-section
    .contact-location-content {
        max-width: 720px;
    }

    .home-location-section
    .contact-map-wrap {
        width: 100%;
        max-width: 820px;
    }

    .home-location-section
    .contact-map {
        height: 390px;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .home-location-section {
        padding: 58px 0;
    }

    .home-location-section
    .site-container {
        width:
            min(
                100% - 30px,
                1180px
            );
    }

    .home-location-section
    .contact-location-layout {
        gap: 39px;
    }

    .home-location-section
    .contact-location-content h2 {
        font-size: 32px;
    }

    .home-location-section
    .contact-location-content > p {
        font-size: 11.5px;
    }

    .home-location-section
    .contact-map-wrap {
        padding: 8px 0 0 8px;
    }

    .home-location-section
    .contact-map-wrap::before {
        width: 78px;
        height: 78px;
    }

    .home-location-section
    .contact-map-wrap::after {
        right: -7px;
        bottom: -7px;

        width: 84px;
        height: 84px;
    }

    .home-location-section
    .contact-map {
        height: 320px;

        border-radius: 15px;
    }

}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 479.98px) {

    .home-location-section {
        padding: 50px 0;
    }

    .home-location-section
    .contact-location-content h2 {
        font-size: 28px;
    }

    .home-location-section
    .contact-location-item {
        grid-template-columns:
            38px
            minmax(0, 1fr);

        gap: 10px;
    }

    .home-location-section
    .contact-location-item > span {
        width: 38px;
        height: 38px;
    }

    .home-location-section
    .contact-location-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .home-location-section
    .contact-location-primary,
    .home-location-section
    .contact-location-secondary {
        width: 100%;
    }

    .home-location-section
    .contact-map {
        height: 270px;
    }

    .home-location-section
    .contact-map-badge {
        right: 10px;
        bottom: 10px;

        gap: 8px;

        padding: 9px 11px;
    }

    .home-location-section
    .contact-map-badge > span {
        width: 31px;
        height: 31px;

        flex-basis: 31px;

        font-size: 13px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .home-location-section
    .contact-location-item > span,

    .home-location-section
    .contact-location-primary,

    .home-location-section
    .contact-location-secondary {
        transition: none;
    }

}











/* =========================================================
   LEGAL PAGES
   ========================================================= */

.legal-page {
    padding: clamp(3.5rem, 7vw, 7rem) 0;
    background:
        linear-gradient(
            180deg,
            #f7faf8 0,
            #ffffff 22rem
        );
}

.legal-page .container {
    width: min(100% - 2rem, 960px);
}

.legal-page-header {
    max-width: 760px;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.legal-page-eyebrow {
    display: inline-flex;
    margin-bottom: 0.9rem;
    color: #0f6e56;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.legal-page-header h1 {
    margin: 0 0 1rem;
    color: #1a1a1a;
    font-size: clamp(2.25rem, 5vw, 4.25rem);
    font-weight: 750;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.legal-page-header p {
    margin: 0;
    color: #6b6b6b;
    font-size: 0.95rem;
}

.legal-page-content {
    overflow: hidden;
    border: 1px solid #e1e9e5;
    border-radius: 1.25rem;
    background: #ffffff;
    box-shadow:
        0 1.5rem 4rem rgba(15, 55, 44, 0.08);
}

.legal-section {
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-bottom: 1px solid #e7ece9;
}

.legal-section:last-child {
    border-bottom: 0;
}

.legal-section h2 {
    margin: 0 0 1rem;
    color: #252525;
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 700;
    line-height: 1.35;
}

.legal-section p,
.legal-section li,
.legal-section address {
    color: #5e625f;
    font-size: clamp(0.96rem, 1.5vw, 1.05rem);
    line-height: 1.8;
}

.legal-section p {
    margin: 0 0 1rem;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    display: grid;
    gap: 0.8rem;
    margin: 0;
    padding-left: 1.35rem;
}

.legal-section li {
    padding-left: 0.35rem;
}

.legal-section li::marker {
    color: #0f6e56;
}

.legal-contact-section {
    background: #f5faf7;
}

.legal-contact-section address {
    margin: 0;
    font-style: normal;
}

.legal-contact-section a {
    color: #0f6e56;
    font-weight: 650;
    text-decoration: none;
}

.legal-contact-section a:hover {
    text-decoration: underline;
}

@media (max-width: 575.98px) {
    .legal-page {
        padding: 2.75rem 0;
    }

    .legal-page .container {
        width: min(100% - 1.25rem, 960px);
    }

    .legal-page-content {
        border-radius: 1rem;
    }

    .legal-section {
        padding: 1.4rem 1.15rem;
    }
}



/* ============================================================
 * HOMEDEN UNIVERSAL AUTH FALLBACK
 * ============================================================ */

.homeden-auth-required {
    width: 100%;
    margin-top: 1.25rem;
}

.homeden-auth-required-content {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 300px;
    padding: 3rem 2rem;

    text-align: center;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f8fcfb 100%
        );

    border: 1px solid rgba(15, 118, 110, 0.14);
    border-radius: 20px;

    box-shadow:
        0 8px 24px rgba(15, 118, 110, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.03);

    overflow: hidden;
}


/* ============================================================
 * TOP ACCENT
 * ============================================================ */

.homeden-auth-required-content::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;
    right: 0;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            #0f766e 0%,
            #147d70 50%,
            #e97b3c 100%
        );
}


/* ============================================================
 * ICON
 * ============================================================ */

.homeden-auth-required-icon {
    display: grid;

    width: 68px;
    height: 68px;

    place-items: center;

    margin-bottom: 0.35rem;

    border: 1px solid rgba(15, 118, 110, 0.14);
    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            rgba(15, 118, 110, 0.12),
            rgba(15, 118, 110, 0.05)
        );

    color: #0f766e;

    font-size: 1.7rem;

    box-shadow:
        0 8px 20px rgba(15, 118, 110, 0.08);
}


/* ============================================================
 * TITLE
 * ============================================================ */

.homeden-auth-required-content h3 {
    margin: 0.35rem 0 0;

    color: #102a2a;

    font-size: 1.45rem;
    font-weight: 700;

    line-height: 1.3;
}


/* ============================================================
 * DESCRIPTION
 * ============================================================ */

.homeden-auth-required-content p {
    max-width: 560px;

    margin: 0.5rem 0 0;

    color: #64748b;

    font-size: 0.95rem;
    line-height: 1.65;
}


/* ============================================================
 * ACTIONS
 * ============================================================ */

.homeden-auth-required-actions {
    display: flex;

    flex-wrap: wrap;

    align-items: center;
    justify-content: center;

    gap: 0.75rem;

    margin-top: 1.35rem;
}


/* ============================================================
 * BUTTON BASE
 * ============================================================ */

.homeden-auth-required-actions .btn {
    display: inline-flex;

    min-width: 165px;
    min-height: 46px;

    align-items: center;
    justify-content: center;

    padding: 0.7rem 1.25rem;

    border-radius: 9px;

    font-size: 0.9rem;
    font-weight: 600;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}


/* ============================================================
 * LOGIN BUTTON
 * ============================================================ */

.homeden-auth-required-actions .btn-primary {
    background: var(--color-primary);
    border-color: var(--color-primary);

    color: #ffffff;

    box-shadow:
        0 6px 16px rgba(15, 118, 110, 0.18);
}

.homeden-auth-required-actions .btn-primary:hover {
    background: #0b625c;
    border-color: #0b625c;

    transform: translateY(-1px);

    box-shadow:
        0 9px 20px rgba(15, 118, 110, 0.24);
}


/* ============================================================
 * REGISTER / SECONDARY BUTTON
 * ============================================================ */

.homeden-auth-required-actions .btn-secondary {
    background: var(--color-brand)!important;

    border: 1px solid rgba(15, 118, 110, 0.2);

    color: var(--color-primary)!important;
}

.homeden-auth-required-actions .btn-secondary:hover {
    background: var(--color-brand-light)!important;

    border-color: rgba(15, 118, 110, 0.35)!important;

    transform: translateY(-1px);
}


/* ============================================================
 * BUTTON ACTIVE
 * ============================================================ */

.homeden-auth-required-actions .btn:active {
    transform: translateY(0);
}


/* ============================================================
 * OPTIONAL SMALL NOTE
 * ============================================================ */

.homeden-auth-required-note {
    margin-top: 1rem;

    color: #94a3b8;

    font-size: 0.8rem;
    line-height: 1.5;
}


/* ============================================================
 * MOBILE
 * ============================================================ */

@media (max-width: 576px) {

    .homeden-auth-required {
        margin-top: 1rem;
    }

    .homeden-auth-required-content {
        min-height: 270px;

        padding: 2.5rem 1.25rem;

        border-radius: 16px;
    }

    .homeden-auth-required-icon {
        width: 60px;
        height: 60px;

        font-size: 1.5rem;
    }

    .homeden-auth-required-content h3 {
        font-size: 1.25rem;
    }

    .homeden-auth-required-content p {
        font-size: 0.9rem;
    }

    .homeden-auth-required-actions {
        width: 100%;

        flex-direction: column;

        margin-top: 1.15rem;
    }

    .homeden-auth-required-actions .btn {
        width: 100%;
        min-width: 0;
    }
}


/* ============================================================
 * REDUCED MOTION
 * ============================================================ */

@media (prefers-reduced-motion: reduce) {

    .homeden-auth-required-actions .btn {
        transition: none;
    }
}