:root {
    --navy: #0f2742;
    --navy-soft: #17385b;
    --turquoise: #22b8b0;
    --gold: #d9b36c;
    --white: #ffffff;
    --bg: #f6fbfd;
    --text: #163047;
    --muted: #66788a;
    --border: #d8e4ea;
    --danger: #b42318;
    --success: #12715b;
    --shadow: 0 18px 40px rgba(15, 39, 66, 0.08);
    --radius: 22px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

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

img {
    max-width: 100%;
}

main {
    min-height: 60vh;
}

.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(15, 39, 66, 0.06);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 74px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand strong {
    display: block;
    font-size: 1rem;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 0.78rem;
}

.brand-mark {
    width: 90px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--navy), var(--turquoise));
    color: var(--white);
    font-weight: 700;
}

.site-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 76px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 14px;
    box-shadow: var(--shadow);
    flex-direction: column;
}

.site-nav.open {
    display: flex;
}

.site-nav a {
    padding: 10px 12px;
    border-radius: 14px;
    color: var(--muted);
    font-weight: 600;
}

.site-nav a.active,
.site-nav a:hover {
    background: rgba(34, 184, 176, 0.1);
    color: var(--navy);
}

.nav-toggle {
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 12px;
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
}

.promo-bar {
    background: linear-gradient(90deg, var(--navy), var(--turquoise));
    color: var(--white);
    text-align: center;
    padding: 10px 16px;
    font-size: 0.9rem;
}

.hero,
.page-hero {
    background:
        radial-gradient(circle at top right, rgba(34, 184, 176, 0.20), transparent 25%),
        radial-gradient(circle at left top, rgba(217, 179, 108, 0.16), transparent 25%),
        linear-gradient(180deg, #ffffff, #f4fbfc);
}

.hero {
    padding: 56px 0 32px;
}

.page-hero.small {
    padding: 42px 0 20px;
}

.page-hero.small .container > h1 {
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    line-height: 1.1;
     max-width: min(100%, 41ch);
}

.page-hero.small .container > p {
    font-size: 0.98rem;
    line-height: 1.65;
    max-width: min(100%, 72ch);
    color: var(--muted);
}

.hero-grid,
.two-column,
.form-layout,
.faq-grid,
.footer-grid,
.area-panel,
.cta-box,
.admin-grid,
.feature-grid.single {
    display: grid;
    gap: 24px;
}

.hero-grid {
    align-items: center;
}

.hero-copy-panel {
    display: grid;
    gap: 0;
}

.hero-copy-panel h1 {
    font-size: clamp(1.8rem, 6vw, 3.5rem);
    line-height: 1.08;
    max-width: 19ch;
    margin-bottom: 8px;
}

.hero-copy-panel > p {
    max-width: 56ch;
}

.hero-copy-panel .hero-actions {
    gap: 10px;
    margin-top: 18px;
}

.hero-copy-panel .btn {
    min-height: 40px;
    padding: 10px 16px;
    border-radius: 14px;
    font-size: 0.9rem;
    box-shadow: none;
    backdrop-filter: blur(6px);
}

.hero-copy-panel .btn-primary {
    background: rgba(34, 184, 176, 0.18);
    border-color: rgba(15, 39, 66, 0.16);
    color: var(--navy);
}

.hero-copy-panel .btn-secondary {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(15, 39, 66, 0.12);
    color: var(--navy);
}

.hero-copy-panel .btn:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.78);
}

.eyebrow {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(34, 184, 176, 0.12);
    color: var(--navy);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
    line-height: 1.2;
    margin: 0 0 14px;
    color: var(--navy);
}

h1 {
    font-size: clamp(2rem, 7vw, 4rem);
}

h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
}

p {
    margin: 0 0 14px;
}

.hero-copy,
.section-head p,
.notes-box p,
.muted {
    color: var(--muted);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.hero-actions.stack,
.hero-actions.center {
    justify-content: center;
}

.hero-badges,
.area-tags,
.checkbox-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-badges span,
.area-tags span,
.area-tag,
.checkbox-card {
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: 999px;
    padding: 10px 14px;
    box-shadow: 0 10px 24px rgba(15, 39, 66, 0.05);
}

.area-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    text-decoration: none;
    padding: 8px 12px;
}

.area-tag-icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 39, 66, 0.08);
    color: var(--navy);
    flex-shrink: 0;
    border: 1px solid rgba(15, 39, 66, 0.08);
}

.area-tag-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.area-tag-icon-fallback {
    font-weight: 700;
}

.area-tag-label {
    font-weight: 700;
    line-height: 1.2;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border-radius: 14px;
    border: 1px solid transparent;
    padding: 12px 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--navy), var(--turquoise));
    color: var(--white);
}

.btn-secondary {
    background: rgba(15, 39, 66, 0.06);
    color: var(--navy);
    border-color: rgba(15, 39, 66, 0.08);
}

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

.btn-danger {
    background: #fee4e2;
    color: var(--danger);
    border-color: #fecdca;
}

.card,
.hero-panel,
.table-card,
.notes-box,
.success-card {
    background: var(--white);
    border: 1px solid rgba(15, 39, 66, 0.07);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: auto;
}

.hero-panel {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(244, 251, 252, 0.98));
}

.mini-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 22px;
}

.mini-stats div {
    padding: 16px;
    border-radius: 18px;
    background: rgba(15, 39, 66, 0.04);
    text-align: center;
}

.mini-stats strong {
    display: block;
    font-size: 1.2rem;
    color: var(--navy);
}

.section {
    padding: 36px 0;
}

.section.alt {
    background: var(--bg);
}

.section-head {
    margin-bottom: 22px;
}

.feature-grid,
.service-grid,
.pricing-grid,
.testimonial-grid,
.steps-grid,
.area-grid,
.gallery-grid {
    display: grid;
    gap: 18px;
}

.feature-card,
.service-card,
.pricing-card,
.testimonial-card,
.step-card,
.area-card,
.gallery-card {
    height: 100%;
}

.service-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.55rem;
    background: rgba(34, 184, 176, 0.15);
    margin-bottom: 16px;
}

.service-icon.large {
    width: 72px;
    height: 72px;
    font-size: 2rem;
}

.price-tag,
.price-big,
.service-price {
    color: var(--turquoise);
    font-weight: 700;
}

.price-big {
    font-size: 1.7rem;
    margin-bottom: 14px;
}

.text-link {
    color: var(--navy-soft);
    font-weight: 700;
}

.check-list,
.contact-list,
.footer-links,
.detail-list,
.plain-list,
.table-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li,
.contact-list li,
.detail-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
}

.check-list li::before,
.detail-list li::before,
.contact-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--turquoise);
    font-weight: 700;
}

.check-list.compact li {
    margin-bottom: 8px;
}

.steps-grid .step-card span {
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(217, 179, 108, 0.22);
    margin-bottom: 16px;
    font-weight: 700;
}

.form-layout {
    align-items: start;
}

.booking-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--navy);
}

.form-grid {
    display: grid;
    gap: 16px;
}

.form-grid .full {
    grid-column: 1 / -1;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 14px;
    font: inherit;
    color: var(--text);
    background: var(--white);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--turquoise);
    outline: 2px solid rgba(34, 184, 176, 0.14);
}

.checkbox-grid {
    align-items: stretch;
}

.checkbox-card {
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
}

.checkbox-card input {
    width: auto;
    margin-right: 8px;
}

.checkbox-card span {
    display: inline-flex;
    padding: 14px 16px;
}

.inline-check,
.checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert {
    border-radius: 16px;
    padding: 14px 16px;
    margin-bottom: 16px;
}

.alert-danger {
    background: #fef3f2;
    color: var(--danger);
    border: 1px solid #fecdca;
}

.alert-success {
    background: #ecfdf3;
    color: var(--success);
    border: 1px solid #abefc6;
}

.table-card {
    overflow-x: auto;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

.price-table th,
.price-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.price-table th {
    color: var(--navy);
    background: rgba(15, 39, 66, 0.03);
}

.notes-box,
.cta-box {
    margin-top: 28px;
}

.cta-strip {
    padding-bottom: 56px;
}

.cta-box {
    align-items: center;
    background: linear-gradient(135deg, rgba(15, 39, 66, 0.96), rgba(23, 56, 91, 0.95));
    color: var(--white);
    border-radius: 28px;
    padding: 28px;
}

.cta-box h2,
.cta-box p {
    color: var(--white);
}

.cta-box.slim {
    background: linear-gradient(135deg, rgba(15, 39, 66, 0.06), rgba(34, 184, 176, 0.08));
    color: var(--text);
}

.cta-box.slim h2,
.cta-box.slim p {
    color: inherit;
}

.success-card {
    text-align: center;
    padding: 40px 28px;
}

.narrow {
    max-width: 720px;
}

.footer-grid {
    padding: 42px 0 24px;
}

.site-footer {
    background: #0a1d31;
    color: rgba(255, 255, 255, 0.88);
}

.site-footer h3,
.site-footer h4 {
    color: var(--white);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.88);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 0 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.92rem;
}

.whatsapp-float {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 70;
    background: linear-gradient(135deg, #1fa37d, #22b8b0);
    color: var(--white);
    padding: 14px 16px;
    border-radius: 999px;
    box-shadow: 0 20px 30px rgba(34, 184, 176, 0.28);
    font-weight: 700;
}

.stars {
    color: var(--gold);
    margin-bottom: 10px;
}

.gallery-media {
    overflow: hidden;
    border-radius: 22px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(15, 39, 66, 0.08), rgba(34, 184, 176, 0.08));
}

.gallery-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
}

.accordion-list,
.timeline {
    display: grid;
    gap: 14px;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 700;
}

.left-gap {
    margin-top: 26px;
}


.hero-card {
    display: grid;
    gap: 14px;
}

.hero-slider {
   position: relative;
    aspect-ratio: 7.2 / 5;
    min-height: 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #0f2742;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide img {
   width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}
.hero-slide-media {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: #0f2742;
}


.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 29, 49, 0.05), rgba(10, 29, 49, 0.28));
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 29, 49, 0.12), rgba(10, 29, 49, 0.78));
}

.hero-slide-content {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    color: var(--white);
    max-width: min(420px, calc(100% - 96px));
    padding: 0;
    background: transparent;
    backdrop-filter: none;
}

.hero-slide-content h2,
.hero-slide-content p {
    color: var(--white);
}

.hero-slide-content h2 {
    font-size: clamp(1rem, 2.1vw, 1.55rem);
    max-width: none;
    margin-bottom: 8px;
    text-shadow: 0 2px 12px rgba(10, 29, 49, 0.45);
}

.hero-slide-content p {
    max-width: 34ch;
    color: rgba(255, 255, 255, 0.96);
    font-size: 0.82rem;
    line-height: 1.48;
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(10, 29, 49, 0.4);
}

.hero-slide-eyebrow {
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    backdrop-filter: blur(6px);
}

.hero-slide-content .eyebrow {
    padding: 0;
    font-size: 0.62rem;
    margin-bottom: 8px;
    background: transparent;
    color: rgba(255, 255, 255, 0.96);
    text-shadow: 0 2px 10px rgba(10, 29, 49, 0.4);
}

.hero-slide-content .hero-actions {
    margin-top: 12px;
    gap: 8px;
}

.hero-slide-content .btn {
    min-height: 34px;
    padding: 7px 12px;
    font-size: 0.82rem;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    box-shadow: none;
}

.hero-slide-content .btn-primary {
    background: rgba(34, 184, 176, 0.2);
    border-color: rgba(34, 184, 176, 0.5);
    color: var(--white);
}

.hero-slide-content .btn-light {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.52);
    color: var(--white);
}

.hero-slide-content .btn:hover {
    background: rgba(255, 255, 255, 0.22);
}

.hero-slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.26);
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(6px);
}

.hero-slider-control.prev {
    left: 14px;
}

.hero-slider-control.next {
    right: 14px;
}

.hero-slider-dots {
    position: absolute;
    z-index: 3;
    left: auto;
    right: 18px;
    bottom: 16px;
    display: flex;
    gap: 6px;
}

.hero-slider-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
}

.hero-slider-dot.is-active {
    width: 22px;
    background: rgba(217, 179, 108, 0.95);
}

.hero-slider-caption {
    display: none;
}

@media (min-width: 768px) {
    .site-nav {
        display: flex;
        position: static;
        flex-direction: row;
        align-items: center;
        border: 0;
        box-shadow: none;
        padding: 0;
        background: transparent;
    }

    .nav-toggle {
        display: none;
    }

    .hero {
        padding: 84px 0 54px;
    }

    .hero-card {
        gap: 18px;
    }

    .hero-slider {
        min-height: clamp(400px, 48vh, 540px);
    }

    .hero-slide-content {
        left: 28px;
        right: 28px;
        bottom: 24px;
        max-width: min(440px, calc(100% - 132px));
        padding: 0;
    }

    .hero-slider-dots {
        right: 24px;
        bottom: 18px;
    }

    .hero-grid,
    .two-column,
    .form-layout,
    .faq-grid,
    .area-panel,
    .cta-box {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 1fr));
        align-items: start;
    }

    .feature-grid,
    .service-grid,
    .steps-grid,
    .area-grid,
    .gallery-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pricing-grid,
    .testimonial-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .service-detail-card {
        display: grid;
        grid-template-columns: 100px 1fr;
        align-items: start;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .nav-cta {
        margin-left: 8px;
    }
}

.checkbox-row input,
.inline-check input {
    width: auto;
}

.checkbox-plain label {
    margin: 0;
    font-weight: 600;
}

.top-gap {
    margin-top: 24px;
}


.brand-mark-image {
    padding: 0;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(15, 39, 66, 0.08);
}

.brand-mark-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.testimonial-media {
    width: 72px;
    height: 72px;
    margin-bottom: 14px;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(15, 39, 66, 0.06);
}

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

.area-card-media,
.service-detail-media,
.pricing-package-media {
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 16px;
    background: rgba(16, 41, 66, 0.06);
}

.area-card-media img,
.service-detail-media img,
.pricing-package-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.area-card-media {
    aspect-ratio: 16 / 10;
}

.service-detail-media {
    width: 100%;
    aspect-ratio: 4 / 3;
}

.pricing-cards-grid {
    display: grid;
    gap: 18px;
    margin-bottom: 24px;
}

.pricing-package-card {
    height: 100%;
}

.card-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 10px 0 14px;
}

.card-meta-row.left-align {
    justify-content: flex-start;
}

.card-meta-row span,
.card-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(16, 41, 66, 0.08);
    color: var(--text-main);
    font-size: 0.84rem;
    font-weight: 600;
    padding: 6px 12px;
}

.card-chip {
    margin-bottom: 14px;
}

@media (min-width: 992px) {
    .service-detail-card-rich {
        grid-template-columns: minmax(240px, 320px) 1fr;
    }

    .pricing-cards-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}


.area-card-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.area-card-icon {
    width: 44px;
    height: 44px;
    box-shadow: 0 8px 18px rgba(15, 39, 66, 0.08);
}

.area-card-title {
    min-width: 0;
}

.area-card-title h2 {
    margin-bottom: 6px;
}

.area-card-status {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 0.78rem;
    font-weight: 700;
    background: rgba(34, 184, 176, 0.12);
    color: var(--navy);
}

@media (max-width: 767px) {
    .hero-copy-panel h1 {
        font-size: clamp(1.65rem, 5.5vw, 2.9rem);
        line-height: 1.08;
        margin-bottom: 10px;
    }

    .hero-copy-panel > p {
        font-size: 0.94rem;
        line-height: 1.55;
        max-width: 32ch;
    }

    .page-hero.small .container > h1 {
        font-size: clamp(1.9rem, 8vw, 2.6rem);
        line-height: 1.14;
        max-width: 100%;
    }

    .page-hero.small .container > p {
        font-size: 0.94rem;
        line-height: 1.55;
        max-width: 100%;
    }

    .hero-copy-panel .hero-actions {
        gap: 8px;
        margin-top: 14px;
    }

    .hero-copy-panel .btn {
        min-height: 36px;
        padding: 8px 14px;
        font-size: 0.82rem;
    }

    .hero-slide-content {
        max-width: calc(100% - 86px);
        padding: 0;
    }

    .hero-slide-content h2 {
        font-size: 0.95rem;
        line-height: 1.25;
        margin-bottom: 6px;
    }

    .hero-slide-content p {
        font-size: 0.74rem;
        line-height: 1.38;
        max-width: 28ch;
    }

    .hero-slide-content .btn {
        min-height: 31px;
        padding: 6px 10px;
        font-size: 0.76rem;
    }

    .hero-slider-caption {
        display: none;
    }

    .hero-slider-control {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }

    .hero-slider-dots {
        right: 12px;
        bottom: 12px;
    }
}

/* Compact vertical spacing refinement for frontend sections */
.hero {
    padding: 48px 0 28px;
}

.page-hero.small {
    padding: 34px 0 16px;
}

.page-hero.small .container > h1,
.section-head h2,
.section-head h3,
.card h2,
.card h3,
.notes-box h3,
.cta-box h2 {
    margin-bottom: 10px;
}

p {
    margin: 0 0 12px;
}

.hero-actions {
    gap: 10px;
    margin-top: 18px;
}

.card,
.hero-panel,
.table-card,
.notes-box,
.success-card {
    padding: 20px;
}

.mini-stats {
    gap: 12px;
    margin-top: 18px;
}

.section {
    padding: 28px 0;
}

.section-head {
    margin-bottom: 16px;
}

.feature-grid,
.service-grid,
.pricing-grid,
.testimonial-grid,
.steps-grid,
.area-grid,
.gallery-grid,
.hero-grid,
.two-column,
.form-layout,
.faq-grid,
.footer-grid,
.area-panel,
.cta-box,
.admin-grid,
.feature-grid.single {
    gap: 20px;
}

.notes-box,
.cta-box,
.top-gap,
.pricing-cards-grid,
.card-chip,
.area-card-head {
    margin-top: 18px;
}

.cta-strip {
    padding-bottom: 40px;
}

.cta-box {
    padding: 22px;
}

.success-card {
    padding: 32px 24px;
}

.footer-grid {
    padding: 32px 0 18px;
}

.footer-bottom {
    padding: 14px 0 24px;
}

.service-icon,
.testimonial-media,
.area-card-media,
.service-detail-media,
.pricing-package-media {
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .hero {
        padding: 72px 0 44px;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 42px 0 24px;
    }

    .page-hero.small {
        padding: 28px 0 14px;
    }

    .section {
        padding: 22px 0;
    }

    .card,
    .hero-panel,
    .table-card,
    .notes-box,
    .success-card,
    .cta-box {
        padding: 18px;
    }

    .hero-actions {
        gap: 8px;
        margin-top: 14px;
    }

    .footer-grid {
        padding: 26px 0 14px;
    }

    .footer-bottom {
        padding: 12px 0 18px;
    }
}


/* Shared customer-portal / admin-inspired UI */
.portal-body {
    background: var(--bg);
}

.portal-top-strip {
    background: rgba(15, 39, 66, 0.96);
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.portal-top-strip-inner {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 10px 0;
}

.portal-top-strip-copy,
.portal-top-strip-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.portal-top-strip-copy strong {
    color: var(--white);
}

.portal-top-strip-copy span {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.94rem;
}

.portal-top-strip-actions a {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
}

.portal-top-strip-actions a:hover {
    color: var(--white);
}

.admin-section {
    padding: 0 0 30px;
}

.admin-card,
.stats-card {
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 24px;
    border: 1px solid rgba(15, 39, 66, 0.06);
}

.portal-page-head,
.settings-page-head,
.settings-section-head,
.section-inline-head,
.settings-save-footer,
.portal-auth-grid,
.portal-grid,
.settings-grid,
.stats-grid,
.portal-chip-list,
.portal-quick-links,
.actions-row,
.actions-cell {
    display: grid;
    gap: 14px;
}

.portal-page-head {
    align-items: start;
}

.portal-page-head-hero {
    background:
        radial-gradient(circle at top right, rgba(34, 184, 176, 0.12), transparent 45%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 251, 0.98));
}

.stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.stats-card span {
    display: block;
    color: var(--muted);
    margin-bottom: 8px;
}

.stats-card strong {
    display: block;
    font-size: 1.9rem;
    color: var(--navy);
}

.settings-grid,
.portal-auth-grid,
.portal-grid {
    align-items: start;
}

.settings-field {
    display: grid;
    gap: 8px;
}

.settings-field small {
    color: var(--muted);
}

.settings-grid-2,
.settings-grid-3 {
    display: grid;
    gap: 16px;
}

.settings-grid .full,
.settings-grid-2 .full,
.settings-grid-3 .full {
    grid-column: 1 / -1;
}

.settings-page-head,
.settings-section-head,
.section-inline-head,
.settings-save-footer {
    align-items: center;
    justify-content: space-between;
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.settings-page-head h1,
.settings-page-head h2,
.settings-section-head h2,
.section-inline-head h2,
.section-inline-head h3,
.portal-page-head h1 {
    margin-bottom: 0;
}

.summary-list {
    display: grid;
    gap: 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    align-items: flex-start;
}

.summary-item:last-child {
    border-bottom: 0;
}

.summary-item span {
    color: var(--muted);
}

.summary-item strong {
    color: var(--navy);
    text-align: right;
}

.table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.admin-table th,
.admin-table td {
    text-align: left;
    padding: 14px 12px;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}

.admin-table th {
    background: rgba(15, 39, 66, 0.03);
    color: var(--navy);
}

.table-subtext {
    margin-top: 6px;
    color: var(--muted);
    font-size: 0.92rem;
}

.actions-row,
.actions-cell {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.text-link {
    color: var(--navy);
    font-weight: 700;
}

.actions-cell-stack {
    align-items: flex-start;
    gap: 8px;
}

.inline-action-form {
    margin: 0;
}

.inline-action-form .btn {
    min-height: 40px;
}

.action-link-danger {
    background: transparent;
    border: 0;
    padding: 0;
    color: var(--danger);
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
}

.action-link-danger:hover {
    text-decoration: underline;
}

.quick-link-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 68px;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(15, 39, 66, 0.03);
    color: var(--navy);
    font-weight: 700;
    text-align: center;
}

.quick-link-card:hover {
    background: rgba(15, 39, 66, 0.06);
}

.badge,
.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 700;
    border: 1px solid transparent;
    white-space: nowrap;
}

.badge-success,
.status-success {
    background: #ecfdf3;
    color: var(--success);
    border-color: #abefc6;
}

.badge-warning,
.status-warning {
    background: #fffaeb;
    color: #b54708;
    border-color: #fedf89;
}

.badge-info,
.status-info {
    background: #eff8ff;
    color: #175cd3;
    border-color: #b2ddff;
}

.badge-neutral,
.status-neutral {
    background: #f2f4f7;
    color: #344054;
    border-color: #d0d5dd;
}

.summary-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(15, 39, 66, 0.03);
    font-weight: 700;
    color: var(--navy);
}

.timeline {
    display: grid;
    gap: 10px;
}

.timeline-item {
    padding: 16px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(15, 39, 66, 0.03);
}

.timeline-item strong {
    display: block;
    margin-bottom: 6px;
    color: var(--navy);
}

.timeline-item p {
    margin: 8px 0 0;
}

.portal-note-box {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(15, 39, 66, 0.03);
}

.portal-note-box h3 {
    margin-top: 0;
}

.portal-sidebar-card {
    position: relative;
}

.portal-chip-list {
    display: flex;
    flex-wrap: wrap;
}

.portal-quick-links {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.compact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compact-list li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 12px;
}

.compact-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--turquoise);
    font-weight: 700;
}

.empty-state {
    padding: 18px;
    border: 1px dashed var(--border);
    border-radius: 18px;
    background: rgba(15, 39, 66, 0.02);
}

.checkbox-plain span {
    color: var(--text);
    font-weight: 400;
}


.portal-inline-note {
    margin-bottom: 18px;
    padding: 12px 14px;
    border-radius: 14px;
    background: rgba(34, 184, 176, 0.10);
    color: var(--navy);
}
@media (min-width: 900px) {
    .portal-auth-grid {
        grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    }

    .portal-grid {
        grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
    }

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

    .settings-grid-3,
    .stats-grid-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .portal-page-head,
    .settings-page-head,
    .settings-section-head,
    .section-inline-head,
    .settings-save-footer {
        grid-template-columns: minmax(0, 1fr) auto;
    }
}

@media (max-width: 767px) {
    .admin-card,
    .stats-card {
        padding: 20px;
        border-radius: 22px;
    }

    .summary-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .summary-item strong {
        text-align: left;
    }

    .portal-top-strip-inner {
        align-items: flex-start;
    }

    .portal-top-strip-actions {
        width: 100%;
    }
}


.portal-filter-form {
    display: grid;
    gap: 18px;
}

.filter-grid {
    display: grid;
    gap: 16px;
}

.filter-actions {
    gap: 12px;
}

.results-meta {
    display: grid;
    gap: 12px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    color: var(--muted);
}

.results-meta strong {
    color: var(--navy);
}

.results-chip-list {
    align-items: center;
}

@media (min-width: 768px) {
    .filter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1080px) {
    .filter-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}


.upload-preview-shell {
    display: grid;
    gap: 12px;
}

.upload-preview-head {
    display: grid;
    gap: 4px;
}

.upload-preview-head strong {
    color: var(--navy);
}

.upload-preview-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.upload-preview-card {
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(16, 41, 66, 0.03);
    overflow: hidden;
}

.upload-preview-frame {
    min-height: 180px;
    background: #eef5f8;
    display: grid;
    place-items: center;
    border-bottom: 1px solid rgba(16, 41, 66, 0.08);
}

.upload-preview-frame img {
    width: 100%;
    height: 100%;
    max-height: 260px;
    object-fit: cover;
    display: block;
}

.upload-preview-meta {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
}

.upload-preview-meta strong {
    color: var(--navy);
    word-break: break-word;
}

.upload-preview-meta span,
.upload-preview-note {
    font-size: 0.95rem;
}
