/* ==================================================
   HOME PAGE
================================================== */

/* ==================================================
   HOME HERO
================================================== */

.home-hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    color: var(--ns-white);

    background-image:
        linear-gradient(
            rgba(20, 30, 50, 0.62),
            rgba(20, 30, 50, 0.62)
        ),
        url("images/home_hero.jpg");

    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
}

.home-hero-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    grid-template-areas: "form text";
    gap: 70px;
    align-items: center;
}

.home-hero-text {
    grid-area: text;
    max-width: 680px;
}

.home-hero-label {
    margin-bottom: 18px;
    color: var(--ns-white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.home-hero h1 {
    max-width: 680px;
    margin-bottom: 24px;
    font-size: 48px;
    line-height: 1.05;
    font-weight: 800;
    text-transform: uppercase;
}

.home-hero-intro {
    max-width: 620px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.7;
}

.home-hero-points {
    display: grid;
    gap: 12px;
    margin-bottom: 34px;
}

.home-hero-points li {
    color: var(--ns-white);
    font-size: 16px;
    font-weight: 700;
}

.home-hero-points li::before {
    content: "✓";
    margin-right: 10px;
    color: var(--ns-red);
    font-weight: 800;
}

.home-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.home-hero-button-primary,
.home-hero-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.home-hero-button-primary {
    background: var(--ns-red);
    color: var(--ns-white);
}

.home-hero-button-primary:hover {
    background: var(--ns-red-dark);
    transform: translateY(-2px);
}

.home-hero-button-secondary {
    border: 2px solid var(--ns-white);
    color: var(--ns-white);
}

.home-hero-button-secondary:hover {
    background: var(--ns-white);
    color: var(--ns-blue);
}

/* ==================================================
   HOME HERO QUOTE FORM
================================================== */

.home-quote-card {
    grid-area: form;
    padding: 38px;
    border-radius: 12px;
    background: var(--ns-white);
    color: var(--ns-blue);
    box-shadow: var(--ns-shadow);
}

.home-quote-card h2 {
    margin-bottom: 10px;
    color: var(--ns-blue);
    font-size: 32px;
    line-height: 1.15;
}

.home-quote-card > p {
    margin-bottom: 24px;
    color: #5f668f;
    font-size: 15px;
}

.home-quote-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.home-quote-form input,
.home-quote-form select,
.home-quote-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(47, 57, 118, 0.14);
    border-radius: 6px;
    background: #f4f5fa;
    color: var(--ns-blue);
    font-family: inherit;
    font-size: 15px;
}

.home-quote-form select {
    grid-column: 1 / -1;
    max-width: 100%;
}

.home-quote-form textarea {
    grid-column: 1 / -1;
    min-height: 130px;
    resize: vertical;
}

.home-quote-form input:focus,
.home-quote-form select:focus,
.home-quote-form textarea:focus {
    outline: 2px solid rgba(182, 44, 50, 0.25);
    border-color: var(--ns-red);
    background: var(--ns-white);
}

.home-quote-form button {
    grid-column: 1 / -1;
    padding: 15px 24px;
    border: none;
    border-radius: 6px;
    background: var(--ns-red);
    color: var(--ns-white);
    font-family: inherit;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.home-quote-form button:hover {
    background: var(--ns-red-dark);
    transform: translateY(-2px);
}

.home-quote-form button:disabled {
    cursor: wait;
    opacity: 0.75;
    transform: none;
}

.home-form-note {
    margin-top: 14px;
    color: #6b7195;
    font-size: 12px;
    text-align: center;
}

/* HOME HERO RESPONSIVE */

@media (max-width: 1000px) {

    .home-hero-content {
        grid-template-columns: 1fr;
        grid-template-areas:
            "text"
            "form";
        gap: 44px;
    }

    .home-hero-text {
        max-width: 760px;
    }

    .home-quote-card {
        width: 100%;
        max-width: 720px;
    }
}

@media (max-width: 700px) {

    .home-hero {
        min-height: auto;
        padding: 70px 0;
        background-position: center;
    }

    .home-hero h1 {
        font-size: 38px;
    }

    .home-hero-intro {
        font-size: 16px;
    }

    .home-quote-card {
        padding: 28px 22px;
    }

    .home-quote-card h2 {
        font-size: 26px;
    }

    .home-quote-form {
        grid-template-columns: 1fr;
    }

    .home-quote-form select,
    .home-quote-form textarea,
    .home-quote-form button {
        grid-column: auto;
    }
}

@media (max-width: 430px) {

    .home-hero h1 {
        font-size: 32px;
    }

    .home-hero-buttons {
        flex-direction: column;
    }

    .home-hero-button-primary,
    .home-hero-button-secondary {
        width: 100%;
    }
}

/* ==================================================
   HOME TRUST STRIP
================================================== */

.home-trust-strip {
    background: var(--ns-red);
    color: var(--ns-white);
    box-shadow: var(--ns-shadow);
}

.home-trust-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 20px;
    text-align: center;
}

.home-trust-strip-inner span {
    color: var(--ns-white);
    font-size: 13px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

/* HOME TRUST STRIP RESPONSIVE */

@media (max-width: 700px) {

    .home-trust-strip-inner {
        padding: 16px 18px;
    }

    .home-trust-strip-inner span {
        font-size: 11px;
        line-height: 1.5;
        letter-spacing: 1px;
    }
}

/* ==================================================
   HOME ABOUT
================================================== */

.home-about {
    padding: 90px 0;
    background: var(--ns-light);
}

.home-about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.home-about-image img {
    display: block;
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--ns-shadow);
}

.home-about-text {
    max-width: 650px;
}

.home-about-label {
    display: block;
    margin-bottom: 14px;
    color: var(--ns-red);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.home-about h2 {
    margin-bottom: 24px;
    color: var(--ns-blue);
    font-size: 42px;
    line-height: 1.15;
}

.home-about p {
    margin-bottom: 18px;
    color: var(--ns-blue);
    font-size: 17px;
    line-height: 1.6;
}

.home-about .btn-primary {
    margin-top: 10px;
}

/* HOME ABOUT RESPONSIVE */

@media (max-width: 900px) {

    .home-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .home-about-text {
        max-width: none;
    }

    .home-about h2 {
        font-size: 34px;
    }
}

@media (max-width: 600px) {

    .home-about {
        padding: 64px 0;
    }

    .home-about h2 {
        font-size: 30px;
    }

    .home-about p {
        font-size: 16px;
    }
}

/* ==================================================
   HOME SERVICES
================================================== */

.home-services {
    padding: 100px 0;
    background: var(--ns-white);
}

.home-services-header {
    max-width: 780px;
    margin: 0 auto 56px;
    text-align: center;
}

.home-services-label {
    display: block;
    margin-bottom: 14px;
    color: var(--ns-red);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.home-services-header h2 {
    margin-bottom: 18px;
    color: var(--ns-blue);
    font-size: 42px;
    line-height: 1.15;
}

.home-services-header p {
    color: #5f668f;
    font-size: 17px;
    line-height: 1.6;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.home-service-card {
    position: relative;
    min-height: 390px;
    overflow: hidden;
    border-radius: 12px;
    background: var(--ns-blue-dark);
    color: var(--ns-white);
    box-shadow: var(--ns-shadow);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.home-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.home-service-card img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.home-service-card:hover img {
    transform: scale(1.06);
}

.home-service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.08),
        rgba(0, 0, 0, 0.78)
    );
}

.home-service-content {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 28px;
}

.home-service-content h3 {
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 1.2;
}

.home-service-content p {
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
}

.home-service-link {
    padding-bottom: 4px;
    border-bottom: 2px solid var(--ns-red);
    color: var(--ns-white);
    font-size: 14px;
    font-weight: 800;
}

.home-service-link:hover {
    color: var(--ns-white);
    border-bottom-color: var(--ns-white);
}

.home-services-button-wrap {
    margin-top: 44px;
    text-align: center;
}

.home-services-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border-radius: 6px;
    background: var(--ns-red);
    color: var(--ns-white);
    font-size: 15px;
    font-weight: 800;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.home-services-button:hover {
    background: var(--ns-red-dark);
    color: var(--ns-white);
    transform: translateY(-2px);
}

/* HOME SERVICES RESPONSIVE */

@media (max-width: 1100px) {

    .home-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {

    .home-services {
        padding: 70px 0;
    }

    .home-services-header {
        margin-bottom: 40px;
    }

    .home-services-header h2 {
        font-size: 32px;
    }

    .home-services-grid {
        grid-template-columns: 1fr;
    }

    .home-service-card {
        min-height: 380px;
    }

    .home-service-card img {
        min-height: 380px;
    }
}

/* ==================================================
   PROCESS SECTION
================================================== */

.process-section {
    padding: 110px 0;
    background: var(--ns-white);
}

.process-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.process-content {
    max-width: 650px;
}

.process-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--ns-red);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.process-content h2 {
    margin: 0 0 18px;
    color: var(--ns-blue);
    font-size: 42px;
    line-height: 1.15;
}

.process-intro {
    max-width: 620px;
    margin-bottom: 38px;
    color: #4f5676;
    font-size: 18px;
    line-height: 1.7;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.process-step {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    align-items: start;
}

.process-step > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(182, 44, 50, 0.18);
    border-radius: 50%;
    background: rgba(182, 44, 50, 0.08);
    color: var(--ns-red);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.process-step h3 {
    margin: 0 0 6px;
    color: var(--ns-blue);
    font-size: 20px;
    line-height: 1.3;
}

.process-step p {
    margin: 0;
    color: #4f5676;
    font-size: 16px;
    line-height: 1.6;
}

.process-images {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 220px;
}

.process-images img {
    display: block;
    width: 100%;
    height: 760px;
    border-radius: 12px;
    object-fit: cover;
    object-position: center;
    box-shadow: var(--ns-shadow);
}

/* PROCESS SECTION RESPONSIVE */

@media (max-width: 900px) {

    .process-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-content {
        max-width: none;
    }

    .process-content h2 {
        font-size: 34px;
    }

    .process-images {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 18px;
        margin-top: 0;
    }

    .process-images img {
        height: 500px;
    }
}

@media (max-width: 600px) {

    .process-section {
        padding: 80px 0;
    }

    .process-content h2 {
        font-size: 30px;
    }

    .process-intro {
        margin-bottom: 30px;
        font-size: 16px;
    }

    .process-steps {
        gap: 22px;
    }

    .process-step {
        grid-template-columns: 46px 1fr;
        gap: 14px;
    }

    .process-step > span {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .process-step h3 {
        font-size: 18px;
    }

    .process-step p {
        font-size: 15px;
    }

    .process-images {
        grid-template-columns: 1fr;
    }

    .process-images img {
        height: 380px;
    }
}

/* ==================================================
   LICENCE GUIDE SECTION
================================================== */

.licence-section {
    padding: 110px 0;
    background: var(--ns-light);
}

.licence-heading {
    max-width: 860px;
    margin: 0 auto 55px;
    text-align: center;
}

.licence-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--ns-red);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.licence-heading h2 {
    margin-bottom: 18px;
    color: var(--ns-blue);
    font-size: 42px;
    line-height: 1.15;
}

.licence-heading p {
    margin: 0;
    color: #4f5676;
    font-size: 17px;
    line-height: 1.7;
}

.licence-heading p + p {
    margin-top: 14px;
}

.licence-heading p a {
    color: var(--ns-red);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.licence-heading p a:hover {
    color: var(--ns-red-dark);
}

.licence-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
    align-items: stretch;
}

.licence-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 12px;
    background: var(--ns-white);
    box-shadow: var(--ns-shadow);
}

.licence-card img {
    display: block;
    width: 100%;
    height: 210px;
    object-fit: cover;
    object-position: center;
}

.licence-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 28px;
}

.licence-content h3 {
    margin: 0 0 18px;
    color: var(--ns-blue);
    font-size: 22px;
    line-height: 1.25;
}

.licence-list {
    flex: 1;
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
}

.licence-list li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 28px;
    color: #4f5676;
    font-size: 15px;
    line-height: 1.5;
}

.licence-list li:last-child {
    margin-bottom: 0;
}

.licence-list li.yes::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--ns-red);
    font-weight: 800;
}

.licence-source-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 54px;
    margin-top: auto;
    padding: 13px 14px;
    border: 2px solid var(--ns-blue);
    border-radius: 7px;
    background: transparent;
    color: var(--ns-blue);
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
    text-align: center;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.licence-source-button span {
    flex: 0 0 auto;
    font-size: 16px;
}

.licence-source-button:hover {
    border-color: var(--ns-red);
    background: var(--ns-red);
    color: var(--ns-white);
    transform: translateY(-2px);
}

.licence-note {
    max-width: 850px;
    margin: 60px auto 0;
    text-align: center;
}

.licence-note p {
    margin: 0;
    color: #4f5676;
    font-size: 17px;
    line-height: 1.7;
}

.licence-note strong {
    color: var(--ns-blue);
}

/* LICENCE GUIDE RESPONSIVE */

@media (max-width: 1100px) {

    .licence-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {

    .licence-section {
        padding: 80px 0;
    }

    .licence-heading {
        margin-bottom: 42px;
    }

    .licence-heading h2 {
        font-size: 32px;
    }

    .licence-heading p {
        font-size: 16px;
    }

    .licence-grid {
        grid-template-columns: 1fr;
    }

    .licence-card img {
        height: 240px;
    }

    .licence-note {
        margin-top: 45px;
    }

    .licence-note p {
        font-size: 16px;
    }
}

@media (max-width: 430px) {

    .licence-content {
        padding: 24px 20px;
    }

    .licence-card img {
        height: 220px;
    }
}

/* ==================================================
   HOME WHY CHOOSE US
================================================== */

.home-why {
    position: relative;
    padding: 100px 0;

    background:
        linear-gradient(
            rgba(247, 247, 247, 0.86),
            rgba(247, 247, 247, 0.86)
        ),
        url("images/home_why_choose_us.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.home-why-content {
    max-width: 600px;
}

.home-why-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--ns-red);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.home-why-content h2 {
    margin-bottom: 22px;
    color: var(--ns-blue);
    font-size: 42px;
    line-height: 1.15;
}

.home-why-content p {
    margin-bottom: 18px;
    color: #3f4e7a;
    font-size: 17px;
    line-height: 1.6;
}

.home-why-content p:last-child {
    margin-bottom: 0;
}

.home-why-list {
    display: grid;
    gap: 18px;
}

.home-why-item {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 22px;
    align-items: center;
    padding: 24px 30px;
    border-left: 6px solid var(--ns-red);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.home-why-icon {
    display: block;
    width: 64px;
    height: 64px;
    object-fit: contain;
    justify-self: center;
}

.home-why-text h3 {
    margin: 0 0 8px;
    color: var(--ns-blue);
    font-size: 22px;
    line-height: 1.2;
}

.home-why-text p {
    margin: 0;
    color: #4f5d8c;
    font-size: 15px;
    line-height: 1.55;
}

/* HOME WHY CHOOSE US RESPONSIVE */

@media (max-width: 900px) {

    .home-why-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .home-why-content {
        max-width: none;
    }

    .home-why-content h2 {
        font-size: 34px;
    }
}

@media (max-width: 600px) {

    .home-why {
        padding: 70px 0;
    }

    .home-why-content h2 {
        font-size: 30px;
    }

    .home-why-content p {
        font-size: 16px;
    }

    .home-why-item {
        grid-template-columns: 60px 1fr;
        gap: 16px;
        padding: 22px 20px;
    }

    .home-why-icon {
        width: 50px;
        height: 50px;
    }

    .home-why-text h3 {
        font-size: 19px;
    }

    .home-why-text p {
        font-size: 14px;
    }
}

@media (max-width: 430px) {

    .home-why-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .home-why-icon {
        justify-self: center;
    }
}

/* ==================================================
   HOME GALLERY
================================================== */

.home-gallery {
    padding: 100px 0;
    background: var(--ns-white);
}

.home-gallery-header {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.home-gallery-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--ns-red);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.home-gallery-header h2 {
    margin-bottom: 18px;
    color: var(--ns-blue);
    font-size: 42px;
    line-height: 1.15;
}

.home-gallery-header p {
    color: #5f668f;
    font-size: 17px;
    line-height: 1.6;
}

.home-gallery-slider {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
}

.home-gallery-slide {
    display: none;
}

.home-gallery-slide.active {
    display: block;
}

.home-gallery-slide img {
    display: block;
    width: 100%;
    height: 420px;
    border-radius: 12px;
    object-fit: cover;
    object-position: center;
    box-shadow: var(--ns-shadow);
}

.home-gallery-caption {
    margin-top: 22px;
    text-align: center;
}

.home-gallery-caption h3 {
    margin-bottom: 4px;
    color: var(--ns-blue);
    font-size: 24px;
    line-height: 1.3;
}

.home-gallery-caption p {
    color: #5f668f;
    font-size: 15px;
}

.home-gallery-arrow {
    position: absolute;
    z-index: 5;
    top: 42%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: var(--ns-red);
    color: var(--ns-white);
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
    box-shadow: var(--ns-shadow);
    transform: translateY(-50%);
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.home-gallery-arrow:hover {
    background: var(--ns-red-dark);
    transform: translateY(-50%) scale(1.05);
}

.home-gallery-arrow:focus-visible {
    outline: 3px solid rgba(182, 44, 50, 0.3);
    outline-offset: 3px;
}

.home-gallery-prev {
    left: -70px;
}

.home-gallery-next {
    right: -70px;
}

.home-gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.home-gallery-dots button {
    width: 11px;
    height: 11px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(47, 57, 118, 0.25);
    cursor: pointer;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.home-gallery-dots button:hover {
    background: rgba(47, 57, 118, 0.5);
    transform: scale(1.15);
}

.home-gallery-dots button.active {
    background: var(--ns-red);
}

.home-gallery-dots button:focus-visible {
    outline: 2px solid var(--ns-red);
    outline-offset: 3px;
}

.home-gallery-button {
    margin-top: 36px;
    text-align: center;
}

.home-gallery-button a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border-radius: 6px;
    background: var(--ns-red);
    color: var(--ns-white);
    font-size: 15px;
    font-weight: 800;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.home-gallery-button a:hover {
    background: var(--ns-red-dark);
    color: var(--ns-white);
    transform: translateY(-2px);
}

/* HOME GALLERY RESPONSIVE */

@media (max-width: 1100px) {

    .home-gallery-prev {
        left: 16px;
    }

    .home-gallery-next {
        right: 16px;
    }
}

@media (max-width: 700px) {

    .home-gallery {
        padding: 70px 0;
    }

    .home-gallery-header {
        margin-bottom: 40px;
    }

    .home-gallery-header h2 {
        font-size: 32px;
    }

    .home-gallery-slide img {
        height: 360px;
    }

    .home-gallery-arrow {
        width: 40px;
        height: 40px;
        font-size: 32px;
    }
}

@media (max-width: 430px) {

    .home-gallery-slide img {
        height: 280px;
    }

    .home-gallery-caption h3 {
        font-size: 21px;
    }

    .home-gallery-prev {
        left: 10px;
    }

    .home-gallery-next {
        right: 10px;
    }
}

/* ==================================================
   HOME CLIENT FEEDBACK
================================================== */

.home-feedback {
    position: relative;
    padding: 100px 0;

    background:
        linear-gradient(
            rgba(247, 247, 247, 0.72),
            rgba(247, 247, 247, 0.72)
        ),
        url("images/home_feedback.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-feedback-header {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.home-feedback-label {
    display: block;
    margin-bottom: 14px;
    color: var(--ns-red);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.home-feedback-header h2 {
    margin-bottom: 18px;
    color: var(--ns-blue);
    font-size: 42px;
    line-height: 1.15;
}

.home-feedback-header p {
    color: var(--ns-blue);
    font-size: 17px;
    line-height: 1.6;
    font-weight: 600;
}

.home-feedback-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.home-feedback-card {
    display: flex;
    flex-direction: column;
    min-height: 330px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.home-feedback-quote {
    margin-bottom: 18px;
    color: var(--ns-red);
    font-size: 54px;
    line-height: 0.8;
    font-weight: 800;
}

.home-feedback-card > p {
    flex: 1;
    margin-bottom: 24px;
    color: #33416f;
    font-size: 16px;
    line-height: 1.65;
}

.home-feedback-author {
    color: var(--ns-blue);
    font-size: 15px;
    font-weight: 800;
}

.home-feedback-location {
    margin-top: 4px;
    color: #5f668f;
    font-size: 14px;
}

/* HOME CLIENT FEEDBACK RESPONSIVE */

@media (max-width: 900px) {

    .home-feedback-grid {
        gap: 22px;
    }

    .home-feedback-card {
        padding: 26px;
    }

    .home-feedback-header h2 {
        font-size: 34px;
    }
}

@media (max-width: 760px) {

    .home-feedback {
        padding: 70px 0;
    }

    .home-feedback-header {
        margin-bottom: 40px;
    }

    .home-feedback-header h2 {
        font-size: 30px;
    }

    .home-feedback-header p {
        font-size: 16px;
    }

    .home-feedback-grid {
        grid-template-columns: 1fr;
    }

    .home-feedback-card {
        min-height: auto;
        padding: 28px;
    }
}

/* ==================================================
   HOME AREAS WE SERVICE
================================================== */

.home-areas-section {
    padding: 100px 0;
    background: var(--ns-white);
}

.home-areas-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.home-areas-content {
    max-width: 620px;
}

.home-areas-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--ns-red);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.home-areas-content h2 {
    margin-bottom: 22px;
    color: var(--ns-blue);
    font-size: 42px;
    line-height: 1.15;
}

.home-areas-content > p {
    margin: 0 0 16px;
    color: var(--ns-blue);
    font-size: 17px;
    line-height: 1.6;
}

.home-areas-content .home-areas-note {
    margin: 26px 0;
    padding: 16px 18px;
    border-left: 4px solid var(--ns-red);
    background: var(--ns-soft);
    color: #4f5676;
    font-size: 15px;
}

.home-areas-note strong {
    color: var(--ns-blue);
}

.home-areas-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 26px;
    border-radius: 6px;
    background: var(--ns-red);
    color: var(--ns-white);
    font-size: 15px;
    font-weight: 800;
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.home-areas-button:hover {
    background: var(--ns-red-dark);
    color: var(--ns-white);
    transform: translateY(-2px);
}

.home-areas-image {
    margin-top: 36px;
}

.home-areas-image img {
    display: block;
    width: 100%;
    height: 280px;
    border-radius: 12px;
    object-fit: cover;
    object-position: center;
    box-shadow: var(--ns-shadow);
}

.home-suburb-panel {
    padding: 38px;
    border-left: 5px solid var(--ns-red);
    border-radius: 12px;
    background: var(--ns-light);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.home-suburb-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 22px;
}

.home-suburb-list span {
    position: relative;
    padding-left: 22px;
    color: var(--ns-blue);
    font-size: 15px;
    line-height: 1.35;
    font-weight: 500;
}

.home-suburb-list span::before {
    content: "✓";
    position: absolute;
    top: 0;
    left: 0;
    color: var(--ns-red);
    font-weight: 900;
}

/* HOME AREAS RESPONSIVE */

@media (max-width: 1000px) {

    .home-areas-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .home-areas-content {
        max-width: none;
    }

    .home-areas-image img {
        height: 320px;
    }
}

@media (max-width: 700px) {

    .home-areas-section {
        padding: 70px 0;
    }

    .home-areas-content h2 {
        font-size: 34px;
    }

    .home-areas-content > p {
        font-size: 16px;
    }

    .home-suburb-panel {
        padding: 28px 22px;
    }

    .home-suburb-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 13px 18px;
    }
}

@media (max-width: 430px) {

    .home-areas-content h2 {
        font-size: 30px;
    }

    .home-areas-image img {
        height: 240px;
    }

    .home-suburb-panel {
        padding: 24px 14px;
    }

    .home-suburb-list {
        gap: 12px 10px;
    }

    .home-suburb-list span {
        padding-left: 18px;
        font-size: 12px;
    }
}

/* ==================================================
   HOME FINAL CTA
================================================== */

.home-cta {
    padding: 80px 0;

    background:
        linear-gradient(
            rgba(255, 255, 255, 0.76),
            rgba(255, 255, 255, 0.76)
        ),
        url("images/home_cta.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-cta-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.home-cta-label {
    display: block;
    margin-bottom: 16px;
    color: var(--ns-red);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.home-cta h2 {
    margin-bottom: 28px;
    color: var(--ns-blue);
    font-size: 44px;
    line-height: 1.15;
}

.home-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.home-cta-primary,
.home-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 800;
    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.home-cta-primary {
    background: var(--ns-red);
    color: var(--ns-white);
}

.home-cta-primary:hover {
    background: var(--ns-red-dark);
    color: var(--ns-white);
    transform: translateY(-2px);
}

.home-cta-secondary {
    border: 2px solid var(--ns-blue);
    color: var(--ns-blue);
}

.home-cta-secondary:hover {
    background: var(--ns-blue);
    color: var(--ns-white);
    transform: translateY(-2px);
}

/* HOME FINAL CTA RESPONSIVE */

@media (max-width: 700px) {

    .home-cta {
        padding: 70px 0;
    }

    .home-cta h2 {
        font-size: 32px;
    }

    .home-cta-buttons {
        flex-direction: column;
    }

    .home-cta-primary,
    .home-cta-secondary {
        width: 100%;
    }
}