/* =========================================
   HOME GLOBAL
========================================= */

.home-container {
    width: min(1400px, 92%);
    margin: 0 auto;
}

.home-hero,
.services-section,
.before-after-section,
.featured-section,
.process-section,
.network-section,
.property-section,
.testimonial-section,
.home-gallery-section,
.quote-section {
    overflow: hidden;
}


/* =========================================
   COMMON TYPOGRAPHY
========================================= */

.section-eyebrow {

    display: block;

    margin-bottom: 14px;

    color: #f3f1ee;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.5px;

    text-transform: uppercase;
}

.section-heading {

    max-width: 700px;

    margin-bottom: 20px;
}

.section-heading h2 {

    margin: 0 0 5px;

    color: #1d1d1d;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(34px, 4vw, 56px);

    font-weight: 400;

    line-height: 1.08;
    width: 100%;
}

.section-heading p {

 
    margin: 0;

    color: #060606;

    font-size: 20px;

    line-height: 1.8;
}

.section-heading-row {

      display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 100px;
}

 

 
 
 .text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 150px;
    height: 46px;
    padding: 0 24px;

    background: #222;
    color: #fff;

    border: 1px solid #222;
    border-radius: 2px;

    text-decoration: none;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;

    white-space: nowrap;

    transition: all 0.35s ease;
}

.text-link:hover {
    background: #a47c45;
    border-color: #a47c45;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}


/* =========================================
   BUTTONS
========================================= */

.btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 25px;

    text-decoration: none;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.3px;

    text-transform: uppercase;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease,
        border-color .25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {

    background: #000000;

    color: #ffffff;

    border: 1px solid #fbfbfb;
}

.btn-primary:hover {
    background: #1f1e1e;
}

.btn-outline {

    border: 1px solid rgba(255,255,255,.65);

    color: #ffffff;

    background: transparent;
}

.btn-outline:hover {
     background: #1f1e1e;
    color: #f0ecec;
}

.btn-dark {

    background: #222;

    color: #fff;

    border: 1px solid #222;
}

.btn-light {

    background: transparent;

    color: #222;

    border: 1px solid #d5d0c8;
}

.btn-whatsapp {

    background: #25d366;

    color: #fff;

    border: 1px solid #25d366;
}

.btn-outline-dark {

    background: transparent;

    color: #ffffff;

    border: 1px solid #efeded;
}


/* =========================================
   HERO
========================================= */

.home-hero {

    position: relative;

    min-height: 760px;

    display: flex;

    align-items: center;

    color: #ffffff;

    background: #111;
}

.hero-background {

    position: absolute;

    inset: 0;

    z-index: 0;
}

.hero-background img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center;
}

.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.78) 0%,
            rgba(0,0,0,.52) 45%,
            rgba(0,0,0,.12) 100%
        );
}

.home-hero .home-container {

    position: relative;

    z-index: 2;
}

.hero-content {

    max-width: 850px;

    padding: 120px 0;
}

.hero-eyebrow {

    display: inline-block;

    margin-bottom: 22px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 3px;

    color: #e4e3e1;
}

.hero-content h1 {

    max-width: 850px;

    margin: 0;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(48px, 6.2vw, 88px);

    line-height: .98;

    font-weight: 400;

    letter-spacing: -2px;
}

.hero-content h1 span {

    display: block;

    color: #f9f9f9;
}

.hero-content > p {

    max-width: 620px;

    margin: 28px 0 32px;

    color: rgba(255,255,255,.78);

    font-size: 15px;

    line-height: 1.8;
}

.hero-buttons {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;
}

.hero-service-link {

    margin-left: 8px;

    color: #fff;

    text-decoration: none;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.hero-service-link:hover {
    color: #d7b27b;
}

.hero-trust {

    display: flex;

    gap: 45px;

    margin-top: 70px;

    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,.2);
}

.hero-trust div {

    display: flex;

    flex-direction: column;

    gap: 5px;
}

.hero-trust strong {

    color: #fff;

    font-family:
        Georgia,
        serif;

    font-size: 18px;

    font-weight: 400;
}

.hero-trust span {

    color: rgba(255,255,255,.55);

    font-size: 9px;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.hero-scroll {

    position: absolute;

    right: 4%;

    bottom: 35px;

    z-index: 3;

    display: flex;

    align-items: center;

    gap: 12px;

    transform: rotate(90deg);

    transform-origin: right center;
}

.hero-scroll span {

    color: rgba(255,255,255,.55);

    font-size: 8px;

    letter-spacing: 2px;
}

.scroll-line {

    width: 55px;

    height: 1px;

    background: rgba(255,255,255,.5);
}


/* =========================================
   CLIENT STRIP
========================================= */

.client-strip {

    padding: 20px 0;

    background: #f5f3ef;

    border-bottom: 1px solid #e6e1d9;

    overflow: hidden;
}

.client-strip-label {

    margin-bottom: 20px;

    text-align: center;

    color: #000000;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 2px;
    padding: 5px;
}

.client-marquee {
    overflow: hidden;
}

.client-track {

    display: flex;

    width: max-content;

    gap: 65px;

    animation: marquee 30s linear infinite;
}

.client-track span {

    color: #000000;

    font-family:
        Georgia,
        serif;

    font-size: 25px;

    white-space: nowrap;

    letter-spacing: 2px;
}

@keyframes marquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================================
   SERVICES
========================================= */

.services-section {

    padding: 30px 0;

    background: #fff;
}

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

    background: #ffffff;

    border: 1px solid #ddd8d0;
    
    width: 85%;
    margin: 0 auto;
}

.service-card {

    position: relative;

    min-height: 330px;

    padding: 35px;

    background: #fff;

    transition:
        background .35s ease,
        transform .35s ease;
}

.service-card:hover {

    background: #faf8f4;

    transform: translateY(-5px);

    z-index: 2;
}

.service-number {

    position: absolute;

    top: 25px;

    right: 25px;

    color: #c8c2b8;

    font-size: 10px;

    letter-spacing: 1px;
}

.service-icon {

    margin-bottom: 35px;

    color: #000000;

    font-size: 28px;
}

.service-icon i {
    font-size: 40px;
    line-height: 1;
    font-weight: 400;
    display: block;
    transition: transform 0.35s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
}

.service-card h3 {

    margin: 0 0 13px;

    font-family:
        Georgia,
        serif;

    font-size: 23px;

    font-weight: 400;
}

.service-card p {

    margin: 0;

    color: #777;

    font-size: 15px;

    line-height: 1.8;
}
 
.service-links {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

/* Main Button */
.service-links a:first-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 44px;
    padding: 0 20px;

    background: #222;
    border: 1px solid #222;
    border-radius: 3px;

    color: #fff;
    text-decoration: none;

    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;

    transition: all 0.3s ease;
}

.service-links a:first-child:hover {
    background: #3b3b3b;
    border-color: #a47c45;
    transform: translateY(-2px);
}


/* WhatsApp Icon Button */
.whatsapp-btn {
    width: 44px;
    height: 44px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #e0dede;
    border-radius: 3px;

    background: #25d366;
    color: #f0eded;

    text-decoration: none;

    transition: all 0.3s ease;
}

.whatsapp-btn i {
    font-size: 25px;
    line-height: 1;
}

.whatsapp-btn:hover {
    background: #0d6705;
    border-color: #efece9;
    color: #fff;

    transform: translateY(-2px);
}

.service-card-featured {
    background: #f7f3ed;
}


/* =========================================
   BEFORE / AFTER
========================================= */

.before-after-section {

    padding: 20px 0;

    background: #f5f3ef;
}

.before-after-grid {

    display: grid;
    border-radius: 12px;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;

}

.transformation-card {

    background: #fff;

    border: 1px solid #e3dfd7;

     border-radius: 12px;

}

.transformation-images {

    display: grid;

    grid-template-columns: 1fr 1fr;

    aspect-ratio: 1.6;
    gap: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;

}

.transformation-images > div {

    position: relative;

    overflow: hidden;
}

.transformation-images img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.transformation-card:hover img {
    transform: scale(1.05);
}

.transformation-images span {

    position: absolute;

    left: 12px;
    bottom: 12px;

    padding: 5px 8px;

    background: rgba(0,0,0,.65);

    color: #fff;

    font-size: 7px;

    letter-spacing: 1px;
}

.transformation-content {
    padding: 10px;
}

.transformation-content > span {

    color: #a47c45;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.transformation-content h3 {

 
    font-family:
        Georgia,
        serif;

    font-size: 20px;

    font-weight: 400;
     padding: 15px;

}

.transformation-content p {

     padding: 15px;

    color: #000000;

    font-size: 18px;

 }


/* =========================================
   FEATURED PRODUCTS
========================================= */

.featured-section {

    padding: 30px 0;

    background: #fff;
}

.featured-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}

.product-card {

    border: 1px solid #e2ded7;

    background: #fff;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.product-card:hover {

    transform: translateY(-7px);

    box-shadow:
        0 20px 50px rgba(0,0,0,.08);
}

.product-image {

    position: relative;

    aspect-ratio: 1 / 1.05;

    overflow: hidden;

    background: #f5f3ef;
}

.product-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-badge {

    position: absolute;

    top: 15px;
    left: 15px;

    z-index: 2;

    padding: 6px 9px;

    background: #222;

    color: #fff;

    font-size: 7px;

    letter-spacing: 1px;
}

.product-badge.sale {
    background: #a47c45;
}

.product-content {
    padding: 7px;
}

.product-content > span {

    color: #a47c45;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.3px;
}

.product-content h3 {

    margin: 5px 0;

    font-family:
        Georgia,
        serif;

    font-size: 21px;

    font-weight: 400;

    line-height: 1.3;
}

.product-content p {

    margin: 0 0 5px;

    color: #000000;

    font-size: 16px;

    line-height: 1.7;
 font-family:'Times New Roman', Times, serif;}

.product-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding-top: 17px;

    border-top: 1px solid #eee;
}

.product-bottom strong {

    color: #333;

    font-size: 16px;

    font-weight: 600;
}

.product-bottom a {

    color: #a47c45;

    text-decoration: none;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 1px;
}


/* =========================================
   PROCESS
========================================= */

.process-section {

    padding: 40px 0;

    background: #171717;

    color: #fff;
}

.process-section .section-heading h2 {
    color: #fff;
    
}

.process-section .section-heading p {
    color: #ffffff;
}

.process-grid {

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.process-card {

    min-height: 280px;

    padding: 30px;

    border-right: 1px solid #333;

    transition: background .3s ease;
}

.process-card:last-child {
    border-right: none;
}

.process-card:hover {
    background: #202020;
}

 .process-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 22px;
    font-size: 26px;
    background: #110909;
}

.process-icon i {
    line-height: 1;
}



.process-card h3 {

    margin: 0 0 12px;

    font-family:
        Georgia,
        serif;

    font-size: 19px;

    font-weight: 400;
}

.process-card p {

    margin: 0;

    color: #888;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================
   PAN INDIA NETWORK
========================================= */

.network-section {

    padding: 40px 0;

    background: #f7f5f1;
}

.network-layout {

    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 90px;

    align-items: center;
}

.network-content h2 {

    max-width: 500px;

    margin: 0 0 20px;

    font-family:
        Georgia,
        serif;

    font-size: clamp(38px, 4vw, 58px);

    font-weight: 400;

    line-height: 1.05;
}

.network-content p {

    max-width: 500px;

    margin: 0 0 8px;

    color: #000000;

    font-size: 16px;

    line-height: 1.8;
}

.cities-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 1px;

    background: #d8d3ca;

    border: 1px solid #d8d3ca;
}

.city-card {

    min-height: 150px;

    padding: 25px;

    background: #fff;

    transition:
        background .3s ease,
        color .3s ease;
}

.city-card:hover {
    background: #010101;
    color: #fff;
}

.city-card span {

    display: block;

    margin-bottom: 35px;

    color: #a47c45;

    font-size: 14px;
}

.city-card strong {

    display: block;

    margin-bottom: 5px;

    font-family:
        Georgia,
        serif;

    font-size: 18px;

    font-weight: 400;
}

.city-card small {

    color: #999;

    font-size: 12px;

    letter-spacing: 1px;

    text-transform: uppercase;
}

.network-subtext {
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.7;
    
}

.city-card {
    position: relative;
    padding: 24px;
}

.city-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 50%;

    background: #0f0e0e;
    color: #ffffff;

    font-size: 21px;
}

.city-card strong {
    display: block;
    font-size: 20px;
    margin-bottom: 7px;
}

.city-card small {
    display: block;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 12px;
    opacity: 0.7;
}

.city-card > span {
    display: block;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 600;
    opacity: 0.85;
}

/* =========================================
   PROPERTY
========================================= */

.property-section {

    padding: 40px 0;

    background: #fff;
}

.property-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 15px;
}

.property-card {

    position: relative;

    display: block;

    aspect-ratio: 1.25;

    overflow: hidden;

    text-decoration: none;

    background: #111;
}

.property-card img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: .8;

    transition:
        transform .6s ease,
        opacity .4s ease;
}

.property-card:hover img {

    transform: scale(1.06);

    opacity: .55;
}

.property-card > div {

    position: absolute;

    left: 25px;
    right: 25px;
    bottom: 22px;
}

.property-card span {

    color: #d7b27b;

    font-size: 8px;

    letter-spacing: 1px;
}

.property-card h3 {

    margin: 5px 0 0;

    color: #fff;

    font-family:
        Georgia,
        serif;

    font-size: 23px;

    font-weight: 400;
}

.property-actions {

    display: flex;

    justify-content: center;

    gap: 10px;

    margin-top: 35px;
}


/* =========================================
   TESTIMONIALS
========================================= */

.testimonial-section {

    padding: 40px 0;

    background: #f5f3ef;
}

.testimonial-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
 }

.testimonial-card {

    position: relative;

    padding: 20px;

    background: #fff;

    border: 1px solid #e4dfd6;
    border-radius: 15px;
}

.quote-mark {

    color: #a47c45;

    font-family:
        Georgia,
        serif;

    font-size: 55px;

    line-height: .7;
}

.testimonial-card > p {

    min-height: 60px;

    margin: 5px 0;

    color: #555;

    font-family:
        Georgia,
        serif;

    font-size: 18px;

    line-height: 1.6;
}

.client-info {

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 12px;

    padding-top: 20px;

    border-top: 1px solid #eee;
}

.client-avatar {

    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #222;

    color: #fff;

    font-size: 12px;
}

.client-info strong {

    display: block;

    font-size: 18px;
}

.client-info span {

    display: block;

    margin-top: 3px;

    color: #999;

    font-size: 15px;
}


/* =========================================
   GALLERY
========================================= */

.home-gallery-section {

    padding: 40px 0;

    background: #fff;
}

.home-gallery-grid {

    display: grid;

    grid-template-columns:
        1.4fr 1fr 1fr;

    grid-template-rows:
        280px 280px;

    gap: 12px;
}

.gallery-item {

    position: relative;

    overflow: hidden;

    background: #111;
}

.gallery-large {

    grid-row: span 2;
}

.gallery-item img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform .6s ease,
        opacity .4s ease;
}

.gallery-item:hover img {

    transform: scale(1.05);

    opacity: .65;
}

.gallery-overlay {

    position: absolute;

    left: 22px;
    right: 22px;
    bottom: 20px;

    color: #fff;
}

.gallery-overlay span {

    display: block;

    margin-bottom: 5px;

    color: #d7b27b;

    font-size: 7px;

    letter-spacing: 1.5px;
}

.gallery-overlay strong {

    font-family:
        Georgia,
        serif;

    font-size: 19px;

    font-weight: 400;
}


/* =========================================
   FINAL CTA
========================================= */

.final-cta {

    padding: 10px 0;

    background: #171717;
}

.cta-box {

    padding: 20px 30px;

    text-align: center;

    border: 1px solid #333;
    border-radius: 15px;
}

.cta-box h2 {

    max-width: 800px;

    margin: 0 auto 18px;

    color: #fff;

    font-family:
        Georgia,
        serif;

    font-size: clamp(40px, 5vw, 70px);

    font-weight: 400;

    line-height: 1.05;
}

.cta-box > p {

    max-width: 550px;

    margin: 0 auto 30px;

    color: #999;

    font-size: 13px;

    line-height: 1.8;
}

.cta-buttons {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;
}

.cta-trust {

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 30px;

    margin-top: 35px;

    color: #ffffff;

    font-size: 20px;

    letter-spacing: .5px;
}


/* =========================================
   QUOTE
========================================= */

.quote-section {

    padding: 60px 0;

    background: #f5f3ef;
}

.quote-layout {

    display: grid;

    grid-template-columns: .8fr 1.2fr;

    gap: 90px;

    align-items: start;
}

.quote-content h2 {

    margin: 0 0 18px;

    font-family:
        Georgia,
        serif;

    font-size: clamp(40px, 4vw, 58px);

    font-weight: 400;
}

.quote-content > p {

    max-width: 450px;

    margin: 0;

    color: #777;

    font-size: 25px;

    line-height: 1.8;
}

.quote-points {

    display: flex;

    flex-direction: column;

    gap: 13px;

    margin-top: 30px;
}

.quote-points span {

    color: #555;

    font-size: 18px;
}

.quote-form {

    padding: 40px;

    background: #fff;

    border: 1px solid #e2ddd5;

    box-shadow:
        0 20px 60px rgba(0,0,0,.05);
        border-radius: 15px;
}

.form-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.form-group {

    display: flex;

    flex-direction: column;

    gap: 7px;

    margin-bottom: 17px;
}

.form-group label {

    color: #555;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: .8px;

    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {

    width: 100%;

    box-sizing: border-box;

    padding: 13px;

    border: 1px solid #ddd8d0;

    outline: none;

    background: #faf9f6;

    color: #222;

    font-family: inherit;

    font-size: 18px;

    transition: border-color .2s ease;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #a47c45;
}

.form-submit {

    width: 100%;

    min-height: 48px;

    border: none;

    background: #222;

    color: #fff;

    cursor: pointer;

    font-family: inherit;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

    text-transform: uppercase;

    transition: background .25s ease;
}

.form-submit:hover {
    background: #a47c45;
}

.form-note {

    margin: 12px 0 0;

    text-align: center;

    font-size: 10px;
}


/* =========================================
   SCROLL REVEAL
========================================= */

.reveal {

    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity .7s ease,
        transform .7s ease;
}

.reveal.visible {

    opacity: 1;

    transform: translateY(0);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .before-after-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .process-card:nth-child(3) {
        border-right: none;
    }

    .network-layout {
        gap: 50px;
    }

}


@media (max-width: 800px) {

    .home-hero {
        min-height: 680px;
    }

    .hero-content {
        padding: 100px 0;
    }

    .hero-trust {
        gap: 25px;
    }

    .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .network-layout,
    .quote-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .property-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .home-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 280px 280px 280px;
    }

    .gallery-large {
        grid-column: span 2;
        grid-row: span 1;
    }

}


@media (max-width: 600px) {

    .home-container {
        width: min(92%, 1400px);
    }

    .home-hero {
        min-height: 650px;
    }

    .hero-content {
        padding: 90px 0 70px;
    }

    .hero-content h1 {
        font-size: 45px;
        letter-spacing: -1px;
    }

    .hero-content > p {
        font-size: 13px;
    }

    .hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-service-link {
        margin: 8px 0 0;
    }

    .hero-trust {
        gap: 15px;
        justify-content: space-between;
        margin-top: 45px;
    }

    .hero-trust strong {
        font-size: 14px;
    }

    .hero-trust span {
        font-size: 7px;
    }

    .hero-scroll {
        display: none;
    }

    .services-section,
    .before-after-section,
    .featured-section,
    .process-section,
    .network-section,
    .property-section,
    .testimonial-section,
    .home-gallery-section,
    .quote-section {
        padding: 80px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 36px;
    }

    .services-grid,
    .before-after-grid,
    .featured-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: auto;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-card,
    .process-card:nth-child(3) {
        border-right: none;
        border-bottom: 1px solid #333;
    }

    .process-card:last-child {
        border-bottom: none;
    }

    .process-card > span {
        margin-bottom: 35px;
    }

    .property-grid {
        grid-template-columns: 1fr;
    }

    .cities-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-gallery-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 260px);
    }

    .gallery-large {
        grid-column: auto;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .quote-form {
        padding: 25px;
    }

    .cta-box {
        padding: 65px 20px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .cta-trust {
        flex-direction: column;
        gap: 10px;
    }

}


/* =========================================
   REDUCED MOTION
========================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
    }

}