/*==============================================================
START : SERVICE AREA GLOBAL
==============================================================*/

.service-area-page {
    background: #fff;
    color: #071c38;
}

.service-area-page *,
.service-area-page *::before,
.service-area-page *::after {
    box-sizing: border-box;
}

.area-section-tag {
    display: inline-block;
    margin-bottom: 15px;
    color: #ff7b00;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.area-section-heading {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.area-section-heading h2 {
    margin: 0 0 20px;
    color: #071c38;
    font-size: 44px;
    line-height: 1.2;
}

.area-section-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: #697586;
    font-size: 16px;
    line-height: 1.8;
}

.area-heading-light h2 {
    color: #fff;
}

.area-heading-light p {
    color: #aebdce;
}

/*==============================================================
END : SERVICE AREA GLOBAL
==============================================================*/


/*==============================================================
START : SERVICE AREA HERO
==============================================================*/

.area-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #04152b;
}

/* Background Image + Overlay */
.area-hero-bg,
.area-hero-overlay {
    position: absolute;
    inset: 0;
}

.area-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Center-friendly dark overlay */
.area-hero-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(3, 17, 35, .70) 0%,
            rgba(3, 17, 35, .78) 50%,
            rgba(3, 17, 35, .76) 100%
        );
    z-index: 1;
}

/* Container */
.area-hero .container {
    position: relative;
    z-index: 3;
    width: 100%;
}

/* Main Hero Content */
.area-hero-content {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 150px 20px 100px;
    color: #fff;
    text-align: center;
}


/*==============================================================
Breadcrumb
==============================================================*/

.area-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
    color: #b7c4d3;
    font-size: 13px;
}

.area-breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: color .3s ease;
}

.area-breadcrumb a:hover {
    color: #ff7b00;
}


/*==============================================================
Eyebrow
==============================================================*/

.area-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 9px 15px;
    margin-bottom: 22px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 40px;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.area-eyebrow i {
    color: #ff8a1f;
}


/*==============================================================
Hero Heading
==============================================================*/

.area-hero h1 {
    max-width: 950px;
    margin: 0 auto 25px;
    color: #fff;
    font-size: 64px;
    line-height: 1.08;
    letter-spacing: -1.5px;
    text-align: center;
}

.area-hero h1 span {
    color: #ff7b00;
}


/*==============================================================
Hero Description
==============================================================*/

.area-hero-content > p {
    max-width: 800px;
    margin: 0 auto 35px;
    color: #d0d9e4;
    font-size: 18px;
    line-height: 1.8;
    text-align: center;
}


/*==============================================================
Hero Buttons
==============================================================*/

.area-hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 35px;
}

.area-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 25px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: .3s ease;
}

.area-btn-primary {
    background: #ff7b00;
    color: #fff;
}

.area-btn-primary:hover {
    background: #ff921e;
    transform: translateY(-3px);
}

.area-btn-outline {
    border: 1px solid rgba(255, 255, 255, .32);
    background: rgba(255, 255, 255, .06);
    color: #fff;
}

.area-btn-outline:hover {
    background: #fff;
    color: #071c38;
}

.area-btn-dark {
    background: #071c38;
    color: #fff;
}

.area-btn-dark:hover {
    background: #0c315d;
}


/*==============================================================
Hero Bottom Points
==============================================================*/

.area-hero-points {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.area-hero-points div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #c9d3df;
    font-size: 13px;
}

.area-hero-points i {
    color: #ff7b00;
}


/*==============================================================
TABLET
==============================================================*/

@media (max-width: 991px) {

    .area-hero {
        min-height: 650px;
    }

    .area-hero-content {
        max-width: 850px;
        padding: 130px 20px 80px;
    }

    .area-hero h1 {
        font-size: 50px;
    }

    .area-hero-content > p {
        max-width: 700px;
        font-size: 17px;
    }
}


/*==============================================================
MOBILE
==============================================================*/

@media (max-width: 767px) {

    .area-hero {
        min-height: 620px;
    }

    .area-hero-content {
        width: 100%;
        padding: 110px 15px 65px;
        text-align: center;
    }

    .area-breadcrumb {
        justify-content: center;
        margin-bottom: 20px;
        font-size: 12px;
    }

    .area-eyebrow {
        max-width: 100%;
        margin-bottom: 18px;
        font-size: 11px;
    }

    .area-hero h1 {
        max-width: 100%;
        margin: 0 auto 20px;
        font-size: 38px;
        line-height: 1.15;
        letter-spacing: -0.8px;
    }

    .area-hero-content > p {
        max-width: 100%;
        margin: 0 auto 28px;
        font-size: 15px;
        line-height: 1.7;
    }

    .area-hero-actions {
        justify-content: center;
        gap: 10px;
        margin-bottom: 28px;
    }

    .area-hero-points {
        justify-content: center;
        gap: 12px 18px;
    }

    .area-hero-points div {
        font-size: 12px;
    }
}


/*==============================================================
SMALL MOBILE
==============================================================*/

@media (max-width: 480px) {

    .area-hero {
        min-height: 600px;
    }

    .area-hero-content {
        padding: 100px 10px 55px;
    }

    .area-hero h1 {
        font-size: 32px;
    }

    .area-hero-content > p {
        font-size: 14px;
    }

    .area-hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .area-hero-actions .area-btn {
        width: 100%;
        max-width: 320px;
    }

    .area-hero-points {
        gap: 10px 15px;
    }
}

/*==============================================================
END : SERVICE AREA HERO
==============================================================*/


/*==============================================================
START : TRUST STRIP
==============================================================*/

.area-trust-strip {
    position: relative;
    z-index: 5;
    background: #fff;
    border-bottom: 1px solid #edf0f3;
}

.area-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.area-trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    min-height: 120px;
    padding: 25px;
    border-right: 1px solid #edf0f3;
}

.area-trust-item:last-child {
    border-right: 0;
}

.area-trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 12px;
    background: #fff3e6;
    color: #ff7b00;
    font-size: 19px;
}

.area-trust-item strong,
.area-trust-item span {
    display: block;
}

.area-trust-item strong {
    margin-bottom: 3px;
    color: #071c38;
    font-size: 16px;
}

.area-trust-item div > span {
    color: #7b8795;
    font-size: 12px;
}

/*==============================================================
END : TRUST STRIP
==============================================================*/


/*==============================================================
START : INTRO
==============================================================*/

.area-intro-section {
    padding: 120px 0;
    background: #fff;
}

.area-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 75px;
    align-items: center;
}

.area-intro-image {
    position: relative;
}

.area-intro-image img {
    display: block;
    width: 100%;
    min-height: 570px;
    object-fit: cover;
    border-radius: 22px;
}

.area-image-badge {
    position: absolute;
    left: 30px;
    bottom: 30px;
    min-width: 270px;
    padding: 20px 24px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,.15);
}

.area-image-badge strong,
.area-image-badge span {
    display: block;
}

.area-image-badge strong {
    margin-bottom: 4px;
    color: #071c38;
    font-size: 21px;
}

.area-image-badge span {
    color: #7a8694;
    font-size: 11px;
}

.area-intro-content h2 {
    margin: 0 0 25px;
    color: #071c38;
    font-size: 43px;
    line-height: 1.22;
}

.area-intro-content > p {
    margin: 0 0 18px;
    color: #697586;
    font-size: 15px;
    line-height: 1.85;
}

.area-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.area-feature-list div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #23364c;
    font-size: 14px;
    font-weight: 600;
}

.area-feature-list i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #fff3e6;
    color: #ff7b00;
    font-size: 10px;
}

/*==============================================================
END : INTRO
==============================================================*/


/*==============================================================
START : SERVICES
==============================================================*/

.area-services-section {
    padding: 110px 0;
    background: #f7f9fb;
}

.area-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.area-service-card {
    position: relative;
    min-height: 315px;
    padding: 35px 30px;
    overflow: hidden;
    border: 1px solid #e8edf2;
    border-radius: 16px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition: .4s ease;
}

.area-service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,123,0,.35);
    box-shadow: 0 25px 50px rgba(7,28,56,.09);
}

.area-service-number {
    position: absolute;
    top: 22px;
    right: 25px;
    color: #e6ebf0;
    font-size: 42px;
    font-weight: 800;
    transition: .3s;
}

.area-service-card:hover .area-service-number {
    color: #fff0e2;
}

.area-service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: 28px;
    border-radius: 14px;
    background: #fff3e6;
    color: #ff7b00;
    font-size: 22px;
    transition: .3s;
}

.area-service-card:hover .area-service-icon {
    background: #ff7b00;
    color: #fff;
}

.area-service-card h3 {
    margin: 0 0 14px;
    color: #071c38;
    font-size: 20px;
}

.area-service-card p {
    margin: 0 0 25px;
    color: #718092;
    font-size: 14px;
    line-height: 1.7;
}

.area-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff7b00;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.area-service-link i {
    transition: .3s;
}

.area-service-card:hover .area-service-link i {
    transform: translateX(5px);
}

/*==============================================================
END : SERVICES
==============================================================*/


/*==============================================================
START : CITIES
==============================================================*/

.area-cities-section {
    position: relative;
    padding: 115px 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, #04152b 0%, #071c38 55%, #0b2b52 100%);
}

.area-cities-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 50px 50px;
}

.area-cities-section .container {
    position: relative;
    z-index: 2;
}

.area-city-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.area-city-card {
    padding: 30px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 16px;
    background: rgba(255,255,255,.045);
    transition: .35s ease;
}

.area-city-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255,123,0,.35);
    background: rgba(255,255,255,.075);
}

.area-city-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 23px;
}

.area-city-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 11px;
    background: rgba(255,123,0,.13);
    color: #ff8b21;
}

.area-city-state {
    color: #8091a6;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.area-city-card h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 23px;
}

.area-city-card p {
    min-height: 70px;
    margin: 0 0 22px;
    color: #aebdce;
    font-size: 13px;
    line-height: 1.7;
}

.area-city-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ff8b21;
    font-size: 11px;
    font-weight: 700;
}

.area-city-card:hover .area-city-link i {
    transform: translateX(5px);
}

.area-city-link i {
    transition: .3s;
}

.area-cities-note {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding: 25px 30px;
    border-radius: 15px;
    background: #fff;
}

.area-cities-note > i {
    color: #ff7b00;
    font-size: 28px;
}

.area-cities-note p {
    flex: 1;
    margin: 0;
    color: #667386;
    font-size: 13px;
    line-height: 1.6;
}

.area-cities-note p strong {
    color: #071c38;
}

.area-cities-note a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    color: #071c38;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

/*==============================================================
END : CITIES
==============================================================*/


/*==============================================================
START : APPLICATIONS
==============================================================*/

.area-applications-section {
    padding: 110px 0;
    background: #fff;
}

.area-applications-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid #e8edf2;
    border-left: 1px solid #e8edf2;
}

.area-application-card {
    padding: 35px 28px;
    border-right: 1px solid #e8edf2;
    border-bottom: 1px solid #e8edf2;
    transition: .3s;
}

.area-application-card:hover {
    background: #f9fafb;
}

.area-application-card > i {
    margin-bottom: 22px;
    color: #ff7b00;
    font-size: 27px;
}

.area-application-card h3 {
    margin: 0 0 10px;
    color: #071c38;
    font-size: 17px;
}

.area-application-card p {
    margin: 0;
    color: #748194;
    font-size: 13px;
    line-height: 1.65;
}

/*==============================================================
END : APPLICATIONS
==============================================================*/


/*==============================================================
START : CLIMATE
==============================================================*/

.area-climate-section {
    padding: 110px 0;
    background: #f7f9fb;
}

.area-climate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.area-climate-content h2 {
    margin: 0 0 24px;
    color: #071c38;
    font-size: 42px;
    line-height: 1.2;
}

.area-climate-content > p {
    margin: 0 0 17px;
    color: #697586;
    font-size: 15px;
    line-height: 1.8;
}

.area-climate-points {
    display: grid;
    gap: 15px;
    margin-top: 30px;
}

.area-climate-points > div {
    display: flex;
    gap: 15px;
    padding: 18px;
    border-radius: 12px;
    background: #fff;
}

.area-climate-points > div > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    flex-shrink: 0;
    border-radius: 10px;
    background: #fff3e6;
    color: #ff7b00;
}

.area-climate-points h3 {
    margin: 0 0 5px;
    color: #071c38;
    font-size: 15px;
}

.area-climate-points p {
    margin: 0;
    color: #788596;
    font-size: 12px;
    line-height: 1.6;
}

.area-climate-image img {
    display: block;
    width: 100%;
    min-height: 600px;
    object-fit: cover;
    border-radius: 20px;
}

/*==============================================================
END : CLIMATE
==============================================================*/


/*==============================================================
START : MATERIALS
==============================================================*/

.area-material-section {
    padding: 110px 0;
    background: #fff;
}

.area-material-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.area-material-card {
    padding: 35px 28px;
    border: 1px solid #e8edf2;
    border-radius: 15px;
    transition: .35s;
}

.area-material-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(7,28,56,.07);
}

.area-material-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    margin-bottom: 25px;
    border-radius: 13px;
    background: #071c38;
    color: #fff;
    font-size: 20px;
}

.area-material-card h3 {
    margin: 0 0 13px;
    color: #071c38;
    font-size: 18px;
}

.area-material-card p {
    margin: 0;
    color: #748194;
    font-size: 13px;
    line-height: 1.7;
}

/*==============================================================
END : MATERIALS
==============================================================*/


/*==============================================================
START : PROCESS
==============================================================*/

.area-process-section {
    padding: 115px 0;
    background: #071c38;
}

.area-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.area-process-card {
    position: relative;
    padding: 35px 25px;
    border-right: 1px solid rgba(255,255,255,.09);
}

.area-process-card:last-child {
    border-right: 0;
}

.area-process-number {
    position: absolute;
    top: 0;
    right: 20px;
    color: rgba(255,255,255,.06);
    font-size: 50px;
    font-weight: 800;
}

.area-process-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    margin-bottom: 25px;
    border-radius: 50%;
    background: #ff7b00;
    color: #fff;
}

.area-process-card h3 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 17px;
}

.area-process-card p {
    margin: 0;
    color: #9eafc2;
    font-size: 12px;
    line-height: 1.7;
}

/*==============================================================
END : PROCESS
==============================================================*/


/*==============================================================
START : WHY CHOOSE
==============================================================*/

.area-why-section {
    padding: 120px 0;
    background: #fff;
}

.area-why-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 90px;
    align-items: start;
}

.area-why-heading {
    position: sticky;
    top: 120px;
}

.area-why-heading h2 {
    margin: 0 0 22px;
    color: #071c38;
    font-size: 42px;
    line-height: 1.2;
}

.area-why-heading p {
    margin: 0 0 30px;
    color: #6f7d8e;
    font-size: 15px;
    line-height: 1.8;
}

.area-dark-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 15px 23px;
    border-radius: 8px;
    background: #071c38;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

.area-dark-btn:hover {
    background: #ff7b00;
}

.area-why-list {
    border-top: 1px solid #e6ebf0;
}

.area-why-item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid #e6ebf0;
}

.area-why-item > span {
    color: #ff7b00;
    font-size: 12px;
    font-weight: 700;
}

.area-why-item h3 {
    margin: 0 0 8px;
    color: #071c38;
    font-size: 18px;
}

.area-why-item p {
    margin: 0;
    color: #758294;
    font-size: 13px;
    line-height: 1.65;
}

/*==============================================================
END : WHY CHOOSE
==============================================================*/


/*==============================================================
START : JAIPUR BASE
==============================================================*/

.area-jaipur-section {
    padding: 0 0 110px;
    background: #fff;
}

.area-jaipur-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 55px;
    border-radius: 22px;
    background: #f7f9fb;
}

.area-jaipur-content {
    max-width: 760px;
}

.area-jaipur-content h2 {
    margin: 0 0 18px;
    color: #071c38;
    font-size: 34px;
}

.area-jaipur-content > p {
    margin: 0 0 22px;
    color: #6d7a8b;
    font-size: 14px;
    line-height: 1.75;
}

.area-jaipur-address {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #34475d;
    font-size: 13px;
    line-height: 1.6;
}

.area-jaipur-address i {
    margin-top: 4px;
    color: #ff7b00;
}

.area-jaipur-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 200px;
}

/*==============================================================
END : JAIPUR BASE
==============================================================*/


/*==============================================================
START : FAQ
==============================================================*/

.area-faq-section {
    padding: 115px 0;
    background: #f7f9fb;
}

.area-faq-grid {
    display: grid;
    grid-template-columns: .75fr 1.25fr;
    gap: 90px;
}

.area-faq-heading h2 {
    margin: 0 0 20px;
    color: #071c38;
    font-size: 40px;
    line-height: 1.2;
}

.area-faq-heading p {
    color: #718092;
    font-size: 14px;
    line-height: 1.75;
}

.area-faq-item {
    border-bottom: 1px solid #dfe5eb;
}

.area-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 23px 0;
    border: 0;
    background: transparent;
    color: #071c38;
    text-align: left;
    cursor: pointer;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
}

.area-faq-question i {
    color: #ff7b00;
    transition: .3s;
}

.area-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.area-faq-answer p {
    margin: 0;
    padding: 0 35px 23px 0;
    color: #718092;
    font-size: 13px;
    line-height: 1.75;
}

.area-faq-item.active .area-faq-question i {
    transform: rotate(45deg);
}

/*==============================================================
END : FAQ
==============================================================*/


/*==============================================================
START : FINAL CTA
==============================================================*/

.area-final-cta {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: #04152b;
}

.area-final-glow {
    position: absolute;
    top: -250px;
    left: 50%;
    width: 650px;
    height: 650px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255,123,0,.18),
        transparent 68%
    );
}

.area-final-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.area-final-content > span {
    display: inline-block;
    margin-bottom: 18px;
    color: #ff8b21;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.area-final-content h2 {
    margin: 0 0 22px;
    color: #fff;
    font-size: 48px;
    line-height: 1.2;
}

.area-final-content p {
    max-width: 680px;
    margin: 0 auto 35px;
    color: #aebdce;
    font-size: 15px;
    line-height: 1.8;
}

.area-final-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

/*==============================================================
END : FINAL CTA
==============================================================*/


/*==============================================================
START : REVEAL ANIMATION
==============================================================*/

.reveal {
    opacity: 1;
    transform: translateY(0);
}

/*==============================================================
END : REVEAL ANIMATION
==============================================================*/


/*==============================================================
START : TABLET RESPONSIVE
==============================================================*/

@media (max-width: 1100px) {

    .area-hero h1 {
        font-size: 54px;
    }

    .area-intro-grid,
    .area-climate-grid {
        gap: 45px;
    }

    .area-services-grid,
    .area-city-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .area-applications-grid,
    .area-material-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .area-process-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .area-process-card {
        border-bottom: 1px solid rgba(255,255,255,.09);
    }

    .area-why-grid,
    .area-faq-grid {
        gap: 55px;
    }

}

/*==============================================================
END : TABLET RESPONSIVE
==============================================================*/


/*==============================================================
START : MOBILE RESPONSIVE
==============================================================*/

@media (max-width: 768px) {

    .area-section-heading {
        margin-bottom: 40px;
    }

    .area-section-heading h2 {
        font-size: 31px;
    }


    /* Hero */

    .area-hero {
        min-height: 680px;
    }

    .area-hero-overlay {
        background: rgba(3,17,35,.78);
    }

    .area-hero-content {
        padding: 130px 0 75px;
        text-align: center;
    }

    .area-breadcrumb,
    .area-hero-actions,
    .area-hero-points {
        justify-content: center;
    }

    .area-hero h1 {
        font-size: 38px;
        letter-spacing: -.5px;
    }

    .area-hero-content > p {
        font-size: 15px;
    }


    /* Trust */

    .area-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .area-trust-item {
        justify-content: flex-start;
        min-height: 105px;
        border-bottom: 1px solid #edf0f3;
    }


    /* Intro */

    .area-intro-section,
    .area-services-section,
    .area-cities-section,
    .area-applications-section,
    .area-climate-section,
    .area-material-section,
    .area-process-section,
    .area-why-section,
    .area-faq-section {
        padding: 75px 0;
    }

    .area-intro-grid,
    .area-climate-grid,
    .area-why-grid,
    .area-faq-grid {
        grid-template-columns: 1fr;
    }

    .area-intro-image img,
    .area-climate-image img {
        min-height: 400px;
    }

    .area-intro-content h2,
    .area-climate-content h2,
    .area-why-heading h2,
    .area-faq-heading h2 {
        font-size: 31px;
    }

    .area-feature-list {
        grid-template-columns: 1fr;
    }


    /* Grids */

    .area-services-grid,
    .area-city-grid {
        grid-template-columns: 1fr;
    }

    .area-applications-grid,
    .area-material-grid {
        grid-template-columns: 1fr;
    }

    .area-process-grid {
        grid-template-columns: 1fr;
    }

    .area-process-card {
        border-right: 0;
    }


    /* Cities note */

    .area-cities-note {
        align-items: flex-start;
        flex-direction: column;
    }


    /* Why */

    .area-why-heading {
        position: static;
    }


    /* Jaipur */

    .area-jaipur-section {
        padding-bottom: 75px;
    }

    .area-jaipur-box {
        align-items: flex-start;
        flex-direction: column;
        padding: 35px 25px;
    }

    .area-jaipur-actions {
        width: 100%;
    }


    /* CTA */

    .area-final-cta {
        padding: 80px 0;
    }

    .area-final-content h2 {
        font-size: 34px;
    }

}

/*==============================================================
END : MOBILE RESPONSIVE
==============================================================*/


/*==============================================================
START : SMALL MOBILE
==============================================================*/

@media (max-width: 480px) {

    .area-hero h1 {
        font-size: 32px;
    }

    .area-hero-actions {
        flex-direction: column;
    }

    .area-hero-actions .area-btn {
        width: 100%;
    }

    .area-hero-points {
        align-items: center;
        flex-direction: column;
        gap: 10px;
    }

    .area-trust-grid {
        grid-template-columns: 1fr;
    }

    .area-trust-item {
        border-right: 0;
    }

    .area-image-badge {
        left: 15px;
        right: 15px;
        bottom: 15px;
        min-width: 0;
    }

    .area-intro-image img,
    .area-climate-image img {
        min-height: 330px;
    }

    .area-service-card {
        min-height: 0;
        padding: 30px 23px;
    }

    .area-city-card {
        padding: 25px 22px;
    }

    .area-city-card p {
        min-height: 0;
    }

    .area-jaipur-content h2 {
        font-size: 28px;
    }

    .area-final-content h2 {
        font-size: 30px;
    }

    .area-final-actions {
        flex-direction: column;
    }

    .area-final-actions .area-btn {
        width: 100%;
    }

}

/*==============================================================
END : SMALL MOBILE
==============================================================*/