```css
/*
Theme Name: 360 Total Care Maintenance
Theme URI: https://360totalcare.com/
Author: 360 Total Care
Description: Temporary website renovation page for 360 Total Care.
Version: 1.0
*/


/* =========================================
   RESET
========================================= */

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #244d72;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}


/* =========================================
   MAIN
========================================= */

#ttc-coming-soon {
    --blue: #07539b;
    --blue-dark: #063d78;
    --green: #78be43;
    --green-dark: #4c9b42;
    --light-blue: #eef8ff;
    --text: #244d72;
    --white: #ffffff;

    min-height: 100vh;
    width: 100%;
    overflow: hidden;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(120, 190, 67, 0.10),
            transparent 25%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(7, 83, 155, 0.08),
            transparent 30%
        ),
        #ffffff;

    color: var(--text);
}


/* =========================================
   WRAPPER
========================================= */

.ttc-wrapper {
    min-height: 100vh;
    max-width: 1450px;
    margin: 0 auto;

    padding: 35px 55px 0;

    display: flex;
    flex-direction: column;
}


/* =========================================
   HEADER
========================================= */

.ttc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 45px;
}


/* DEFAULT LOGO */

.ttc-logo {
    width: 220px;
    max-width: 220px;
    height: auto;
    display: block;
}


/* =========================================
   DESKTOP LOGO
========================================= */

@media (min-width: 1001px) {

    #ttc-coming-soon .ttc-logo {
        width: 210px !important;
        max-width: 210px !important;
        height: auto !important;
    }

}


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

@media (min-width: 601px) and (max-width: 1000px) {

    #ttc-coming-soon .ttc-logo {
        width: 220px !important;
        max-width: 220px !important;
        height: auto !important;
    }

}


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

@media (max-width: 600px) {

    #ttc-coming-soon .ttc-logo {
        width: 220px !important;
        max-width: 220px !important;
        height: auto !important;
    }

}


.ttc-tagline {
    color: var(--blue);

    font-size: 18px;
    font-weight: 600;
    font-style: italic;

    letter-spacing: 0.3px;

    text-align: right;
}

.ttc-tagline-line {
    display: block;

    width: 115px;
    height: 3px;

    margin: 7px 0 0 auto;

    background: var(--green);

    border-radius: 20px;
}


/* =========================================
   HERO
========================================= */

.ttc-hero {
    display: grid;

    grid-template-columns: 1.05fr 0.95fr;

    gap: 60px;

    align-items: center;

    flex: 1;
}


/* =========================================
   CONTENT
========================================= */

.ttc-content {
    position: relative;
    z-index: 5;
}

.ttc-line {
    width: 85px;
    height: 7px;

    background: var(--green);

    border-radius: 20px;

    margin-bottom: 25px;
}

.ttc-title {
    margin: 0 0 25px;

    padding: 0;

    font-size: clamp(42px, 5vw, 72px);

    line-height: 1.02;

    font-weight: 800;

    letter-spacing: -2px;

    color: var(--blue);
}

.ttc-title span {
    display: block;
    color: var(--green);
}

.ttc-description {
    max-width: 650px;

    margin: 0 0 32px;

    font-size: 20px;

    line-height: 1.7;

    color: #456987;
}


/* =========================================
   CONTACT CARD
========================================= */

.ttc-contact-card {
    background: rgba(238, 248, 255, 0.92);

    border: 1px solid rgba(7, 83, 155, 0.08);

    border-radius: 24px;

    padding: 28px;

    box-shadow:
        0 15px 45px rgba(7, 83, 155, 0.09);
}

.ttc-contact-intro {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 24px;
}

.ttc-contact-icon {
    width: 46px;
    height: 46px;

    min-width: 46px;

    border-radius: 50%;

    background: var(--blue);

    color: white;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 23px;
}

.ttc-contact-intro strong {
    color: var(--blue);

    font-size: 17px;

    line-height: 1.4;
}


/* =========================================
   CONTACT DETAILS
========================================= */

.ttc-contact-details {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 0;
}

.ttc-contact-item {
    padding: 5px 22px;

    border-right: 1px solid rgba(7, 83, 155, 0.15);
}

.ttc-contact-item:first-child {
    padding-left: 0;
}

.ttc-contact-item:last-child {
    border-right: none;
}

.ttc-contact-label {
    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--blue);

    font-weight: 700;

    margin-bottom: 9px;

    font-size: 15px;
}

.ttc-contact-circle {
    width: 32px;
    height: 32px;

    border-radius: 50%;

    background: var(--green);

    color: white;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    font-size: 15px;
}

.ttc-contact-item a,
.ttc-contact-item p {
    margin: 0;

    color: #315b7e;

    text-decoration: none;

    font-size: 15px;

    line-height: 1.55;
}

.ttc-contact-item a:hover {
    color: var(--blue);
}


/* =========================================
   VISUAL AREA
========================================= */

.ttc-visual {
    position: relative;

    min-height: 470px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* Background blob */

.ttc-blob {
    position: absolute;

    width: 500px;
    height: 380px;

    background:
        linear-gradient(
            145deg,
            #eef9ff,
            #e4f5ff
        );

    border-radius: 48% 52% 55% 45%;

    transform: rotate(-5deg);
}


/* =========================================
   LAPTOP
========================================= */

.ttc-laptop {
    position: relative;

    z-index: 2;

    width: 430px;

    max-width: 90%;

    animation: ttcFloat 4s ease-in-out infinite;
}

.ttc-screen {
    height: 265px;

    border-radius: 16px 16px 8px 8px;

    background:
        linear-gradient(
            145deg,
            #263f59,
            #142b42
        );

    padding: 14px;

    box-shadow:
        0 25px 45px rgba(20, 50, 80, 0.25);
}

.ttc-screen-inner {
    height: 100%;

    border-radius: 8px;

    background: white;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    padding: 25px;

    text-align: center;
}


/* Laptop logo */

.ttc-mini-logo {
    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 22px;
}

.ttc-mini-logo img {
    width: 230px;

    height: auto;
}


/* Progress bar */

.ttc-progress {
    width: 80%;

    height: 10px;

    background: #dceaf2;

    border-radius: 20px;

    overflow: hidden;
}

.ttc-progress span {
    display: block;

    height: 100%;

    width: 68%;

    border-radius: 20px;

    background:
        linear-gradient(
            90deg,
            var(--green),
            #19a7d8
        );
}

.ttc-under {
    margin-top: 15px;

    color: #62809a;

    font-size: 16px;

    font-weight: 600;
}


/* Laptop base */

.ttc-base {
    width: 480px;

    max-width: 105%;

    height: 24px;

    margin-left: -25px;

    background:
        linear-gradient(
            180deg,
            #8ea1b1,
            #52697c
        );

    border-radius:
        0 0 18px 18px;

    transform:
        perspective(100px)
        rotateX(-8deg);

    box-shadow:
        0 18px 25px rgba(20, 50, 80, 0.20);
}


/* =========================================
   CONSTRUCTION CONE
========================================= */

.ttc-cone {
    position: absolute;

    z-index: 3;

    left: 3%;

    bottom: 70px;

    width: 58px;

    height: 95px;
}

.ttc-cone-top {
    width: 0;
    height: 0;

    border-left: 29px solid transparent;
    border-right: 29px solid transparent;

    border-bottom:
        72px solid #f49b21;
}

.ttc-cone-stripe {
    position: absolute;

    top: 31px;
    left: 9px;

    width: 40px;
    height: 13px;

    background: white;

    transform: rotate(-18deg);
}

.ttc-cone-base {
    width: 78px;
    height: 13px;

    background: #e78317;

    border-radius: 5px;

    margin-left: -10px;
}


/* =========================================
   HARD HAT
========================================= */

.ttc-hat {
    position: absolute;

    z-index: 3;

    right: 2%;

    bottom: 45px;

    width: 105px;
    height: 75px;

    background: #f7c927;

    border-radius:
        70px 70px 15px 15px;

    box-shadow:
        0 14px 25px rgba(0, 0, 0, 0.12);
}

.ttc-hat::before {
    content: "";

    position: absolute;

    left: 42px;
    top: -18px;

    width: 20px;
    height: 35px;

    background: #f7c927;

    border-radius:
        12px 12px 0 0;
}

.ttc-hat::after {
    content: "";

    position: absolute;

    left: -15px;
    bottom: -7px;

    width: 135px;
    height: 18px;

    background: #e9b91d;

    border-radius: 20px;
}


/* =========================================
   PLANT
========================================= */

.ttc-plant {
    position: absolute;

    right: -5%;

    bottom: 50px;

    z-index: 3;
}

.ttc-pot {
    width: 72px;
    height: 75px;

    background:
        linear-gradient(
            90deg,
            #c47b43,
            #e49a59
        );

    clip-path:
        polygon(
            10% 0,
            90% 0,
            78% 100%,
            22% 100%
        );

    margin-top: 15px;
}

.ttc-leaf {
    position: absolute;

    width: 38px;
    height: 72px;

    background: #5fa94a;

    border-radius:
        100% 0 100% 0;

    transform-origin: bottom;
}

.ttc-leaf:nth-child(1) {
    left: 25px;
    top: -55px;

    transform: rotate(-25deg);
}

.ttc-leaf:nth-child(2) {
    left: 45px;
    top: -80px;

    transform: rotate(10deg);
}

.ttc-leaf:nth-child(3) {
    left: 55px;
    top: -42px;

    transform: rotate(42deg);
}


/* =========================================
   BOTTOM SECTION
========================================= */

.ttc-bottom {
    position: relative;

    margin-top: 50px;

    padding:
        45px 20px 55px;

    text-align: center;

    background:
        linear-gradient(
            180deg,
            #f2faff,
            #e7f6ff
        );

    border-radius:
        55% 55% 0 0 /
        25% 25% 0 0;
}

.ttc-heart {
    color: var(--green);

    font-size: 38px;

    margin-bottom: 8px;
}

.ttc-bottom h2 {
    margin: 0 0 8px;

    color: var(--blue);

    font-size: 28px;

    font-weight: 800;
}

.ttc-bottom p {
    margin: 0;

    color: #52728e;

    font-size: 17px;
}


/* =========================================
   ANIMATION
========================================= */

@keyframes ttcFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}


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

@media (max-width: 1000px) {

    .ttc-wrapper {
        padding:
            25px 25px 0;
    }

    .ttc-header {
        margin-bottom: 35px;
    }

    .ttc-tagline {
        display: none;
    }

    .ttc-hero {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .ttc-content {
        text-align: center;
    }

    .ttc-line {
        margin-left: auto;
        margin-right: auto;
    }

    .ttc-description {
        margin-left: auto;
        margin-right: auto;
    }

    .ttc-contact-details {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .ttc-contact-item,
    .ttc-contact-item:first-child {
        padding:
            10px 0 18px;

        border-right: none;

        border-bottom:
            1px solid rgba(
                7,
                83,
                155,
                0.12
            );
    }

    .ttc-contact-item:last-child {
        border-bottom: none;
    }

    .ttc-visual {
        min-height: 390px;
    }

    .ttc-blob {
        width: 400px;
        height: 300px;
    }

    .ttc-bottom {
        margin-top: 20px;
    }
}


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

@media (max-width: 600px) {

    .ttc-wrapper {
        padding:
            20px 16px 0;
    }

    .ttc-header {
        justify-content: center;
    }

    .ttc-title {
        font-size: 42px;

        letter-spacing: -1px;
    }

    .ttc-description {
        font-size: 17px;

        line-height: 1.6;
    }

    .ttc-contact-card {
        padding: 22px;

        border-radius: 18px;
    }

    .ttc-contact-intro {
        align-items: flex-start;
    }

    .ttc-visual {
        min-height: 320px;
    }

    .ttc-blob {
        width: 300px;
        height: 230px;
    }

    .ttc-laptop {
        width: 300px;
    }

    .ttc-screen {
        height: 185px;
    }

    .ttc-base {
        width: 330px;
    }

    .ttc-mini-logo img {
        width: 170px;
    }

    .ttc-cone {
        transform: scale(0.7);

        left: -3%;

        bottom: 35px;
    }

    .ttc-hat {
        transform: scale(0.65);

        right: -2%;

        bottom: 20px;
    }

    .ttc-plant {
        transform: scale(0.65);

        right: -10%;

        bottom: 20px;
    }

    .ttc-bottom {
        padding:
            35px 15px 45px;
    }

    .ttc-bottom h2 {
        font-size: 23px;
    }

    .ttc-bottom p {
        font-size: 15px;

        line-height: 1.6;
    }

}
```
