:root {
    --color-black: #0b0d10;
    --color-panel: #151a20;
    --color-charcoal: #242a31;
    --color-muted: #66717f;
    --color-line: #e4e7eb;
    --color-soft: #f5f7f9;
    --color-white: #ffffff;
    --color-accent: #f5a623;
    --color-accent-dark: #cc7e00;
    --color-navy: #10243f;
    --shadow-card: 0 18px 50px rgba(16, 36, 63, 0.12);
    --shadow-hover: 0 24px 64px rgba(16, 36, 63, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--color-charcoal);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.65;
    background: var(--color-white);
}

a {
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

img {
    max-width: 100%;
}

.section-padding {
    padding: 92px 0;
}

.bg-soft {
    background: var(--color-soft);
}

.bg-dark-panel {
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-black), var(--color-navy));
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--color-accent-dark);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}
.section-kiss {
    display: inline-flex;
    align-items: center;
    margin-bottom: 12px;
    color: var(--color-accent-dark);
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}
.text-accent {
    color: var(--color-accent);
}

.section-heading {
    margin: 0 auto 44px;
    text-align: center;
}

.section-heading h2,
.trust-section h2,
.contact-section h2,
.cta-banner h2 {
    color: var(--color-black);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
}

.section-heading p,
.trust-section p,
.contact-section p,
.cta-banner p {
    color: var(--color-muted);
    font-size: 1.05rem;
}

.section-heading--light h2,
.section-heading--light p,
.cta-banner h2,
.cta-banner p {
    color: var(--color-white);
}

.btn {
    border-radius: 4px;
    font-weight: 800;
    padding: 0.76rem 1.25rem;
}

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

.btn-accent {
    color: var(--color-black);
    background: var(--color-accent);
    border-color: var(--color-accent);
    box-shadow: 0 12px 28px rgba(245, 166, 35, 0.26);
}

.btn-accent:hover {
    color: var(--color-black);
    background: #ffbd45;
    border-color: #ffbd45;
}

.top-bar {
    color: rgba(255, 255, 255, 0.9);
    background: var(--color-black);
    font-size: 0.93rem;
}

.top-bar__content,
.top-bar__details {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-bar__content {
    justify-content: space-between;
    min-height: 46px;
}

.top-bar a,
.top-bar span {
    color: rgba(255, 255, 255, 0.9);
}

.top-bar i {
    color: var(--color-accent);
    margin-right: 6px;
}

.site-header {
    background: rgba(15, 19, 24, 0.96);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.navbar {
    padding: 16px 0;
}

.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
}

.brand-mark {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    color: var(--color-white);
    line-height: 1.05;
}

.brand-text small {
    color: var(--color-accent);
    font-size: 1rem;
    font-weight: 800;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 700;
    padding-right: 0.9rem;
    padding-left: 0.9rem;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--color-accent);
}

.hero-section {
    position: relative;
    min-height: 740px;
    padding: 132px 0 72px;
    overflow: hidden;
    color: var(--color-white);
    background: url("../images/nicefence-banner.jpg") center/cover no-repeat;
}

.hero-section__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4, 6, 9, 0.9), rgba(16, 36, 63, 0.68) 52%, rgba(4, 6, 9, 0.28));
}

.hero-section__content {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    max-width: 850px;
    margin-bottom: 22px;
    font-size: clamp(2.65rem, 6vw, 5.45rem);
    font-weight: 900;
    line-height: 1.02;
}

.hero-section p {
    color: rgba(255, 255, 255, 0.86);
}

.hero-section__intro {
    font-size:  2rem;
    margin-bottom: 18px;
    font-weight: 700;
    text-transform: uppercase;
}

.hero-section__services {
    display: grid;
    gap: 10px;
    max-width: 760px;
    margin: 0;
    padding-left: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    line-height: 1.45;
}

.hero-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.quick-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 74px;
}

.quick-card,
.feature-card,
.service-card,
.project-card,
.enquiry-form {
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.quick-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-height: 138px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.94);
    border-left: 5px solid var(--color-accent);
    border-radius: 6px;
    box-shadow: var(--shadow-card);
}

.quick-card:hover,
.feature-card:hover,
.service-card:hover,
.project-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.quick-card i {
    color: var(--color-accent-dark);
    font-size: 2rem;
}

.quick-card h2 {
    margin-bottom: 4px;
    color: var(--color-black);
    font-size: 1.18rem;
    font-weight: 900;
}

.quick-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.feature-card {
    height: 100%;
    padding: 34px;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: 8px;
    box-shadow: 0 12px 32px rgba(16, 36, 63, 0.08);
}

.feature-card__icon {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    place-items: center;
    color: var(--color-black);
    background: var(--color-accent);
    border-radius: 6px;
    font-size: 1.7rem;
}

.feature-card h3,
.service-card h3,
.process-step h3 {
    color: var(--color-black);
    font-size: 1.35rem;
    font-weight: 900;
}

.feature-card p,
.service-card p,
.process-step p {
    color: var(--color-muted);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-navy);
    font-weight: 900;
}

.card-link:hover {
    color: var(--color-accent-dark);
}

.service-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.service-card {
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: 8px;
    box-shadow: var(--shadow-card);
}

.service-card__image {
    width: 100%;
    height: 235px;
    object-fit: cover;
    background: var(--color-charcoal);
}

.service-card__body {
    padding: 30px;
}

.service-card ul {
    display: grid;
    gap: 9px;
    margin: 22px 0 26px;
    padding: 0;
    list-style: none;
}

.service-card li {
    position: relative;
    padding-left: 26px;
    color: var(--color-charcoal);
}

.service-card li::before {
    position: absolute;
    left: 0;
    color: var(--color-accent-dark);
    content: "✓";
    font-weight: 900;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: var(--color-soft);
    border: 1px solid var(--color-line);
    border-radius: 8px;
    font-weight: 800;
}

.benefit-item i {
    color: var(--color-accent-dark);
    font-size: 1.35rem;
}

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

.process-step {
    min-height: 230px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
}

.process-step span {
    display: grid;
    width: 46px;
    height: 46px;
    margin-bottom: 22px;
    place-items: center;
    color: var(--color-black);
    background: var(--color-accent);
    border-radius: 50%;
    font-weight: 900;
}

.process-step h3 {
    color: var(--color-white);
    font-size: 1.1rem;
}

.process-step p {
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0;
}

.cta-banner {
    padding: 72px 0;
    background: var(--color-black);
}

.cta-banner__panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    padding: 48px;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.2), rgba(16, 36, 63, 0.7));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
}

.cta-banner__panel p {
    margin-bottom: 0;
}

.cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    flex: 0 0 auto;
}

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

.project-card {
    position: relative;
    overflow: hidden;
    min-height: 255px;
    background: var(--color-black);
    border-radius: 8px;
    box-shadow: var(--shadow-card);
}

.project-card img {
    width: 100%;
    height: 100%;
    min-height: 255px;
    object-fit: cover;
    transition: transform 0.28s ease;
}

.project-card:hover img {
    transform: scale(1.04);
}

.project-card__caption {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 12px 14px;
    color: var(--color-white);
    background: rgba(11, 13, 16, 0.76);
    border-left: 4px solid var(--color-accent);
    border-radius: 4px;
    font-weight: 900;
}

.project-slider {
    position: relative;
}

.project-slider__viewport {
    overflow: hidden;
}

.project-slider__track {
    display: flex;
    gap: 22px;
    transition: transform 0.36s ease;
    will-change: transform;
}

.project-slide {
    flex: 0 0 calc((100% - 66px) / 4);
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--color-black);
}

.project-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.28s ease;
}

.project-slide:hover img {
    transform: scale(1.035);
}

.project-slider__nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--color-black);
    background: rgba(255, 255, 255, 0.94);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    transform: translateY(-50%);
}

.project-slider__nav:hover:not(:disabled) {
    background: var(--color-accent);
}

.project-slider__nav:disabled {
    cursor: not-allowed;
    opacity: 0.42;
}

.project-slider__nav--prev {
    left: -24px;
}

.project-slider__nav--next {
    right: -24px;
}

.portfolio-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: var(--color-black);
    background-position: center;
    background-size: cover;
}

.portfolio-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.78) 30%, rgba(255, 255, 255, 0.24) 62%, rgba(255, 255, 255, 0.08) 100%);
}

.portfolio-hero__content {
    position: relative;
    z-index: 1;
    max-width: 560px;
    padding: 88px 12px;
}

.portfolio-hero .section-kicker {
    color: var(--color-accent-dark);
}

.portfolio-hero h1 {
    margin-bottom: 20px;
    color: var(--color-black);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3rem, 6vw, 5.6rem);
    font-weight: 400;
    line-height: 0.98;
}

.portfolio-hero p {
    max-width: 430px;
    margin-bottom: 28px;
    color: #4a4d52;
    font-size: 1.02rem;
    line-height: 1.8;
}

.portfolio-hero__button {
    display: inline-flex;
    align-items: center;
    gap: 18px;
    min-width: 168px;
    justify-content: center;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0;
}

.portfolio-gallery {
    padding: 38px 0 76px;
    background: var(--color-white);
}

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

.portfolio-item {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    padding: 0;
    background: var(--color-black);
    border: 0;
    border-radius: 0;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.24s ease, transform 0.32s ease;
}

.portfolio-item:hover img,
.portfolio-item:focus-visible img {
    opacity: 0.9;
    transform: scale(1.035);
}

.portfolio-item:focus-visible {
    outline: 3px solid var(--color-accent);
    outline-offset: 4px;
}

.portfolio-empty {
    padding: 34px;
    color: var(--color-muted);
    background: var(--color-soft);
    border: 1px solid var(--color-line);
    border-radius: 8px;
}

.portfolio-empty p {
    margin: 0;
}

.portfolio-modal {
    --bs-modal-bg: transparent;
}

.portfolio-modal .modal-dialog {
    width: 100%;
    max-width: calc(100vw - 48px);
    margin-right: auto;
    margin-left: auto;
}

.portfolio-modal .modal-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 56px);
    padding: 0 74px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.portfolio-modal__image {
    display: block;
    width: auto;
    height: auto;
    max-width: min(100%, 1480px);
    max-height: calc(100vh - 92px);
    object-fit: contain;
    background: var(--color-black);
    box-shadow: 0 26px 90px rgba(0, 0, 0, 0.58);
}

.portfolio-modal__close,
.portfolio-modal__nav {
    display: grid;
    place-items: center;
    z-index: 3;
    color: var(--color-black);
    background-color: rgba(255, 255, 255, 0.94);
    border: 0;
    border-radius: 50%;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.portfolio-modal__close {
    position: fixed;
    top: 24px;
    right: 28px;
    width: 44px;
    height: 44px;
    opacity: 1;
}

.portfolio-modal__nav {
    position: fixed;
    top: 50%;
    width: 58px;
    height: 58px;
    font-size: 1.55rem;
    transform: translateY(-50%);
}

.portfolio-modal__nav:hover,
.portfolio-modal__close:hover {
    background-color: var(--color-accent);
}

.portfolio-modal__nav--prev {
    left: 28px;
}

.portfolio-modal__nav--next {
    right: 28px;
}

.about-hero .portfolio-hero__overlay {
    background: linear-gradient(90deg, rgba(4, 6, 9, 0.78) 0%, rgba(4, 6, 9, 0.55) 42%, rgba(4, 6, 9, 0.18) 100%);
}

.about-hero .portfolio-hero__content {
    max-width: 720px;
}

.about-hero .section-kicker,
.about-hero h1,
.about-hero p {
    color: var(--color-white);
}

.about-hero h1 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(3rem, 6vw, 4.6rem);
    font-weight: 900;
    text-transform: uppercase;
}

.about-hero p {
    max-width: 520px;
    font-size: 1.35rem;
    line-height: 1.45;
}

.about-page {
    padding: 78px 0 92px;
    background: var(--color-white);
}

.about-article {
    text-align: justify;
    max-width: 780px;
    margin-left: 9%;
}

.about-article .section-kicker {
    position: relative;
    margin-bottom: 34px;
}

.about-article .section-kicker::after {
    position: absolute;
    bottom: -14px;
    left: 0;
    width: 34px;
    height: 1px;
    background: var(--color-accent-dark);
    content: "";
}

.about-article h2 {
    margin-bottom: 30px;
    color: var(--color-black);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.12;
}

.about-article p {
    margin-bottom: 26px;
    color: #2e3338;
    font-size: 1rem;
    line-height: 1.9;
}

.about-article p:last-child {
    margin-bottom: 0;
}

.contact-page {
    position: relative;
    padding: 72px 0 82px;
    color: var(--color-white);
    background:
        radial-gradient(circle at 50% 20%, rgba(63, 116, 231, 0.12), transparent 28%),
        linear-gradient(rgba(10, 78, 180, 0.92), rgba(12, 43, 90, 0.94)),
        var(--color-black);
}

.contact-page__heading {
    max-width: 980px;
    margin: 0 auto 44px;
    text-align: center;
}

.contact-page__heading h2 {
    margin-bottom: 20px;
    color: var(--color-white);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.contact-page__details {
    display: grid;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.contact-page__details a,
.contact-page__details span {
    color: rgba(255, 255, 255, 0.9);
}

.contact-page__details a:hover {
    color: var(--color-accent);
}

.contact-page__details i {
    margin-right: 6px;
    color: var(--color-accent);
}

.contact-page__form {
    max-width: 1100px;
    margin: 0 auto;
}

.contact-page__fields {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 34px;
}

.contact-page__left {
    display: grid;
    gap: 28px;
}

.contact-page input,
.contact-page textarea {
    width: 100%;
    color: var(--color-black);
    background: var(--color-white);
    border: 2px solid transparent;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 800;
    outline: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-page input {
    min-height: 72px;
    padding: 0 24px;
}

.contact-page textarea {
    min-height: 272px;
    padding: 24px;
    resize: vertical;
}

.contact-page input::placeholder,
.contact-page textarea::placeholder {
    color: #b8bdc3;
    opacity: 1;
    text-transform: uppercase;
}

.contact-page input:focus,
.contact-page textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 0.22rem rgba(245, 166, 35, 0.22);
}

.contact-page__submit {
    display: flex;
    min-width: 210px;
    margin: 30px auto 0;
    justify-content: center;
    border-radius: 4px;
    text-transform: uppercase;
}

.contact-popup {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(11, 13, 16, 0.68);
}

.contact-popup.is-open {
    display: flex;
}

.contact-popup__panel {
    position: relative;
    width: min(100%, 460px);
    padding: 38px 34px 32px;
    text-align: center;
    background: var(--color-white);
    border-top: 5px solid var(--color-accent);
    border-radius: 8px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
}

.contact-popup__panel h2 {
    margin-bottom: 12px;
    color: var(--color-black);
    font-size: 1.55rem;
    font-weight: 900;
}

.contact-popup__panel p {
    margin-bottom: 24px;
    color: var(--color-charcoal);
    font-size: 1.02rem;
    line-height: 1.6;
}

.contact-popup__close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: var(--color-black);
    background: var(--color-soft);
    border: 0;
    border-radius: 50%;
}

.contact-popup__close:hover {
    background: var(--color-accent);
}

.contact-popup__button {
    min-width: 110px;
    justify-content: center;
}

.contact-panel {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.contact-panel a,
.contact-panel span {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-black);
    font-weight: 800;
}

.contact-panel i {
    color: var(--color-accent-dark);
}

.enquiry-form {
    padding: 34px;
    background: var(--color-white);
    border: 1px solid var(--color-line);
    border-radius: 8px;
    box-shadow: var(--shadow-card);
}

.form-label {
    color: var(--color-black);
    font-weight: 800;
}

.form-control,
.form-select {
    min-height: 50px;
    border-color: #d7dce2;
    border-radius: 4px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 0.22rem rgba(245, 166, 35, 0.2);
}

.site-footer {
    padding: 70px 0 26px;
    color: rgba(255, 255, 255, 0.76);
    background: var(--color-black);
}

.footer-brand {
    display: inline-block;
    margin-bottom: 16px;
    color: var(--color-white);
    font-size: 1.35rem;
    font-weight: 900;
}

.site-footer h3 {
    margin-bottom: 16px;
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 900;
}

.site-footer ul {
    display: grid;
    gap: 9px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.76);
}

.site-footer a:hover {
    color: var(--color-accent);
}

.footer-contact i {
    color: var(--color-accent);
    margin-right: 8px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 46px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.92rem;
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: 72px 0;
    }

    .top-bar__content,
    .top-bar__details {
        flex-wrap: wrap;
        gap: 10px 16px;
    }

    .top-bar__content {
        padding: 10px 0;
    }

    .navbar-collapse {
        padding-top: 16px;
    }

    .hero-section {
        min-height: auto;
        padding: 96px 0 56px;
    }

    .quick-card-grid,
    .service-card-grid,
    .project-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .project-slide {
        flex-basis: calc((100% - 22px) / 2);
    }

    .project-slider__nav--prev {
        left: -14px;
    }

    .project-slider__nav--next {
        right: -14px;
    }

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

    .cta-banner__panel {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 58px 0;
    }

    .top-bar__details {
        display: grid;
        width: 100%;
    }

    .top-bar .btn {
        width: 100%;
    }

    .navbar-brand {
        max-width: 250px;
    }

    .hero-section h1 {
        font-size: 2.7rem;
    }

    .hero-section p {
        font-size: 1.06rem;
    }

    .hero-section__actions .btn,
    .cta-banner__actions,
    .cta-banner__actions .btn {
        width: 100%;
    }

    .quick-card-grid,
    .service-card-grid,
    .benefit-grid,
    .process-grid,
    .project-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .project-slide {
        flex-basis: 100%;
    }

    .project-slider__nav {
        width: 42px;
        height: 42px;
    }

    .project-slider__nav--prev {
        left: 8px;
    }

    .project-slider__nav--next {
        right: 8px;
    }

    .portfolio-hero {
        min-height: 320px;
    }

    .portfolio-hero__content {
        padding: 66px 12px;
    }

    .about-article {
        margin-left: 0;
    }

    .about-page {
        padding: 58px 0 70px;
    }

    .contact-page {
        padding: 58px 0 66px;
    }

    .contact-page__fields {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-page__left {
        gap: 20px;
    }

    .contact-page input {
        min-height: 62px;
    }

    .contact-page textarea {
        min-height: 220px;
    }

    .quick-card {
        min-height: auto;
    }

    .service-card__image {
        height: 210px;
    }

    .cta-banner {
        padding: 46px 0;
    }

    .cta-banner__panel,
    .enquiry-form {
        padding: 26px;
    }

    .footer-bottom {
        flex-direction: column;
    }
}
