@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/poppins-v20-latin-300.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins-v20-latin-regular.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/poppins-v20-latin-500.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins-v20-latin-600.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/poppins-v20-latin-700.woff2') format('woff2')
}

@font-face {
    font-display: swap;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 800;
    src: url('../fonts/poppins-v20-latin-800.woff2') format('woff2')
}

/* ===============================
   HERO SECTION
================================== */
.gd-hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 58%, #efe3d8 58%, #efe3d8 100%);
    /* font-family: 'Poppins', sans-serif; */
}

/* ===============================
   NAVBAR
================================== */
.gd-navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 25px 0;
}

.gd-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gd-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    color: #18243f;
}

.gd-logo-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #18243f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gd-menu {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gd-menu li {
    position: relative;
}

.gd-menu li a {
    color: #18243f;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.gd-menu li a:hover {
    color: #d7672f;
}

.gd-nav-call {
    padding: 13px 30px;
    border-radius: 50px;
    background: #18243f;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .4s;
}

.gd-nav-call:hover {
    background: #d7672f;
    color: #fff;
}

/* ===============================
   DROPDOWN
================================== */
.gd-dropdown>a::after {
    content: " ▼";
    font-size: 10px;
}

.gd-dropdown-menu {
    position: absolute;
    top: 40px;
    left: 0;
    min-width: 230px;
    background: #fff;
    border-radius: 20px;
    padding: 15px 0;
    list-style: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: .4s;
}

.gd-dropdown:hover .gd-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gd-dropdown-menu li a {
    display: block;
    padding: 12px 22px;
}

/* ===============================
   HERO CONTENT
================================== */
.gd-hero-row {
    min-height: 100vh;
    align-items: center;
}

.gd-content {
    position: relative;
    z-index: 2;
    animation: fadeLeft 1.2s ease;
}

.gd-tag {
    display: inline-block;
    padding: 10px 18px;
    background: #f7f1eb;
    border-radius: 40px;
    color: #18243f;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.gd-content h1 {
    font-size: 60px;
    line-height: 1.05;
    /* font-family: 'Playfair Display', serif; */
    color: #d7672f;
    margin-bottom: 25px;
    font-weight: 900;
}

.gd-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #555;
    max-width: 580px;
    margin-bottom: 35px;
}

.gd-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gd-btn {
    padding: 16px 38px;
    background: #18243f;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .4s;font-size: 21px;
}

.gd-btn:hover {
    background: #d7672f;
    color: #fff;
    transform: translateY(-4px);
}
.gd-btn1 {
    padding: 16px 38px;
    background: #18243f;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: .4s;font-size: 21px;
}

.gd-btn1:hover {
    background: #d7672f;
    color: #fff;
    transform: translateY(-4px);
}
.gd-link {
    color: #18243f;
    font-weight: 700;
    text-decoration: none;
}

/* ===============================
   IMAGE
================================== */
/* ===============================
   VERTICAL IMAGE STYLE
================================== */

.gd-image-wrap {
    position: relative;
    width: 100%;
    max-width: 420px;
    height: 580px;
    margin: auto;
    z-index: 5;
    animation: fadeRight 1.2s ease;
}

.gd-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 220px;
    border: 10px solid #ffffff;
    outline: 4px solid #18243f;
    outline-offset: 8px;
    box-shadow:
        0 25px 70px rgba(0, 0, 0, .15),
        0 0 0 20px rgba(255, 255, 255, .4);
    animation: floatImg 5s ease-in-out infinite;
}

/* decorative frame behind image */
.gd-image-wrap::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px dashed #d7672f;
    border-radius: 220px;
    z-index: -1;
    /* animation: dotsMove 5s linear infinite !important;
    transform-origin: center; */
}

@keyframes dotsMove {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}



/* second frame */
.gd-image-wrap::after {
    content: "";
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid rgba(24, 36, 63, .15);
    border-radius: 220px;
    z-index: -2;
}

/* floating square */
.gd-circle {
    position: absolute;
    right: -60px;
    bottom: 40px;
    width: 130px;
    height: 130px;
    background: #d7672f;
    border-radius: 35px;
    z-index: -1;
    /* animation:rotateShape 8s linear infinite; */
}

/* floating dot */
.gd-dot {
    position: absolute;
    left: -25px;
    top: 80px;
    width: 30px;
    height: 30px;
    background: #18243f;
    border-radius: 50%;
    animation: moveDot 4s infinite ease-in-out;
}

/* extra floating card */
.gd-badge {
    position: absolute;
    top: 30px;
    right: -60px;
    background: #fff;
    padding: 18px 22px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    z-index: 5;
    animation: floatCard 4s infinite;
}

.gd-badge h5 {
    margin: 0;
    color: #18243f;
    font-size: 16px;
    font-weight: 700;
}

.gd-badge span {
    color: #d7672f;
    font-weight: 600;
    font-size: 14px;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes floatCard {

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

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

/* ===============================
   FLOATING SHAPES
================================== */
.gd-dot {
    position: absolute;
    top: -25px;
    left: -25px;
    width: 35px;
    height: 35px;
    background: #18243f;
    border-radius: 50%;
    animation: moveDot 4s infinite ease-in-out;
}

.gd-circle {
    position: absolute;
    right: -45px;
    bottom: -35px;
    width: 150px;
    height: 150px;
    border-radius: 35px;
    background: #d7672f;
    z-index: -1;
    /* animation:rotateShape 8s linear infinite; */
}

.shape-1 {
    position: absolute;
    width: 140px;
    height: 140px;
    border: 8px solid #d7672f;
    border-radius: 50%;
    bottom: 50px;
    left: 60px;
    animation: rotateShape 10s linear infinite;
}

.shape-1::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 6px solid #18243f;
    border-radius: 50%;
}

.shape-2 {
    position: absolute;
    left: 340px;
    bottom: 90px;
    width: 18px;
    height: 60px;
    background: #d7672f;
    border-radius: 50px;
    box-shadow:
        30px 0 #d7672f,
        60px 0 #d7672f,
        90px 0 #d7672f;
    animation: bounceShape 2s infinite alternate;
}

.gd-lines {
    position: absolute;
    right: 44%;
    bottom: 0;
    width: 45px;
    height: 220px;
}

.gd-lines::before,
.gd-lines::after {
    content: "";
    position: absolute;
    width: 4px;
    height: 100%;
    background: #d7672f;
}

.gd-lines::before {
    left: 0;
    animation: lineMove 4s infinite;
}

.gd-lines::after {
    right: 0;
    animation: lineMove 4s infinite reverse;
}

/* ===============================
   EXTRA FLOATING ELEMENTS
================================== */
.gd-hero::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(215, 103, 47, .08);
    top: -100px;
    right: -100px;
    animation: pulse 5s infinite;
}

.gd-hero::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(24, 36, 63, .05);
    bottom: -50px;
    left: -50px;
    animation: pulse 6s infinite;
}

/* ===============================
   SOCIAL
================================== */
.gd-social {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.gd-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #18243f;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: .3s;
}

.gd-social a:hover {
    background: #d7672f;
    transform: translateY(-5px);
}

/* ===============================
   MOBILE MENU
================================== */
#gd-menu-toggle {
    display: none;
}

.gd-menu-btn {
    display: none;
    width: 45px;
    height: 45px;
    background: #18243f;
    border-radius: 12px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.gd-menu-btn span {
    width: 22px;
    height: 2px;
    background: #fff;
}

/* ===============================
   ANIMATIONS
================================== */
@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatImg {

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

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

@keyframes rotateShape {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes bounceShape {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-25px);
    }
}

@keyframes moveDot {

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

    50% {
        transform: translate(25px, 15px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

@keyframes lineMove {

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

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

/* ===============================
   RESPONSIVE
================================== */
@media(max-width:991px) {

    .gd-navbar {
        position: relative;
        background: #fff;
    }

    .gd-menu-btn {
        display: flex;
    }

    .gd-nav-call {
        display: none;
    }

    .gd-menu {
        position: absolute;
        top: 100%;
        left: 15px;
        right: 15px;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
        opacity: 0;
        visibility: hidden;
        transition: .4s;
    }

    #gd-menu-toggle:checked~.gd-menu {
        opacity: 1;
        visibility: visible;
    }

    .gd-content {
        text-align: center;
        margin-bottom: 60px;
    }

    .gd-content p {
        margin: auto auto 30px;
    }

    .gd-actions {
        justify-content: center;
    }

    .gd-content h1 {
        font-size: 50px;
    }

    .gd-image-wrap {
        height: 300px;
    }

    .gd-lines {
        display: none;
    }
}

@media(max-width:767px) {

    .gd-content h1 {
        font-size: 38px;
    }

    .gd-image-wrap {
        height: 240px;
    }

    .shape-1,
    .shape-2 {
        display: none;
    }

    .gd-hero {
        background: #fff;
    }
}
 .about-features{
    padding:120px 0;
    background:#F8F4EF;
    position:relative;
}

.section-title{
    max-width:750px;
    margin:0 auto 70px;
}

.section-title span{
    display:inline-block;
    padding:10px 22px;
    background:#fff;
    border-radius:50px;
    color:#D7672F;
    font-weight:600;
    margin-bottom:15px;
}

.section-title h2{
    font-size:48px;
    color:#18243F;
    font-weight:800;
    line-height:1.2;
}

.feature-card{
    background:#fff;
    padding:35px;
    border-radius:30px;
    height:100%;
    position:relative;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 15px 40px rgba(24,36,63,.06);
}

.feature-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#D7672F;
    transform:scaleX(0);
    transition:.4s;
}

.feature-card:hover{
    transform:translateY(-10px);
}

.feature-card:hover::before{
    transform:scaleX(1);
}

.feature-icon{
    width:75px;
    height:75px;
    border-radius:20px;
    background:#18243F;
    color:#fff;
    font-size:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    transition:.4s;
}

.feature-card:hover .feature-icon{
    background:#D7672F;
    transform:rotate(10deg);
}

.feature-card h3{
    color:#18243F;
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.feature-card p{
    color:#6B7280;
    line-height:1.8;
    margin:0;
}

@media(max-width:991px){

    .section-title h2{
        font-size:38px;
    }

}

@media(max-width:767px){

    .about-features{
        padding:80px 0;
    }

    .section-title h2{
        font-size:30px;
    }

    .feature-card{
        padding:30px;
    }

}
.intro-section{
    position:relative;
    padding:120px 0;
    overflow:hidden;
    background:
        linear-gradient(rgba(24,36,63,.86), rgba(24,36,63,.86)),
        url("../garage-door/garage-door-bg.webp") center/cover no-repeat;
}

.intro-box{
    max-width:900px;
    margin:auto;
    text-align:center;
    position:relative;
    z-index:5;
}

.intro-tag{
    display:inline-block;
    padding:10px 22px;
    background:#fff;
    color:#D7672F;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:25px;
}

.intro-box h2{
    font-size:58px;
    line-height:1.15;
    color:#fff;
    font-weight:800;
    margin-bottom:30px;
}

.intro-box h2 span{
    color:#F2C078;
    display:block;
}

.intro-divider{
    width:120px;
    height:5px;
    background:#D7672F;
    margin:0 auto 35px;
    border-radius:20px;
    position:relative;
}

.intro-divider::before,
.intro-divider::after{
    content:"";
    position:absolute;
    top:50%;
    width:14px;
    height:14px;
    background:#fff;
    border-radius:50%;
    transform:translateY(-50%);
}

.intro-divider::before{
    left:-25px;
}

.intro-divider::after{
    right:-25px;
}

.intro-box p{
    font-size:18px;
    line-height:2;
    color:rgba(255,255,255,.86);
    max-width:800px;
    margin:auto;
}

/* Moving Shapes */
.intro-shape{
    position:absolute;
    z-index:1;
    opacity:.75;
}

.intro-shape-1{
    width:140px;
    height:140px;
    border:8px solid #D7672F;
    border-radius:50%;
    left:6%;
    top:20%;
    animation:introRotate 14s linear infinite;
}

.intro-shape-2{
    width:80px;
    height:80px;
    background:#F2C078;
    border-radius:22px;
    right:8%;
    top:25%;
    animation:introFloat 4s ease-in-out infinite;
}

.intro-shape-3{
    width:18px;
    height:70px;
    background:#D7672F;
    border-radius:50px;
    left:14%;
    bottom:18%;
    box-shadow:35px 0 #D7672F,70px 0 #D7672F;
    animation:introBounce 2s ease-in-out infinite alternate;
}

.intro-shape-4{
    width:130px;
    height:130px;
    right:12%;
    bottom:12%;
    background-image:radial-gradient(#fff 2px, transparent 2px);
    background-size:16px 16px;
    animation:introFloat 5s ease-in-out infinite;
}
.intro-features{
    display:flex;
    justify-content:center;
    gap:25px;
    margin-top:50px;
    flex-wrap:wrap;
}

.intro-feature{
    width:85%;
    padding:25px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(8px);
    border:1px solid rgba(255,255,255,.12);
    border-radius:25px;
    transition:.4s;
}

.intro-feature:hover{
    transform:translateY(-10px);
    border-color:#D7672F;
}

.intro-feature h3{
    color:#F2C078;
    font-size:20px;
    font-weight:700;
    margin-bottom:12px;
}

.intro-feature p{
    color:rgba(255,255,255,.82);
    line-height:1.8;
    margin:0;
    font-size:15px;
}
@keyframes introRotate{
    from{transform:rotate(0deg)}
    to{transform:rotate(360deg)}
}

@keyframes introFloat{
    0%,100%{transform:translateY(0)}
    50%{transform:translateY(-18px)}
}

@keyframes introBounce{
    from{transform:translateY(0)}
    to{transform:translateY(-22px)}
}

@media(max-width:767px){
    .intro-section{
        padding:80px 0;
    }

    .intro-box h2{
        font-size:32px;
    }

    .intro-box p{
        font-size:16px;
    }

    .intro-shape{
        opacity:.35;
    }
}



.why-creative{
    position:relative;
    padding:120px 0;
    background:#FFFDFB;
    overflow:hidden;
}

.why-bg-number{
    position:absolute;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    font-size:210px;
    font-weight:900;
    color:rgba(215,103,47,.06);
    line-height:1;
    pointer-events:none;
    z-index:1;
}
.why-creative::before{
    content:"";
    position:absolute;
    inset:0;
    opacity:.05;
    background-image:
        radial-gradient(#18243F 1px, transparent 1px);
    background-size:8px 8px;
}
.why-creative-head{
    position:relative;
    z-index:2;
    max-width:820px;
    margin:0 auto 70px;
}

.why-creative-head span{
    display:inline-block;
    padding:10px 22px;
    background:#F8F4EF;
    color:#D7672F;
    border-radius:50px;
    font-weight:700;
    margin-bottom:18px;
}

.why-creative-head h2{
    color:#18243F;
    font-size:52px;
    font-weight:900;
    line-height:1.15;
    margin-bottom:20px;
}

.why-creative-head p{
    color:#6B7280;
    line-height:1.9;
    margin:0;
}

.why-creative-card{
    position:relative;
    height:100%;
    padding:42px 28px 34px;
    background:#fff;
    border-radius:34px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(24,36,63,.08);
    border:1px solid rgba(24,36,63,.08);
    transition:.45s ease;
    z-index:2;
}

.why-creative-card strong{
    position:absolute;
    right:18px;
    top:10px;
    font-size:92px;
    line-height:1;
    font-weight:900;
    color:rgba(24,36,63,.06);
    transition:.45s ease;
}

.why-creative-card::before{
    content:"";
    position:absolute;
    inset:auto 0 0 0;
    height:6px;
    background:#D7672F;
    transition:.45s ease;
}

.why-creative-card::after{
    content:"";
    position:absolute;
    right:-55px;
    bottom:-55px;
    width:130px;
    height:130px;
    background:#EFE3D8;
    border-radius:50%;
    transition:.45s ease;
    z-index:-1;
}

.why-creative-card h3{
    position:relative;
    z-index:2;
    color:#18243F;
    font-size:23px;
    font-weight:800;
    margin-bottom:14px;
    padding-top:35px;
}

.why-creative-card p{
    position:relative;
    z-index:2;
    color:#6B7280;
    line-height:1.8;
    margin:0;
}

.why-creative-card:hover{
    transform:translateY(-12px);
    background:#18243F;
}

.why-creative-card:hover strong{
    color:rgba(255,255,255,.08);
    transform:scale(1.08);
}

.why-creative-card:hover h3{
    color:#fff;
}

.why-creative-card:hover p{
    color:rgba(255,255,255,.78);
}

.why-creative-card:hover::before{
    height:100%;
    opacity:.12;
}

.why-creative-card:hover::after{
    transform:scale(1.7);
    background:#D7672F;
    opacity:.25;
}

@media(max-width:991px){
    .why-bg-number{
        font-size:140px;
    }

    .why-creative-head h2{
        font-size:40px;
    }
}

@media(max-width:767px){
    .why-creative{
        padding:80px 0;
    }

    .why-bg-number{
        font-size:90px;
        top:45px;
    }

    .why-creative-head h2{
        font-size:32px;
    }
}

.services-line-section{
    position:relative;
    padding:120px 0;
    background:#FFFDFB;
    overflow:hidden;
}

.services-big-text{
    position:absolute;
    top:40px;
    right:-20px;
    font-size:180px;
    font-weight:900;
    color:rgba(215,103,47,.055);
    line-height:1;
    pointer-events:none;
}

.services-line-heading{
    max-width:720px;
    margin-bottom:70px;
    position:relative;
    z-index:2;
}

.services-line-heading span{
    display:inline-block;
    padding:10px 22px;
    background:#F8F4EF;
    color:#D7672F;
    border-radius:50px;
    font-weight:700;
    margin-bottom:18px;
}

.services-line-heading h2{
    font-size:52px;
    line-height:1.15;
    color:#18243F;
    font-weight:900;
}

.services-line-img{
    position:relative;
    height:640px;
    border-radius:260px 260px 40px 40px;
    overflow:hidden;
    border:10px solid #fff;
    outline:4px solid #18243F;
    outline-offset:8px;
    box-shadow:0 25px 70px rgba(24,36,63,.14);
}

.services-line-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.services-list{
    position:relative;
    z-index:2;
}

.service-line{
    display:grid;
    grid-template-columns:90px 1fr 70px;
    align-items:center;
    gap:25px;
    padding:28px 0;
    border-bottom:1px solid rgba(24,36,63,.14);
    transition:.35s;
}

.service-line:first-child{
    border-top:1px solid rgba(24,36,63,.14);
}

.service-line strong{
    font-size:54px;
    font-weight:900;
    color:rgba(215,103,47,.28);
    transition:.35s;
}

.service-line h3{
    font-size:28px;
    color:#18243F;
    font-weight:800;
    margin-bottom:8px;
}

.service-line p{
    color:#6B7280;
    line-height:1.7;
    margin:0;
}

.service-line a{
    width:56px;
    height:56px;
    border-radius:50%;
    background:#18243F;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    transition:.35s;
}

.service-line:hover{
    padding-left:25px;
    background:linear-gradient(90deg, rgba(239,227,216,.65), transparent);
}

.service-line:hover strong{
    color:#D7672F;
    transform:scale(1.08);
}

.service-line:hover a{
    background:#D7672F;
    transform:rotate(-12deg);
}

@media(max-width:991px){
    .services-line-heading h2{
        font-size:38px;
    }

    .services-line-img{
        height:460px;
        max-width:420px;
        margin:auto;
    }
}

@media(max-width:767px){
    .services-line-section{
        padding:80px 0;
    }

    .services-big-text{
        font-size:90px;
    }

    .service-line{
        grid-template-columns:1fr;
        gap:12px;
    }

    .service-line a{
        width:50px;
        height:50px;
    }

    .services-line-heading h2{
        font-size:32px;
    }
}
/*=====================================
   DARK INSTALLATION SECTION
=====================================*/

.install-value{
    position:relative;
    padding:140px 0;
    overflow:hidden;
    background:#18243F;
}

/* Grid Texture */
.install-value::before{
    content:"";
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        rgba(255,255,255,.025) 1px,
        transparent 1px
    ),
    linear-gradient(
        90deg,
        rgba(255,255,255,.025) 1px,
        transparent 1px
    );

    background-size:70px 70px;

    pointer-events:none;
}

/* Orange Glow */
.install-value::after{
    content:"";
    position:absolute;

    width:550px;
    height:550px;

    right:-180px;
    top:-180px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(215,103,47,.20),
        transparent 70%
    );

    pointer-events:none;
}

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

.install-value-box{
    position:relative;
    z-index:2;

    max-width:1100px;
    margin:auto;

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:50px;

    padding:80px;

    overflow:hidden;
}

/*=====================================
   BIG BACKGROUND WORD
=====================================*/

.install-bg-word{
    position:absolute;

    right:-20px;
    top:0;

    font-size:190px;
    line-height:1;

    font-weight:900;

    color:rgba(255,255,255,.03);

    pointer-events:none;

    user-select:none;
}

/*=====================================
   TAG
=====================================*/

.install-tag{
    display:inline-flex;
    align-items:center;

    padding:12px 24px;

    border-radius:50px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.12);

    color:#F2C078;

    font-size:14px;
    font-weight:700;

    letter-spacing:.5px;

    margin-bottom:25px;
}

/*=====================================
   TITLE
=====================================*/

.install-value-box h2{
    position:relative;
    z-index:2;

    font-size:58px;
    line-height:1.15;

    color:#fff;

    font-weight:900;

    margin-bottom:30px;

    max-width:900px;
}

.install-value-box h2 span{
    color:#F2C078;
}

/*=====================================
   PARAGRAPH
=====================================*/

.install-value-box p{
    position:relative;
    z-index:2;

    color:rgba(255,255,255,.78);

    line-height:2;

    font-size:17px;

    margin-bottom:0;
}

/*=====================================
   SECOND PARAGRAPH BOX
=====================================*/

.install-split-text{
    position:relative;

    margin-top:40px;

    padding:35px 40px;

    background:rgba(255,255,255,.05);

    border-left:5px solid #D7672F;

    border-radius:0 25px 25px 0;

    overflow:hidden;
}

.install-split-text::before{
    content:"";

    position:absolute;

    width:140px;
    height:140px;

    right:-60px;
    bottom:-60px;

    border-radius:50%;

    background:rgba(215,103,47,.08);
}

/*=====================================
   SHAPE 1
=====================================*/

.install-value-box .shape-one{
    position:absolute;

    left:-50px;
    bottom:-50px;

    width:150px;
    height:150px;

    border:8px solid #D7672F;

    border-radius:50%;

    opacity:.35;

    animation:rotateShape 15s linear infinite;
}

/*=====================================
   SHAPE 2
=====================================*/

.install-value-box .shape-two{
    position:absolute;

    top:60px;
    right:120px;

    width:18px;
    height:65px;

    background:#D7672F;

    border-radius:50px;

    box-shadow:
    35px 0 #D7672F,
    70px 0 #D7672F;

    animation:bounceShape 2.5s ease-in-out infinite alternate;
}

/*=====================================
   SHAPE 3 DOTS
=====================================*/

.install-value-box .shape-three{
    position:absolute;

    left:60px;
    top:80px;

    width:120px;
    height:120px;

    opacity:.15;

    background-image:
    radial-gradient(#ffffff 2px, transparent 2px);

    background-size:15px 15px;
}

/*=====================================
   BUTTON
=====================================*/

.install-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    margin-top:35px;

    padding:16px 36px;

    border-radius:50px;

    background:#D7672F;

    color:#fff;

    font-weight:700;

    text-decoration:none;

    transition:.4s;
}

.install-btn:hover{
    background:#F2C078;

    color:#18243F;

    transform:translateY(-5px);
}

/*=====================================
   ANIMATIONS
=====================================*/

@keyframes rotateShape{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }
}

@keyframes bounceShape{

    from{
        transform:translateY(0);
    }

    to{
        transform:translateY(-18px);
    }
}

/*=====================================
   RESPONSIVE
=====================================*/

@media(max-width:991px){

    .install-value{
        padding:100px 0;
    }

    .install-value-box{
        padding:60px 40px;
    }

    .install-value-box h2{
        font-size:42px;
    }

    .install-bg-word{
        font-size:120px;
    }

    .shape-two{
        display:none;
    }
}

@media(max-width:767px){

    .install-value{
        padding:80px 0;
    }

    .install-value-box{
        padding:40px 25px;
        border-radius:30px;
    }

    .install-value-box h2{
        font-size:32px;
    }

    .install-value-box p{
        font-size:15px;
        line-height:1.9;
    }

    .install-split-text{
        padding:25px;
    }

    .install-bg-word{
        font-size:70px;
        top:20px;
    }

    .shape-one,
    .shape-two,
    .shape-three{
        display:none;
    }
}

.ba-showcase{
    position:relative;
    padding:120px 0;
    background:#F8F4EF;
    overflow:hidden;
}

.ba-showcase::before{
    content:"BEFORE";
    position:absolute;
    left:-20px;
    top:60px;
    font-size:160px;
    font-weight:900;
    color:rgba(24,36,63,.04);
}

.ba-showcase::after{
    content:"AFTER";
    position:absolute;
    right:-20px;
    bottom:80px;
    font-size:160px;
    font-weight:900;
    color:rgba(215,103,47,.08);
}

.ba-showcase-head{
    max-width:850px;
    margin:0 auto 80px;
    position:relative;
    z-index:5;
}

.ba-showcase-head span{
    display:inline-block;
    padding:10px 22px;
    background:#fff;
    color:#D7672F;
    border-radius:50px;
    font-weight:700;
    margin-bottom:18px;
}

.ba-showcase-head h2{
    color:#18243F;
    font-size:52px;
    font-weight:900;
    margin-bottom:20px;
}

.ba-showcase-head p{
    color:#6B7280;
    line-height:1.9;
}

/* Photos */

.ba-gallery-wrap{
    position:relative;
    max-width:1100px;
    margin:auto;
    height:620px;
}

.ba-before-photo,
.ba-after-photo{
    position:absolute;
    width:48%;
}

.ba-before-photo{
    left:0;
    top:0;
}

.ba-after-photo{
    right:0;
    bottom:0;
}

.ba-before-photo img,
.ba-after-photo img{
    width:100%;
    height:450px;
    object-fit:cover;
    border-radius:40px;
    border:10px solid #fff;
    box-shadow:0 25px 70px rgba(24,36,63,.15);
    transition:.5s;
}

.ba-before-photo:hover img,
.ba-after-photo:hover img{
    transform:scale(1.04);
}

.ba-tag{
    position:absolute;
    top:20px;
    left:20px;
    z-index:5;
    padding:12px 24px;
    border-radius:50px;
    font-weight:700;
}

.before-tag{
    background:#18243F;
    color:#fff;
}

.after-tag{
    background:#D7672F;
    color:#fff;
}

.ba-center-circle{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:110px;
    height:110px;
    border-radius:50%;
    background:#18243F;
    color:#F2C078;
    font-weight:900;
    font-size:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:10;
    box-shadow:0 15px 40px rgba(24,36,63,.25);
}

/* Bottom Status */

.ba-status-row{
    width:90%;
    margin:50px auto 0;
    background:#fff;
    border-radius:35px;
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    box-shadow:0 20px 50px rgba(24,36,63,.10);
    overflow:hidden;
}

.ba-status{
    padding:35px;
}

.ba-status strong{
    display:block;
    font-size:26px;
    font-weight:900;
    margin-bottom:10px;
}

.ba-status.before strong{
    color:#18243F;
}

.ba-status.after{
    text-align:right;
}

.ba-status.after strong{
    color:#D7672F;
}

.ba-status p{
    color:#6B7280;
    margin:0;
    line-height:1.8;
}

.ba-center-badge{
    width:95px;
    height:95px;
    border-radius:50%;
    background:#18243F;
    color:#F2C078;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
}

/* Responsive */

@media(max-width:991px){

    .ba-gallery-wrap{
        height:auto;
        display:grid;
        gap:25px;
    }

    .ba-before-photo,
    .ba-after-photo{
        position:relative;
        width:100%;
    }

    .ba-center-circle{
        display:none;
    }

    .ba-status-row{
        grid-template-columns:1fr;
    }

    .ba-status.after{
        text-align:left;
    }
}

@media(max-width:767px){

    .ba-showcase{
        padding:80px 0;
    }

    .ba-showcase-head h2{
        font-size:32px;
    }

    .ba-before-photo img,
    .ba-after-photo img{
        height:300px;
    }

    .ba-showcase::before,
    .ba-showcase::after{
        font-size:70px;
    }
}


/*==================================
  MAINTENANCE SECTION
==================================*/
.maintenance-art{
    position:relative;
    padding:120px 0;
    overflow:hidden;
    background:
        linear-gradient(
            90deg,
            #EFE3D8 0%,
            #EFE3D8 42%,
            #FFFDFB 42%,
            #FFFDFB 100%
        );
}

/* Image Rectangle */
.art-image-box{
    position:relative;
    width:100%;
    max-width:560px;
    height:520px;
    margin:auto;
    z-index:10;
    animation:floatImage 5s ease-in-out infinite;
}

.art-image-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:38px;
    border:8px solid #fff;
    outline:4px solid #D7672F;
    outline-offset:8px;
    box-shadow:
        0 25px 70px rgba(24,36,63,.22),
        30px 30px 0 #18243F;
}

/* Floating Badge */
.art-dark-card{
    position:absolute;
    left:-25px;
    bottom:45px;
    background:#18243F;
    color:#fff;
    padding:18px 28px;
    border-radius:20px;
    font-size:18px;
    font-weight:700;
    box-shadow:0 20px 40px rgba(24,36,63,.25);
    z-index:20;
    animation:badgeMove 4s ease-in-out infinite;
}

/* Main Orange Shape */
.art-circle{
    position:absolute;
    right:-55px;
    top:55px;
    width:130px;
    height:130px;
    background:#D7672F;
    border-radius:35px;
    z-index:-1;
    animation:rotateBox 9s linear infinite;
}

.art-small-dot{
    position:absolute;
    right:-18px;
    top:95px;
    width:34px;
    height:34px;
    border-radius:50%;
    background:#18243F;
    z-index:20;
    animation:dotMove 3.5s ease-in-out infinite;
}

/* Content */
.art-content{
    position:relative;
    z-index:5;
    max-width:760px;
}

.art-content > span{
    display:inline-block;
    padding:12px 24px;
    background:#18243F;
    color:#F2C078;
    border-radius:50px;
    font-weight:700;
    margin-bottom:25px;
}

.art-content h2{
    color:#18243F;
    font-size:56px;
    line-height:1.15;
    font-weight:900;
    margin-bottom:25px;
}

.art-content h2 span{
    display:block;
    color:#D7672F;
}

.art-content p{
    color:#6B7280;
    line-height:2;
    font-size:17px;
    margin-bottom:32px;
}

.art-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:32px;
}

.art-list div{
    background:#fff;
    padding:18px 20px;
    border-radius:18px;
    color:#18243F;
    font-weight:700;
    box-shadow:0 12px 30px rgba(24,36,63,.08);
    transition:.4s;
}

.art-list div:hover{
    transform:translateY(-8px);
    background:#18243F;
    color:#fff;
}

.art-note{
    background:#F8F4EF;
    padding:28px 30px;
    border-left:5px solid #D7672F;
    border-radius:0 25px 25px 0;
    color:#6B7280;
    line-height:1.9;
}

/* Decorative Shapes */
.art-lines{
    position:absolute;
    left:20px;
    top:0;
    width:55px;
    height:320px;
    border-left:5px solid #D7672F;
    border-right:5px solid #D7672F;
    z-index:3;
    animation:lineFloat 4s ease-in-out infinite;
}

.art-lines::before{
    content:"";
    position:absolute;
    left:16px;
    top:0;
    height:100%;
    border-left:4px solid #D7672F;
}

.art-corner{
    position:absolute;
    left:0;
    bottom:90px;
    width:280px;
    height:90px;
    border:6px solid #D7672F;
    border-left:0;
    border-radius:0 50px 50px 0;
    z-index:3;
    animation:cornerMove 5s ease-in-out infinite;
}

.art-dot{
    position:absolute;
    width:24px;
    height:24px;
    border-radius:50%;
    z-index:3;
}

.dot-one{
    right:8%;
    top:18%;
    background:#F2C078;
    animation:dotFloat 3s ease-in-out infinite;
}

.dot-two{
    left:45%;
    bottom:15%;
    background:#D7672F;
    animation:dotFloat 4s ease-in-out infinite reverse;
}

.art-wave{
    position:absolute;
    right:90px;
    bottom:80px;
    width:160px;
    height:160px;
    background-image:radial-gradient(#D7672F 2px, transparent 2px);
    background-size:18px 18px;
    opacity:.18;
    animation:waveMove 6s ease-in-out infinite;
}

/* Animations */
@keyframes floatImage{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-14px);}
}

@keyframes rotateBox{
    from{transform:rotate(0deg);}
    to{transform:rotate(360deg);}
}

@keyframes badgeMove{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-12px);}
}

@keyframes dotMove{
    0%,100%{transform:translate(0,0);}
    50%{transform:translate(12px,-12px);}
}

@keyframes lineFloat{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-22px);}
}

@keyframes cornerMove{
    0%,100%{transform:translateX(0);}
    50%{transform:translateX(18px);}
}

@keyframes dotFloat{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-18px);}
}

@keyframes waveMove{
    0%,100%{transform:translate(0,0);}
    50%{transform:translate(-18px,-18px);}
}

/* Responsive */
@media(max-width:991px){
    .maintenance-art{
        background:#FFFDFB;
        padding:100px 0;
    }

    .art-image-box{
        height:420px;
        margin-bottom:60px;
    }

    .art-content{
        text-align:center;
        margin:auto;
    }

    .art-content h2{
        font-size:40px;
    }

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

@media(max-width:767px){
    .maintenance-art{
        padding:80px 0;
    }

    .art-image-box{
        height:320px;
    }

    .art-content h2{
        font-size:32px;
    }

    .art-dark-card{
        left:15px;
        bottom:20px;
        font-size:15px;
        padding:14px 20px;
    }

    .art-lines,
    .art-corner,
    .art-wave{
        opacity:.2;
    }
}


.split-gallery-dark{
    position:relative;
    padding:120px 0;
    background:#18243F;
    overflow:hidden;
}

.texture-grid{
    position:absolute;
    inset:0;
    background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size:70px 70px;
    pointer-events:none;
}

.split-gallery-bg{
    position:absolute;
    right:-20px;
    top:20px;
    font-size:180px;
    font-weight:900;
    line-height:1;
    color:rgba(255,255,255,.035);
}

.split-gallery-dark::before{
    content:"";
    position:absolute;
    left:-120px;
    bottom:-120px;
    width:380px;
    height:380px;
    border-radius:50%;
    background:radial-gradient(rgba(215,103,47,.25), transparent 70%);
}

.split-gallery-dark::after{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    right:-180px;
    top:-180px;
    border-radius:50%;
    background:radial-gradient(rgba(215,103,47,.18), transparent 70%);
    pointer-events:none;
}

.gallery-dots{
    position:absolute;
    left:80px;
    top:140px;
    width:180px;
    height:180px;
    opacity:.12;
    background-image:radial-gradient(#ffffff 2px, transparent 2px);
    background-size:18px 18px;
    animation:dotsFloat 8s ease-in-out infinite;
}

.gallery-circle-shape{
    position:absolute;
    left:120px;
    bottom:80px;
    width:140px;
    height:140px;
    border:8px solid #D7672F;
    border-radius:50%;
    opacity:.35;
    animation:rotateCircle 15s linear infinite;
}

.gallery-square{
    position:absolute;
    right:120px;
    bottom:120px;
    width:90px;
    height:90px;
    background:#D7672F;
    border-radius:20px;
    opacity:.25;
    animation:rotateSquare 10s linear infinite;
}

.gallery-lines{
    position:absolute;
    right:50px;
    top:150px;
    width:16px;
    height:90px;
    border-radius:50px;
    background:#F2C078;
    box-shadow:35px 0 #F2C078, 70px 0 #F2C078;
    opacity:.4;
    animation:lineMove 3s ease-in-out infinite alternate;
}

.split-gallery-head{
    position:relative;
    z-index:5;
    max-width:760px;
    margin-bottom:70px;
}

.split-gallery-head span{
    display:inline-block;
    padding:10px 22px;
    background:rgba(255,255,255,.08);
    color:#F2C078;
    border:1px solid rgba(255,255,255,.12);
    border-radius:50px;
    font-weight:700;
    margin-bottom:18px;
}

.split-gallery-head h2{
    color:#fff;
    font-size:52px;
    line-height:1.15;
    font-weight:900;
    margin-bottom:20px;
}

.split-gallery-head h2 strong{
    display:block;
    color:#D7672F;
}

.split-gallery-head p{
    color:rgba(255,255,255,.75);
    line-height:1.9;
}

.split-gallery-wrap{
    position:relative;
    z-index:5;
    display:grid;
    grid-template-columns:1.2fr .8fr;
    gap:24px;
}

.split-big-photo,
.split-small-photo{
    position:relative;
    overflow:hidden;
    border-radius:34px;
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 25px 60px rgba(0,0,0,.22);
}

.split-big-photo{
    height:620px;
}

.split-big-photo img,
.split-small-photo img{
    display:block;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.65s ease;
}

.split-big-photo::before,
.split-small-photo::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(transparent, rgba(24,36,63,.78));
    z-index:1;
}

.split-big-photo:hover img,
.split-small-photo:hover img{
    transform:scale(1.08);
}

.split-photo-info{
    position:absolute;
    left:35px;
    bottom:35px;
    z-index:2;
}

.split-photo-info strong{
    display:block;
    color:#F2C078;
    font-size:46px;
    font-weight:900;
    line-height:1;
    margin-bottom:10px;
}

.split-photo-info h3{
    color:#fff;
    font-size:28px;
    font-weight:800;
    margin:0;
}

.split-small-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.split-small-photo{
    height:298px;
}

.split-small-photo span{
    position:absolute;
    left:20px;
    bottom:20px;
    z-index:2;
    width:55px;
    height:55px;
    border-radius:50%;
    background:#D7672F;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

@keyframes rotateCircle{
    from{transform:rotate(0);}
    to{transform:rotate(360deg);}
}

@keyframes rotateSquare{
    from{transform:rotate(0deg);}
    to{transform:rotate(360deg);}
}

@keyframes dotsFloat{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-20px);}
}

@keyframes lineMove{
    from{transform:translateY(0);}
    to{transform:translateY(-18px);}
}

@media(max-width:991px){
    .split-gallery-wrap{
        grid-template-columns:1fr;
    }

    .split-big-photo{
        height:450px;
    }

    .split-gallery-head h2{
        font-size:40px;
    }

    .split-small-photo{
        height:260px;
    }

    .split-gallery-bg{
        font-size:110px;
    }
}

@media(max-width:767px){
    .split-gallery-dark{
        padding:80px 0;
    }

    .split-small-grid{
        grid-template-columns:1fr;
    }

    .split-big-photo,
    .split-small-photo{
        height:300px;
    }

    .split-gallery-head h2{
        font-size:32px;
    }

    .split-gallery-bg{
        font-size:80px;
    }

    .gallery-dots,
    .gallery-circle-shape,
    .gallery-square,
    .gallery-lines{
        opacity:.18;
    }
}

.upgrade-story{
    position:relative;
    padding:120px 0;
    background:#FFFDFB;
    overflow:hidden;
}

.upgrade-story::before{
    content:"PROCESS";
    position:absolute;
    top:20px;
    right:-20px;
    font-size:170px;
    font-weight:900;
    color:rgba(24,36,63,.04);
    line-height:1;
}

.story-wrapper{
    position:relative;
    max-width:1050px;
    margin:auto;
    background:#fff;
    padding:80px;
    border-radius:45px;
    box-shadow:0 25px 70px rgba(24,36,63,.08);
    z-index:2;
}

.story-badge{
    display:inline-block;
    padding:12px 24px;
    background:#F8F4EF;
    color:#D7672F;
    border-radius:50px;
    font-weight:700;
    margin-bottom:25px;
}

.story-wrapper h2{
    font-size:56px;
    line-height:1.15;
    color:#18243F;
    font-weight:900;
    margin-bottom:35px;
}

.story-wrapper h2 span{
    display:block;
    color:#D7672F;
}

.story-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
}

.story-content p{
    color:#6B7280;
    line-height:2;
    font-size:17px;
    margin:0;
    padding:30px;
    background:#F8F4EF;
    border-radius:25px;
    border-left:5px solid #D7672F;
}

/* Shapes */
.shape-1{
    position:absolute;
    width:140px;
    height:140px;
    border:8px solid #D7672F;
    border-radius:50%;
    left:80px;
    top:120px;
    opacity:.2;
    animation:rotateShape 15s linear infinite;
}

.shape-2{
    position:absolute;
    width:90px;
    height:90px;
    background:#F2C078;
    border-radius:24px;
    right:120px;
    bottom:120px;
    opacity:.3;
    animation:floatShape 5s ease-in-out infinite;
}

.story-dots{
    position:absolute;
    left:120px;
    bottom:80px;
    width:180px;
    height:180px;
    opacity:.15;
    background-image:radial-gradient(#18243F 2px, transparent 2px);
    background-size:18px 18px;
}

@keyframes rotateShape{
    from{transform:rotate(0);}
    to{transform:rotate(360deg);}
}

@keyframes floatShape{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-18px);}
}

@media(max-width:991px){
    .story-wrapper{
        padding:50px;
    }

    .story-wrapper h2{
        font-size:40px;
    }

    .story-content{
        grid-template-columns:1fr;
    }
}

@media(max-width:767px){
    .upgrade-story{
        padding:80px 0;
    }

    .story-wrapper{
        padding:35px 25px;
    }

    .story-wrapper h2{
        font-size:32px;
    }

    .upgrade-story::before{
        font-size:80px;
    }
}

.contact-diagonal{
  position:relative;
  padding:120px 0;
  background:#18243F;
  overflow:hidden;
}

.contact-diagonal::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size:70px 70px;
}

.contact-diagonal-bg{
  position:absolute;
  right:-10px;
  top:30px;
  font-size:180px;
  font-weight:900;
  color:rgba(255,255,255,.035);
  line-height:1;
}

.contact-diagonal-wrap{
  position:relative;
  z-index:3;
  background:#FFFDFB;
  border-radius:45px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.22);
}

.contact-diagonal-form{
  padding:55px;
}

.contact-diagonal-form span{
  display:inline-block;
  padding:10px 22px;
  background:#F8F4EF;
  color:#D7672F;
  border-radius:50px;
  font-weight:700;
  margin-bottom:18px;
}

.contact-diagonal-form h2{
  color:#18243F;
  font-size:44px;
  font-weight:900;
  margin-bottom:15px;
}

.contact-diagonal-form p{
  color:#6B7280;
  line-height:1.8;
  margin-bottom:28px;
}

.contact-diagonal-form .cc-fcf-form fieldset{
  border:0;
  padding:0;
  margin:0;
}

.contact-diagonal-form .cc-fcf-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.contact-diagonal-form input,
.contact-diagonal-form select,
.contact-diagonal-form textarea{
  width:100%;
  padding:14px 16px;
  margin-bottom:14px;
  border:1px solid rgba(24,36,63,.12);
  border-radius:14px;
  background:#fff;
  color:#18243F;
  outline:none;
  font-size:15px;
}

.contact-diagonal-form textarea{
  height:115px;
  resize:none;
}

.contact-diagonal-form .cc-fcf-date{
  display:grid;
  grid-template-columns:1fr .7fr .8fr;
  gap:14px;
}

.contact-diagonal-form .cc-fcf-label{
  color:#18243F;
  font-weight:800;
  margin-bottom:8px;
  display:block;
}

.contact-diagonal-form input[type="submit"]{
  background:#D7672F;
  color:#fff;
  border:none;
  border-radius:50px;
  font-weight:800;
  cursor:pointer;
  transition:.3s;
  padding:16px;
  margin-top:8px;
}

.contact-diagonal-form input[type="submit"]:hover{
  background:#18243F;
  transform:translateY(-4px);
}

.contact-diagonal-map{
  position:relative;
  height:100%;
  min-height:760px;
  clip-path:polygon(10% 0,100% 0,100% 100%,0 100%);
}

.contact-diagonal-map iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
  filter:grayscale(.1);
}

.map-floating-box{
  position:absolute;
  left:45px;
  bottom:35px;
  right:35px;
  background:#18243F;
  color:#fff;
  padding:24px;
  border-radius:24px;
  box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.map-floating-box h3{
  margin:0 0 8px;
  color:#F2C078;
  font-weight:900;
}

.map-floating-box p{
  margin:0;
  color:rgba(255,255,255,.78);
}

.contact-diagonal-shape{
  position:absolute;
  z-index:1;
}

.shape-a{
  width:160px;
  height:160px;
  border:8px solid #D7672F;
  border-radius:50%;
  left:80px;
  bottom:80px;
  opacity:.35;
  animation:contactSpin 14s linear infinite;
}

.shape-b{
  width:110px;
  height:110px;
  background:#F2C078;
  border-radius:30px;
  right:90px;
  bottom:120px;
  opacity:.25;
  animation:contactFloat 5s ease-in-out infinite;
}

@keyframes contactSpin{
  from{transform:rotate(0deg);}
  to{transform:rotate(360deg);}
}

@keyframes contactFloat{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-18px);}
}

@media(max-width:991px){
  .contact-diagonal-form{
    padding:40px;
  }

  .contact-diagonal-map{
    clip-path:none;
    min-height:420px;
  }
}

@media(max-width:767px){
  .contact-diagonal{
    padding:80px 0;
  }

  .contact-diagonal-form{
    padding:30px 22px;
  }

  .contact-diagonal-form h2{
    font-size:32px;
  }

  .contact-diagonal-bg{
    font-size:80px;
  }

  .contact-diagonal-form .cc-fcf-grid,
  .contact-diagonal-form .cc-fcf-date{
    grid-template-columns:1fr;
  }
}

.footer-premium{
    position:relative;
    background:#18243F;
    padding:90px 0 0;
    overflow:hidden;
}

.footer-premium::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:
    linear-gradient(
        90deg,
        #D7672F,
        #F2C078,
        #D7672F
    );
}

.footer-texture{
    position:absolute;
    inset:0;

    background-image:
    radial-gradient(
        rgba(255,255,255,.04) 1px,
        transparent 1px
    );

    background-size:22px 22px;
}

.footer-widget{
    position:relative;
    z-index:2;
    margin-bottom:40px;
}

.footer-widget h3,
.footer-widget h4{
    color:#fff;
    margin-bottom:25px;
    font-weight:800;
}

.footer-widget p{
    color:rgba(255,255,255,.75);
    line-height:1.9;
}

.footer-widget ul{
    margin:0;
    padding:0;
    list-style:none;
}

.footer-widget ul li{
    margin-bottom:12px;
}

.footer-widget ul li a{
    color:rgba(255,255,255,.75);
    text-decoration:none;
    transition:.3s;
}

.footer-widget ul li a:hover{
    color:#F2C078;
    padding-left:8px;
}

.footer-contact p{
    display:flex;
    gap:12px;
    align-items:flex-start;
}

.footer-contact i{
    color:#D7672F;
    margin-top:5px;
}

.footer-social{
    display:flex;
    gap:12px;
    margin-top:25px;
}

.footer-social a{
    width:45px;
    height:45px;
    border-radius:50%;
    background:rgba(255,255,255,.08);

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    text-decoration:none;

    transition:.3s;
}

.footer-social a:hover{
    background:#D7672F;
    transform:translateY(-5px);
}

.footer-bottom{
    position:relative;
    z-index:2;

    border-top:1px solid rgba(255,255,255,.08);

    margin-top:20px;

    text-align:center;

    padding:25px 0;
}

.footer-bottom p{
    color:rgba(255,255,255,.65);
    margin:0;
}

@media(max-width:991px){

    .footer-premium{
        text-align:center;
    }

    .footer-social{
        justify-content:center;
    }

    .footer-contact p{
        justify-content:center;
    }
}
.service-areas{
    padding:90px 0;
    background:#111827;
    position:relative;
    overflow:hidden;
}

.service-areas::before{
    content:"AREAS";
    position:absolute;
    right:-20px;
    top:20px;
    font-size:140px;
    font-weight:900;
    color:rgba(255,255,255,.03);
}

.areas-title{
    max-width:750px;
    margin:0 auto 45px;
    position:relative;
    z-index:2;
}

.service-areas-column{
    padding-inline:18px;
}

.areas-title span{
    display:inline-block;
    padding:10px 22px;
    background:rgba(255,255,255,.08);
    color:#F2C078;
    border-radius:50px;
    font-weight:700;
    margin-bottom:18px;
}

.areas-title h2{
    color:#fff;
    font-size:42px;
    font-weight:900;
    margin-bottom:15px;
}

.areas-title p{
    color:rgba(255,255,255,.7);
    line-height:1.8;
}

.areas-grid{
    display:grid;
    grid-template-columns:repeat(3, minmax(0, 1fr));
    gap:15px;
    position:relative;
    z-index:2;
}

.areas-grid a{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:56px;
    text-align:center;
    line-height:1.4;
    white-space:normal;
    word-break:break-word;
    text-decoration:none;
    padding:14px 26px;
    border-radius:50px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    font-weight:600;
    transition:.35s;
}

.areas-grid a:hover{
    background:#D7672F;
    border-color:#D7672F;
    color:#fff;
    transform:translateY(-5px);
}

@media(max-width:767px){

    .service-areas-column{
        padding-inline:12px;
    }

    .areas-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
    }

    .areas-title h2{
        font-size:30px;
    }

    .areas-grid a{
        padding:12px 18px;
        font-size:14px;
    }

    .service-areas::before{
        font-size:70px;
    }
}

.faq-split{
    position:relative;
    padding:120px 0;
    background:#FFFDFB;
    overflow:hidden;
}

.faq-split::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg,#EFE3D8 0%,#EFE3D8 38%,transparent 38%,transparent 100%);
}

.faq-split-bg{
    position:absolute;
    left:-20px;
    top:40px;
    font-size:140px;
    font-weight:900;
    color:rgba(24,36,63,.04);
    line-height:1;
}

.faq-left{
    position:sticky;
    top:100px;
    z-index:3;
    padding:55px 40px;
    background:#18243F;
    border-radius:40px;
    overflow:hidden;
    box-shadow:0 25px 70px rgba(24,36,63,.12);
}

.faq-left::before{
    content:"";
    position:absolute;
    right:-90px;
    bottom:-90px;
    width:260px;
    height:260px;
    border-radius:50%;
    background:radial-gradient(rgba(215,103,47,.35), transparent 70%);
}

.faq-left span{
    display:inline-block;
    padding:10px 22px;
    background:rgba(255,255,255,.08);
    color:#F2C078;
    border-radius:50px;
    font-weight:700;
    margin-bottom:22px;
}

.faq-left h2{
    color:#fff;
    font-size:48px;
    line-height:1.15;
    font-weight:900;
    margin-bottom:22px;
    position:relative;
    z-index:2;
}

.faq-left h2 strong{
    display:block;
    color:#D7672F;
}

.faq-left p{
    color:rgba(255,255,255,.75);
    line-height:1.9;
    position:relative;
    z-index:2;
}

.faq-list{
    position:relative;
    z-index:3;
    background:#fff;
    padding:22px;
    border-radius:35px;
    box-shadow:0 25px 70px rgba(24,36,63,.08);
}

.faq-row{
    border-bottom:1px solid rgba(24,36,63,.1);
}

.faq-row:last-child{
    border-bottom:0;
}

.faq-row button{
    width:100%;
    border:0;
    background:transparent;
    color:#18243F;
    padding:24px 60px 24px 20px;
    text-align:left;
    font-size:17px;
    font-weight:800;
    cursor:pointer;
    position:relative;
}

.faq-row button::after{
    content:"+";
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);
    width:34px;
    height:34px;
    border-radius:50%;
    background:#F8F4EF;
    color:#D7672F;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    transition:.35s;
}

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

.faq-row-answer p{
    color:#6B7280;
    line-height:1.9;
    margin:0;
    padding:0 70px 24px 20px;
}

.faq-row.active button{
    color:#D7672F;
}

.faq-row.active button::after{
    content:"−";
    background:#D7672F;
    color:#fff;
}

.faq-row.active .faq-row-answer{
    max-height:180px;
}

.faq-line-shape{
    position:absolute;
    left:0;
    bottom:90px;
    width:260px;
    height:90px;
    border:6px solid #D7672F;
    border-left:0;
    border-radius:0 50px 50px 0;
    opacity:.35;
}

.faq-dot-shape{
    position:absolute;
    right:80px;
    top:130px;
    width:160px;
    height:160px;
    background-image:radial-gradient(#D7672F 2px, transparent 2px);
    background-size:18px 18px;
    opacity:.18;
    animation:faqDots 6s ease-in-out infinite;
}

@keyframes faqDots{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-18px);}
}

@media(max-width:991px){
    .faq-split::before{
        background:#FFFDFB;
    }

    .faq-left{
        position:relative;
        top:auto;
    }

    .faq-left h2{
        font-size:38px;
    }
}

@media(max-width:767px){
    .faq-split{
        padding:80px 0;
    }

    .faq-left{
        padding:40px 25px;
    }

    .faq-left h2{
        font-size:32px;
    }

    .faq-list{
        padding:10px;
    }

    .faq-row button{
        font-size:15px;
        padding:20px 55px 20px 15px;
    }

    .faq-row-answer p{
        padding:0 15px 22px;
    }

    .faq-split-bg{
        font-size:70px;
    }
    .gd-btn1 {display:none}
}
