/* ==================================================
   HOME PAGE
================================================== */

/* ==================================================
   HOME HERO
================================================== */

.home-hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.home-hero-text {
    max-width: 640px;
}

.home-hero-label {
    color: var(--ns-white);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.home-hero h1 {
    font-size: 56px;
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.home-hero-intro {
    font-size: 19px;
    line-height: 1.7;
    max-width: 620px;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.92);
}

.home-hero-points {
    display: grid;
    gap: 12px;
    margin-bottom: 34px;
}

.home-hero-points li {
    font-size: 16px;
    font-weight: 700;
    color: var(--ns-white);
}

.home-hero-points li::before {
    content: "✓";
    color: var(--ns-red);
    font-weight: 800;
    margin-right: 10px;
}

.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: 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 FORM */

.home-hero {

    position: relative;
    min-height: 760px;

    background-image:
        linear-gradient(
            rgba(20,30,50,.60),
            rgba(20,30,50,.60)
        ),
        url("images/home_hero.JPG");

    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
	color: var(--ns-white);
    display: flex;
    align-items: center;
}

.home-quote-card {
    background: var(--ns-white);
    color: var(--ns-blue);
    padding: 38px;
    border-radius: 12px;
    box-shadow: var(--ns-shadow);
}

.home-quote-card h2 {
    font-size: 32px;
    line-height: 1.15;
    margin-bottom: 10px;
    color: var(--ns-blue);
}

.home-quote-card p {
    font-size: 15px;
    color: #5f668f;
    margin-bottom: 24px;
}

.home-quote-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.home-quote-form select {
    grid-column: 1 / -1;
    max-width: 100%;
}

.home-hero-text h1 {
    font-size: 48px;
    line-height: 1.05;
}

.home-quote-form input,
.home-quote-form select,
.home-quote-form textarea {
    width: 100%;
    border: 1px solid rgba(47,57,118,0.14);
    border-radius: 6px;
    background: #f4f5fa;
    color: var(--ns-blue);
    font-size: 15px;
    padding: 14px;
}

.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 textarea {
    grid-column: 1 / -1;
    min-height: 130px;
    resize: vertical;
}

.home-quote-form button {
    grid-column: 1 / -1;
    border: none;
    background: var(--ns-red);
    color: var(--ns-white);
    padding: 15px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 800;
    transition: 0.2s ease;
}

.home-quote-form button:hover {
    background: var(--ns-red-dark);
    transform: translateY(-2px);
}

.home-form-note {
    margin-top: 14px;
    font-size: 12px;
    color: #6b7195;
    text-align: center;
}

/* RESPONSIVE */
@media (max-width: 1000px) {

    .home-hero-content {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .home-hero-text {
        max-width: 760px;
    }

    .home-quote-card {
        max-width: 720px;
    }
}

@media (max-width: 700px) {

    .home-hero {
        min-height: auto;
        padding: 70px 0;
    }

    .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;
    }
}

@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;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px 40px;
    padding: 18px 20px;
    text-align: center;
}

.home-trust-strip-inner span {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    line-height: 1.4;
    white-space: nowrap;
}

/* RESPONSIVE */
@media (max-width: 700px) {

    .home-trust-strip-inner {
        gap: 10px 20px;
        padding: 16px 18px;
    }

    .home-trust-strip-inner span {
        white-space: normal;
        font-size: 11px;
        letter-spacing: 1px;
        line-height: 1.4;
    }
}

/* ==================================================
   HOME ABOUT 
================================================== */

.home-about {
    background: var(--ns-light);
    padding: 90px 0;
}

.home-about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 70px;
    align-items: center;
}

.home-about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--ns-shadow);
}

.home-about p {
    color: var(--ns-blue);
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 18px;
}

.home-about-label {
    color: var(--ns-red);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.home-about h2 {
    font-size: 42px;
    line-height: 1.15;
    color: var(--ns-blue);
    margin-bottom: 24px;
}


.home-about-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 36px;
}

.home-about-points span {
    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 60px;
    padding: 18px;

    background: #fff;
    color: var(--ns-blue);

    font-size: 15px;
    font-weight: 700;
    text-align: center;

    border-left: 5px solid var(--ns-red);
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .home-about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .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;
    }
}

@media (max-width: 768px) {

    .home-about-points {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {

    .home-about-points {
        grid-template-columns: 1fr;
    }
}

/* ==================================================
   HOME SERVICES
================================================== */

.home-services {
    background: var(--ns-white);
    padding: 100px 0;
}

.home-services-header {
    max-width: 780px;
    margin: 0 auto 56px;
    text-align: center;
}

.home-services-label {
    color: var(--ns-red);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.home-services-header h2 {
    color: var(--ns-blue);
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.home-services-header p {
    color: #5f668f;
    font-size: 17px;
    line-height: 1.5;
}

.home-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.home-service-card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: var(--ns-shadow);
    background: var(--ns-blue-dark);
    color: var(--ns-white);
    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 {
    width: 100%;
    height: 100%;
    min-height: 360px;
    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.72)
    );
}

.home-service-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px;
    z-index: 2;
}

.home-service-content h3 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.home-service-content p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.88);
    margin-bottom: 16px;
}

.home-service-link {
    color: var(--ns-white);
    font-size: 14px;
    font-weight: 800;
    border-bottom: 2px solid var(--ns-red);
    padding-bottom: 4px;
}

.home-services-button-wrap {
    text-align: center;
    margin-top: 44px;
}

.home-services-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ns-red);
    color: var(--ns-white);
    padding: 15px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 800;
    transition: 0.2s ease;
}

.home-services-button:hover {
    background: var(--ns-red-dark);
    transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 1100px) {

    .home-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {

    .home-services {
        padding: 70px 0;
    }

    .home-services-header h2 {
        font-size: 32px;
    }

    .home-services-grid {
        grid-template-columns: 1fr;
    }


    .home-service-card {
        height: 360px;
        min-height: 360px;
    }

    .home-service-card img {
        height: 100%;
        min-height: 360px;
        object-fit: cover;
    }
}

/* ==================================================
   PROCESS SECTION
================================================== */

.process-section {
    background: var(--ns-white);
    padding: 110px 0;
}

.process-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.process-label {
    color: var(--ns-red);
    display: inline-block;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.process-content h2 {
    font-size: 42px;
    line-height: 1.15;
    color: var(--ns-navy);
    margin: 12px 0 18px;
}

.process-intro {
    font-size: 18px;
    line-height: 1.7;
    color: var(--ns-text);
    max-width: 620px;
    margin-bottom: 38px;
}

.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 {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: var(--ns-red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 40px;
    letter-spacing: .5px;
}

.process-step h3 {
    font-size: 20px;
    color: var(--ns-navy);
    margin: 0 0 6px;
}

.process-step p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--ns-text);
    margin: 0;
}

.process-images {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 220px;   /* aligns with Step 01 */
}

.process-images img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--ns-shadow);
}

/* Responsive */
@media (max-width: 900px) {
    .process-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .process-content h2 {
        font-size: 34px;
    }

    .process-image img {
        height: 480px;
    }
}

@media (max-width: 500px) {
    .process-section {
        padding: 80px 0;
    }

    .process-content h2 {
        font-size: 30px;
    }

    .process-intro {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .process-steps {
        gap: 22px;
    }

    .process-step {
        grid-template-columns: 46px 1fr;
        gap: 14px;
    }

    .process-step span {
        width: 40px;
        height: 40px;
        font-size: 13px;
    }

    .process-step h3 {
        font-size: 18px;
    }

    .process-step p {
        font-size: 15px;
    }

    .process-image img {
        height: 360px;
    }
}

/* ==================================================
   LICENCE GUIDE SECTION
================================================== */

.licence-section {
    background: var(--ns-light);
    padding: 110px 0;
}

.licence-heading {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 55px;
}

.licence-label {
    color: var(--ns-red);
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.licence-heading h2 {
    font-size: 42px;
    line-height: 1.15;
    color: var(--ns-navy);
    margin-bottom: 18px;
}

.licence-heading p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--ns-text);
    margin: 0;
}

.licence-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}

.licence-card {
    background: var(--ns-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--ns-shadow);
    display: flex;
    flex-direction: column;
}

.licence-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.licence-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.licence-content h3 {
    font-size: 22px;
    color: var(--ns-navy);
    margin: 0 0 18px;
}

.licence-list {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
}

.licence-list li {
    font-size: 15px;
    line-height: 1.5;
    color: var(--ns-text);
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
}

.licence-list li.yes::before {
    content: "✓";
    color: var(--ns-red);
    font-weight: 700;
    position: absolute;
    left: 0;
}

.licence-list li.no::before {
    content: "✕";
    color: var(--ns-red);
    font-weight: 700;
    position: absolute;
    left: 0;
}

.licence-card .btn-outline {
    margin-top: auto;
}

.licence-button:hover {
    background: #a51f1f;
    color: var(--ns-white);
}

.licence-note {
    max-width: 850px;
    margin: 60px auto 0;
    text-align: center;
}

.licence-note p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--ns-text);
    margin-bottom: 28px;
}

.licence-note strong {
    color: var(--ns-navy);
}

.licence-button {
    display: inline-block;
    background: var(--ns-red);
    color: var(--ns-white);
    text-decoration: none;
    padding: 15px 34px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: .3s ease;
}

.licence-button:hover {
    background: var(--ns-navy);
    color: var(--ns-white);
}

/* Responsive */
@media (max-width: 1100px) {
    .licence-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .licence-section {
        padding: 80px 0;
    }

    .licence-heading h2 {
        font-size: 32px;
    }

    .licence-heading p {
        font-size: 16px;
    }

    .licence-grid {
        grid-template-columns: 1fr;
    }

    .licence-card img {
        height: 240px;
    }
}

/* ==================================================
   HOME WHY CHOOSE US
================================================== */

.home-why {
    position: relative;
    background:
        linear-gradient(
            rgba(247,247,247,0.10),
            rgba(247,247,247,0.10)
        ),
        url("images/home_background_why_choose_us.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 100px 0;
}

.home-why-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.home-why-label {
    display: inline-block;
    color: var(--ns-red);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.home-why-content h2 {
    color: var(--ns-blue);
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 22px;
}

.home-why-content p {
    color: #23346e;
    font-size: 17px;
    line-height: 1.5;
    margin-bottom: 18px;
}

.home-why-list {
    display: grid;
    gap: 18px;
}

.home-why-item {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 22px;
    align-items: center;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-left: 6px solid var(--ns-red);
    padding: 24px 30px;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.home-why-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    justify-self: center;
}

.home-why-text h3 {
    color: var(--ns-blue);
    font-size: 22px;
    line-height: 1.2;
    margin: 0 0 8px;
}

.home-why-text p {
    color: #4f5d8c;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 900px) {

    .home-why-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .home-why-content h2 {
        font-size: 34px;
    }
}

@media (max-width: 600px) {

    .home-why {
        padding: 70px 0;
    }

    .home-why-content h2 {
        font-size: 30px;
    }
}

/* ==================================================
   HOME GALLERY
================================================== */

.home-gallery {
    background: var(--ns-white);
    padding: 100px 0;
}

.home-gallery-header {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.home-gallery-label {
    display: inline-block;
    color: var(--ns-red);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.home-gallery-header h2 {
    color: var(--ns-blue);
    font-size: 42px;
    margin-bottom: 18px;
}

.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 {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--ns-shadow);
}

.home-gallery-caption {
    text-align: center;
    margin-top: 22px;
}

.home-gallery-caption h3 {
    color: var(--ns-blue);
    font-size: 24px;
    margin-bottom: 4px;
}

.home-gallery-caption p {
    color: #5f668f;
    font-size: 15px;
}

.home-gallery-arrow {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: var(--ns-red);
    color: var(--ns-white);
    font-size: 38px;
    line-height: 1;
    z-index: 5;
    cursor: pointer;
    box-shadow: var(--ns-shadow);
}

.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;
    border: none;
    border-radius: 50%;
    background: rgba(47,57,118,0.25);
}

.home-gallery-dots button.active {
    background: var(--ns-red);
}

.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;
    background: var(--ns-red);
    color: var(--ns-white);
    font-weight: 800;
    border-radius: 6px;
    transition: 0.2s ease;
}

.home-gallery-button a:hover {
    background: var(--ns-red-dark);
    transform: translateY(-2px);
}

/* 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 h2 {
        font-size: 32px;
    }

    .home-gallery-slide img {
        height: 360px;
    }

    .home-gallery-arrow {
        width: 40px;
        height: 40px;
        font-size: 32px;
    }
}
/* ==================================================
   HOME CLIENT FEEDBACK
================================================== */

.home-feedback {
    position: relative;
    background:
        linear-gradient(
            rgba(247,247,247,0.60),
            rgba(247,247,247,0.60)
        ),
        url("images/home_background_feedback.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 100px 0;
}

.home-feedback-header {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.home-feedback-label {
    color: var(--ns-red);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.home-feedback-header h2 {
    color: var(--ns-blue);
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 18px;
}

.home-feedback-header p {
    color: var(--ns-blue);
    font-size: 17px;
	font-weight: 600;
    line-height: 1.6;
}

.home-feedback-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.home-feedback-card {
	background: rgba(255,255,255,.35);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);

	border: 1px solid rgba(255,255,255,.35);
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.home-feedback-quote {
    font-size: 54px;
    line-height: 1;
    color: var(--ns-red);
    margin-bottom: 18px;
}

.home-feedback-card p {
    color: #33416f;
    line-height: 1.6;
    margin-bottom: 22px;
}

.home-feedback-author {
    color: var(--ns-blue);
    font-weight: 800;
    font-size: 15px;
}

.home-feedback-location {
    color: #5f668f;
    font-size: 14px;
    margin-top: 4px;
}

/* RESPONSIVE */
@media (max-width: 1000px) {

    .home-feedback-grid {
        grid-template-columns: 1fr;
    }

    .home-feedback-header h2 {
        font-size: 34px;
    }
}

@media (max-width: 600px) {

    .home-feedback {
        padding: 70px 0;
    }

    .home-feedback-header h2 {
        font-size: 30px;
    }

    .home-feedback-card {
        padding: 28px;
    }
}

/* ==================================================
   HOME AREAS WE SERVICE
================================================== */

.home-areas-section {
    background: var(--ns-white);
    padding: 100px 0;
}

.home-areas-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.home-areas-label {
    color: var(--ns-red);
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.home-areas-content h2 {
    color: var(--ns-blue);
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 22px;
}

.home-areas-content p {
    color: var(--ns-blue);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 28px;
}

.home-areas-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--ns-red);
    color: var(--ns-white);
    padding: 15px 26px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 800;
    transition: .25s ease;
}

.home-areas-button:hover {
    background: var(--ns-red-dark);
    transform: translateY(-2px);
}

.home-areas-image {
    margin-top: 36px;
}

.home-areas-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: var(--ns-shadow);
}

.home-suburb-panel {
    background: var(--ns-light);
    border-left: 5px solid var(--ns-red);
    border-radius: 12px;
    padding: 38px;
    box-shadow: 0 12px 30px rgba(0,0,0,.10);
}

.home-suburb-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px 22px;
}

.home-suburb-list span,
.home-suburb-list a {
    position: relative;
    padding-left: 22px;
    color: var(--ns-blue);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: none;
}

.home-suburb-list span::before,
.home-suburb-list a::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--ns-red);
    font-weight: 900;
}

.home-suburb-list a.featured-suburb {
    color: var(--ns-red);
    font-weight: 700;
}

.home-suburb-list a.featured-suburb:hover {
    color: var(--ns-red-dark);
}

/* Responsive */

@media (max-width: 1000px) {
    .home-areas-grid {
        grid-template-columns: 1fr;
        gap: 46px;
    }

    .home-areas-image img {
        height: 320px;
    }
}

@media (max-width: 700px) {
    .home-areas-section {
        padding: 70px 0;
    }

    .home-areas-content h2 {
        font-size: 34px;
    }

    .home-suburb-panel {
        padding: 28px 22px;
    }

    .home-suburb-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 13px 18px;
    }
}

@media (max-width: 430px) {
    .home-suburb-list {
        grid-template-columns: 1fr;
    }
}

/* ==================================================
   HOME FINAL CTA
================================================== */

.home-cta {
    background:
	        linear-gradient(
            rgba(255,255,255,.35),
            rgba(255,255,255,.35)
        ),
		url("images/cta_background.webp");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
}

.home-cta-content {
    max-width: 820px;
    margin: 0 auto;
	text-align: center;
}

.home-cta-label {
    color: var(--ns-red);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.home-cta h2 {
	color: var(--ns-blue) !important;
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 22px;
}

.home-cta p {
    color: var(--ns-blue);
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto 34px;
    max-width: 760px;
    font-weight: 500;
}

.home-cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    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: 0.2s ease;
}

.home-cta-primary {
    background: var(--ns-red);
    color: var(--ns-white);
}

.home-cta-primary:hover {
    background: var(--ns-red-dark);
    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);
}

/* RESPONSIVE */
@media (max-width: 700px) {

    .home-cta {
        padding: 75px 0;
    }

    .home-cta h2 {
        font-size: 32px;
    }

    .home-cta p {
        font-size: 16px;
    }

    .home-cta-buttons {
        flex-direction: column;
    }

    .home-cta-primary,
    .home-cta-secondary {
        width: 100%;
    }
}