/* =========================
   GLOBAL STYLES
========================= */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    scroll-behavior: smooth;
}

body{
    font-family: 'InterRegular', sans-serif;
    background: #ffffff;
    color: #000000;
}

/* =========================
   REUSABLE CONTAINER
========================= */

.container{
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================
   HEADER / NAVBAR
========================= */

.main-header{
    width: 100%;
    background: #000000;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 95px;
}

/* =========================
   LOGO
========================= */

.logo{
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img{
    width: 90px;
    height: 90px;
    object-fit: contain;
    display: block;
}

/* =========================
   NAVIGATION
========================= */

.nav-wrapper{
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links{
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-links li a{
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: 0.3s ease;
    position: relative;
}

.nav-links li a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #fa7c1f;
    transition: 0.3s ease;
}

.nav-links li a:hover{
    color: #fa7c1f;
}

.nav-links li a:hover::after{
    width: 100%;
}

/* =========================
   CTA BUTTON
========================= */

.appointment-btn{
    background: #fa7c1f;
    color: #ffffff;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
    border: 2px solid #fa7c1f;
}

.appointment-btn:hover{
    background: transparent;
    color: #fa7c1f;
}

/* =========================
   MOBILE MENU BUTTON
========================= */

.menu-toggle{
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span{
    width: 30px;
    height: 3px;
    background: #ffffff;
    border-radius: 10px;
    transition: 0.3s ease;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width: 991px){

    .navbar{
        min-height: 85px;
    }

    .logo img{
        width: 75px;
        height: 75px;
    }

    .menu-toggle{
        display: flex;
    }

    .nav-wrapper{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #000000;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 20px;
        gap: 25px;

        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: 0.3s ease;
    }

    .nav-wrapper.active{
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links{
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 22px;
    }

    .nav-links li a{
        font-size: 18px;
    }

    .appointment-btn{
        width: 100%;
        text-align: center;
    }

}

@media(max-width: 576px){

    .logo img{
        width: 68px;
        height: 68px;
    }

    .navbar{
        min-height: 78px;
    }

}

/* =========================
   HERO SECTION
========================= */

.hero-section{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================
   BACKGROUND VIDEO
========================= */

.hero-video{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    z-index: 1;
}

/* =========================
   DARK OVERLAY
========================= */

.hero-overlay{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.55);
    z-index: 2;
}

/* =========================
   HERO CONTENT
========================= */

.hero-content{
    position: relative;
    z-index: 3;

    max-width: 950px;
    margin: 0 auto;

    text-align: center;
}

.hero-content h1{
    color: #ffffff;

    font-size: 68px;
    line-height: 1.15;
    font-weight: 800;

    margin-bottom: 35px;

    text-transform: capitalize;
}

/* =========================
   HERO BUTTON
========================= */

.hero-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #fa7c1f;
    color: #ffffff;

    text-decoration: none;

    padding: 18px 38px;

    border-radius: 12px;

    font-size: 18px;
    font-weight: 600;

    border: 2px solid #fa7c1f;

    transition: 0.3s ease;
}

.hero-btn:hover{
    background: transparent;
    color: #fa7c1f;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media(max-width: 1200px){

    .hero-content h1{
        font-size: 58px;
    }

}

@media(max-width: 991px){

    .hero-section{
        height: 90vh;
    }

    .hero-content h1{
        font-size: 48px;
        line-height: 1.2;
    }

}

@media(max-width: 767px){

    .hero-content h1{
        font-size: 38px;
    }

    .hero-btn{
        padding: 16px 30px;
        font-size: 17px;
    }

}

@media(max-width: 576px){

    .hero-section{
        height: 85vh;
    }

    .hero-content h1{
        font-size: 30px;
        line-height: 1.3;
        margin-bottom: 28px;
    }

    .hero-btn{
        width: 100%;
        max-width: 260px;
    }

}


/* =========================
   SERVICES SECTION
========================= */

.services-section{
    padding: 110px 0;
    background: #ffffff;
}

/* =========================
   SECTION TITLE
========================= */

.section-title{
    text-align: center;
    max-width: 760px;
    margin: 0 auto 70px;
}

.section-title span{
    display: inline-block;

    color: #fa7c1f;
    background: rgba(250, 124, 31, 0.10);

    padding: 10px 18px;
    border-radius: 50px;

    font-size: 15px;
    font-weight: 600;

    margin-bottom: 22px;
}

.section-title h2{
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;

    margin-bottom: 22px;
}

.section-title p{
    font-size: 19px;
    line-height: 1.8;
    color: #555555;
}

/* =========================
   SERVICES GRID
========================= */

.services-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* =========================
   SERVICE CARD
========================= */

.service-card{
    background: #ffffff;

    border-radius: 24px;

    overflow: hidden;

    box-shadow: 0 10px 35px rgba(0,0,0,0.06);

    transition: 0.4s ease;

    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover{
    transform: translateY(-10px);

    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* =========================
   SERVICE IMAGE
========================= */

.service-image{
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.service-image img{
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.5s ease;
}

.service-card:hover .service-image img{
    transform: scale(1.08);
}

/* =========================
   SERVICE CONTENT
========================= */

.service-content{
    padding: 32px;
}

.service-content h3{
    font-size: 30px;
    font-weight: 700;

    margin-bottom: 18px;
}

.service-content p{
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media(max-width: 1200px){

    .section-title h2{
        font-size: 46px;
    }

    .service-content h3{
        font-size: 26px;
    }

}

@media(max-width: 991px){

    .services-section{
        padding: 90px 0;
    }

    .services-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title h2{
        font-size: 40px;
    }

}

@media(max-width: 767px){

    .services-grid{
        grid-template-columns: 1fr;
    }

    .section-title{
        margin-bottom: 55px;
    }

    .section-title h2{
        font-size: 34px;
    }

    .section-title p{
        font-size: 17px;
    }

    .service-content{
        padding: 28px;
    }

}

@media(max-width: 576px){

    .services-section{
        padding: 75px 0;
    }

    .section-title h2{
        font-size: 30px;
    }

    .service-image{
        height: 230px;
    }

    .service-content h3{
        font-size: 24px;
    }

}



/* =========================
   PROCESS SECTION
========================= */

.process-section{
    padding: 110px 0;
    background: #0d0d0d;
    overflow: hidden;
}

/* =========================
   PROCESS SECTION TITLE
========================= */

.process-section .section-title h2,
.process-section .section-title p{
    color: #ffffff;
}

.process-section .section-title p{
    color: rgba(255,255,255,0.70);
}

/* =========================
   PROCESS WRAPPER
========================= */

.process-wrapper{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* =========================
   PROCESS CARD
========================= */

.process-card{
    position: relative;

    background: #141414;

    padding: 40px 35px;

    border-radius: 24px;

    border: 1px solid rgba(255,255,255,0.06);

    transition: 0.4s ease;

    overflow: hidden;
}

.process-card::before{
    content: '';

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #fa7c1f;

    transform: scaleX(0);
    transform-origin: left;

    transition: 0.4s ease;
}

.process-card:hover::before{
    transform: scaleX(1);
}

.process-card:hover{
    transform: translateY(-10px);

    border-color: rgba(250,124,31,0.35);

    box-shadow: 0 20px 45px rgba(0,0,0,0.35);
}

/* =========================
   PROCESS NUMBER
========================= */

.process-number{
    width: 72px;
    height: 72px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(250,124,31,0.12);

    color: #fa7c1f;

    border-radius: 18px;

    font-size: 28px;
    font-weight: 800;

    margin-bottom: 28px;

    border: 1px solid rgba(250,124,31,0.18);
}

/* =========================
   PROCESS CONTENT
========================= */

.process-card h3{
    color: #ffffff;

    font-size: 30px;
    line-height: 1.3;

    font-weight: 700;

    margin-bottom: 18px;
}

.process-card p{
    color: rgba(255,255,255,0.72);

    font-size: 17px;
    line-height: 1.9;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media(max-width: 1200px){

    .process-card h3{
        font-size: 26px;
    }

}

@media(max-width: 991px){

    .process-section{
        padding: 90px 0;
    }

    .process-wrapper{
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width: 767px){

    .process-wrapper{
        grid-template-columns: 1fr;
    }

    .process-card{
        padding: 35px 28px;
    }

}

@media(max-width: 576px){

    .process-section{
        padding: 75px 0;
    }

    .process-card h3{
        font-size: 24px;
    }

    .process-number{
        width: 64px;
        height: 64px;

        font-size: 24px;
    }

}




/* =========================
   FAQ SECTION
========================= */

.faq-section{
    padding: 110px 0;
    background: #ffffff;
}

/* =========================
   FAQ WRAPPER
========================= */

.faq-wrapper{
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

/* =========================
   LEFT CONTENT
========================= */

.faq-tag{
    display: inline-block;

    background: rgba(250,124,31,0.10);
    color: #fa7c1f;

    padding: 10px 18px;

    border-radius: 50px;

    font-size: 15px;
    font-weight: 600;

    margin-bottom: 24px;
}

.faq-left h2{
    font-size: 54px;
    line-height: 1.2;
    font-weight: 800;

    margin-bottom: 25px;
}

.faq-left p{
    font-size: 18px;
    line-height: 1.9;
    color: #555555;

    margin-bottom: 35px;
}

.faq-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #fa7c1f;
    color: #ffffff;

    text-decoration: none;

    padding: 16px 34px;

    border-radius: 12px;

    font-size: 17px;
    font-weight: 600;

    border: 2px solid #fa7c1f;

    transition: 0.3s ease;
}

.faq-btn:hover{
    background: transparent;
    color: #fa7c1f;
}

/* =========================
   FAQ ACCORDION
========================= */

.faq-right{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item{
    background: #ffffff;

    border: 1px solid rgba(0,0,0,0.08);

    border-radius: 22px;

    padding: 28px 30px;

    transition: 0.3s ease;

    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}

.faq-item.active{
    border-color: rgba(250,124,31,0.35);

    box-shadow: 0 15px 40px rgba(250,124,31,0.08);
}

/* =========================
   FAQ QUESTION
========================= */

.faq-question{
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    cursor: pointer;
}

.faq-question h3{
    font-size: 24px;
    line-height: 1.5;
    font-weight: 700;
}

.faq-icon{
    min-width: 42px;
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(250,124,31,0.10);

    color: #fa7c1f;

    font-size: 24px;
    font-weight: 600;

    transition: 0.3s ease;
}

.faq-item.active .faq-icon{
    background: #fa7c1f;
    color: #ffffff;
    transform: rotate(45deg);
}

/* =========================
   FAQ ANSWER
========================= */

.faq-answer{
    max-height: 0;
    overflow: hidden;

    transition: all 0.4s ease;
}

.faq-answer p{
    padding-top: 22px;

    color: #666666;

    font-size: 17px;
    line-height: 1.9;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media(max-width: 1200px){

    .faq-left h2{
        font-size: 46px;
    }

}

@media(max-width: 991px){

    .faq-section{
        padding: 90px 0;
    }

    .faq-wrapper{
        grid-template-columns: 1fr;
        gap: 50px;
    }

}

@media(max-width: 767px){

    .faq-left h2{
        font-size: 38px;
    }

    .faq-question h3{
        font-size: 21px;
    }

}

@media(max-width: 576px){

    .faq-section{
        padding: 75px 0;
    }

    .faq-left h2{
        font-size: 31px;
    }

    .faq-item{
        padding: 24px 22px;
    }

    .faq-question h3{
        font-size: 19px;
    }

    .faq-answer p{
        font-size: 16px;
    }

}




/* =========================
   TESTIMONIAL SECTION
========================= */

.testimonial-section{
    padding: 110px 0;
    background: #0d0d0d;
    overflow: hidden;
}

/* =========================
   TOP SECTION
========================= */

.testimonial-top{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 65px;
}

.section-heading span{
    display: inline-block;

    background: rgba(250,124,31,0.12);
    color: #fa7c1f;

    padding: 10px 18px;

    border-radius: 50px;

    font-size: 15px;
    font-weight: 600;

    margin-bottom: 22px;
}

.section-heading h2{
    color: #ffffff;

    font-size: 54px;
    line-height: 1.2;

    font-weight: 800;
}

/* =========================
   NAV BUTTONS
========================= */

.testimonial-nav{
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-btn{
    width: 56px;
    height: 56px;

    border-radius: 50%;

    border: none;

    background: #1b1b1b;
    color: #ffffff;

    font-size: 22px;

    cursor: pointer;

    transition: 0.3s ease;
}

.testimonial-btn:hover{
    background: #fa7c1f;
    transform: translateY(-3px);
}

/* =========================
   SLIDER
========================= */

.testimonial-slider{
    overflow: hidden;
}

.testimonial-track{
    display: flex;
    gap: 30px;

    transition: transform 0.5s ease;
}

/* =========================
   TESTIMONIAL CARD
========================= */

.testimonial-card{
    min-width: calc(33.333% - 20px);

    background: #141414;

    border-radius: 24px;

    padding: 35px;

    border: 1px solid rgba(255,255,255,0.06);

    transition: 0.3s ease;
}

.testimonial-card:hover{
    transform: translateY(-8px);

    border-color: rgba(250,124,31,0.30);

    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
}

/* =========================
   CLIENT INFO
========================= */

.client-info{
    display: flex;
    align-items: center;

    gap: 18px;

    margin-bottom: 28px;
}

.client-image{
    width: 75px;
    height: 75px;

    border-radius: 50%;

    overflow: hidden;

    flex-shrink: 0;
}

.client-image img{
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.client-details h3{
    color: #ffffff;

    font-size: 24px;
    font-weight: 700;

    margin-bottom: 6px;
}

.client-details span{
    color: #fa7c1f;

    font-size: 15px;
    font-weight: 500;
}

/* =========================
   TESTIMONIAL TEXT
========================= */

.testimonial-card p{
    color: rgba(255,255,255,0.75);

    font-size: 17px;
    line-height: 1.9;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media(max-width: 1200px){

    .section-heading h2{
        font-size: 46px;
    }

}

@media(max-width: 991px){

    .testimonial-section{
        padding: 90px 0;
    }

    .testimonial-card{
        min-width: calc(50% - 15px);
    }

}

@media(max-width: 767px){

    .testimonial-top{
        flex-direction: column;
        align-items: flex-start;
    }

    .section-heading h2{
        font-size: 38px;
    }

    .testimonial-card{
        min-width: 100%;
    }

}

@media(max-width: 576px){

    .testimonial-section{
        padding: 75px 0;
    }

    .section-heading h2{
        font-size: 31px;
    }

    .testimonial-card{
        padding: 28px;
    }

    .client-details h3{
        font-size: 21px;
    }

}



/* =========================
   CONTACT SECTION
========================= */

.contact-section{
    padding: 110px 0;
    background: #ffffff;
}

/* =========================
   CONTACT WRAPPER
========================= */

.contact-wrapper{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* =========================
   LEFT CONTENT
========================= */

.contact-tag{
    display: inline-block;

    background: rgba(250,124,31,0.10);
    color: #fa7c1f;

    padding: 10px 18px;

    border-radius: 50px;

    font-size: 15px;
    font-weight: 600;

    margin-bottom: 24px;
}

.contact-left h2{
    font-size: 54px;
    line-height: 1.2;
    font-weight: 800;

    margin-bottom: 24px;
}

.contact-left p{
    font-size: 18px;
    line-height: 1.9;
    color: #555555;

    margin-bottom: 40px;
}

/* =========================
   CONTACT INFO
========================= */

.contact-info{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item{
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon{
    width: 65px;
    height: 65px;

    min-width: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(250,124,31,0.10);

    border-radius: 18px;

    font-size: 28px;
}

.contact-text h3{
    font-size: 24px;
    font-weight: 700;

    margin-bottom: 8px;
}

.contact-text a,
.contact-text p{
    color: #555555;

    text-decoration: none;

    font-size: 17px;
    line-height: 1.8;
}

/* =========================
   FORM BOX
========================= */

.contact-form-box{
    background: #0d0d0d;

    padding: 45px;

    border-radius: 28px;

    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

/* =========================
   FORM
========================= */

.contact-form{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* =========================
   FORM GROUP
========================= */

.form-group{
    display: flex;
    flex-direction: column;
}

.form-group label{
    color: #ffffff;

    font-size: 16px;
    font-weight: 600;

    margin-bottom: 12px;
}

/* =========================
   INPUTS
========================= */

.form-group input,
.form-group select{
    width: 100%;

    height: 60px;

    background: #181818;

    border: 1px solid rgba(255,255,255,0.08);

    border-radius: 14px;

    padding: 0 18px;

    color: #ffffff;

    font-size: 16px;
    font-family: 'Inter', sans-serif;

    outline: none;

    transition: 0.3s ease;
}

.form-group input:focus,
.form-group select:focus{
    border-color: #fa7c1f;
}

/* =========================
   PLACEHOLDER
========================= */

.form-group input::placeholder{
    color: rgba(255,255,255,0.45);
}

/* =========================
   BUTTON
========================= */

.contact-submit-btn{
    width: 100%;

    height: 62px;

    background: #fa7c1f;
    color: #ffffff;

    border: 2px solid #fa7c1f;

    border-radius: 14px;

    font-size: 17px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.3s ease;

    margin-top: 10px;
}

.contact-submit-btn:hover{
    background: transparent;
    color: #fa7c1f;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media(max-width: 1200px){

    .contact-left h2{
        font-size: 46px;
    }

}

@media(max-width: 991px){

    .contact-section{
        padding: 90px 0;
    }

    .contact-wrapper{
        grid-template-columns: 1fr;
    }

}

@media(max-width: 767px){

    .contact-left h2{
        font-size: 38px;
    }

    .contact-form-box{
        padding: 35px;
    }

}

@media(max-width: 576px){

    .contact-section{
        padding: 75px 0;
    }

    .contact-left h2{
        font-size: 31px;
    }

    .contact-form-box{
        padding: 28px 22px;
        border-radius: 22px;
    }

    .contact-text h3{
        font-size: 21px;
    }

    .contact-icon{
        width: 58px;
        height: 58px;

        min-width: 58px;

        font-size: 24px;
    }

}


/* =========================
   MAP SECTION
========================= */

.map-section{
    width: 100%;
    overflow: hidden;
}

.map-section iframe{
    width: 100%;
    height: 550px;

    border: none;

    display: block;

    filter: grayscale(0.1) contrast(1.05);
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media(max-width: 991px){

    .map-section iframe{
        height: 450px;
    }

}

@media(max-width: 576px){

    .map-section iframe{
        height: 350px;
    }

}


/* =========================
   FOOTER SECTION
========================= */

.footer-section{
    background: #050505;
    padding-top: 90px;
}

/* =========================
   FOOTER WRAPPER
========================= */

.footer-wrapper{
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 50px;

    padding-bottom: 60px;
}

/* =========================
   FOOTER LOGO
========================= */

.footer-logo{
    display: inline-block;
    margin-bottom: 28px;
}

.footer-logo img{
    width: 100px;
    height: 100px;

    object-fit: contain;
}

/* =========================
   FOOTER ABOUT
========================= */

.footer-about p{
    color: rgba(255,255,255,0.72);

    font-size: 17px;
    line-height: 1.9;

    max-width: 380px;
}

/* =========================
   FOOTER COLUMN
========================= */

.footer-column h3{
    color: #ffffff;

    font-size: 26px;
    font-weight: 700;

    margin-bottom: 28px;
}

.footer-column ul{
    list-style: none;
}

.footer-column ul li{
    margin-bottom: 18px;
}

.footer-column ul li a{
    color: rgba(255,255,255,0.72);

    text-decoration: none;

    font-size: 17px;

    transition: 0.3s ease;
}

.footer-column ul li a:hover{
    color: #fa7c1f;
    padding-left: 5px;
}

/* =========================
   CONTACT LIST
========================= */

.footer-contact li{
    color: rgba(255,255,255,0.72);

    font-size: 17px;
    line-height: 1.8;
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.08);

    padding: 28px 0;

    text-align: center;
}

.footer-bottom p{
    color: rgba(255,255,255,0.60);

    font-size: 16px;
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media(max-width: 1200px){

    .footer-wrapper{
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width: 767px){

    .footer-section{
        padding-top: 75px;
    }

    .footer-wrapper{
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-column h3{
        font-size: 23px;
    }

}

@media(max-width: 576px){

    .footer-about p,
    .footer-column ul li a,
    .footer-contact li{
        font-size: 16px;
    }

}