/*======================================================
        H.M. PREMATHILAKA
        PREMIUM SERVICES PAGE CSS
        PART 1
======================================================*/


/*======================================================
                    RESET
======================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#222;
    overflow-x:hidden;
}

:root{

    --primary:#0F8B8D;
    --primary-dark:#075d60;
    --secondary:#18A0A3;

    --gold:#FFD54F;
    --gold-dark:#FFB300;

    --white:#ffffff;

    --dark:#083E3F;

    --text:#444;

    --light:#f7fbfb;

    --shadow:
        0 15px 40px rgba(0,0,0,.12);
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}


/*======================================================
                    HEADER
======================================================*/

.header{

    position:sticky;

    top:0;

    z-index:999;

    background:

    linear-gradient(

        135deg,

        var(--primary),

        var(--secondary)

    );

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 8%;

    box-shadow:

        0 10px 30px rgba(0,0,0,.12);

}


/*======================================================
                TEXT BRANDING
======================================================*/

.logo{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.logo-text{
    display:flex;
    flex-direction:column;
    line-height:1.2;
}

.brand-title{
    font-size:28px;
    font-weight:800;
    color:#ffffff;
    letter-spacing:.5px;
    transition:.3s;
}

.brand-tagline{
    margin-top:5px;
    font-size:12px;
    color:#FFD54F;
    font-weight:500;
    letter-spacing:.8px;
}

.logo:hover .brand-title{
    color:#FFD54F;
}

.logo:hover .brand-tagline{
    color:#ffffff;
}


/*======================================================
                PREMIUM NAVBAR
======================================================*/

nav{
    display:flex;
    align-items:center;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:30px;
    margin:0;
    padding:0;
}

.nav-links li{
    list-style:none;
}

.nav-links a{

    position:relative;

    display:flex;
    align-items:center;
    gap:8px;

    padding:10px 18px;

    color:#fff;
    font-size:15px;
    font-weight:600;
    letter-spacing:.3px;

    border-radius:20px;

    transition:.35s ease;

}

.nav-links a i{

    color:#FFD54F;
    font-size:15px;

}

.nav-links a:hover{

    color:#FFD54F;

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    box-shadow:
        0 8px 20px rgba(0,0,0,.12);

}

.nav-links a.active{

    color:#FFD54F;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

}


/* Gold Line */

.nav-links a::after{

    content:"";

    position:absolute;

    left:50%;
    bottom:2px;

    transform:translateX(-50%);

    width:0;
    height:3px;

    border-radius:20px;

    background:#FFD54F;

    transition:.35s ease;

}

.nav-links a:hover::after,
.nav-links a.active::after{

    width:60px;

}


/*======================================================
        LANGUAGE SWITCHER
======================================================*/

.language-switcher{

    display:flex;

    align-items:center;

    gap:10px;

    margin-left:25px;

}

.language-switcher a{

    position:relative;

    overflow:hidden;

    color:#fff;

    font-size:13px;

    font-weight:600;

    padding:8px 16px;

    border-radius:30px;

    border:1px solid rgba(255,255,255,.18);

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(15px);

    transition:.35s;

}

.language-switcher a:hover{

    background:#FFD54F;

    color:#083E3F;

    transform:
        translateY(-3px)
        scale(1.05);

}

.active-lang{

    background:#FFD54F !important;

    color:#083E3F !important;

    font-weight:700;

}


/*======================================================
                MOBILE MENU BUTTON
======================================================*/

.menu-toggle{

    display:none;

    font-size:32px;

    color:white;

    cursor:pointer;

}


/*======================================================
                PART 1 RESPONSIVE
======================================================*/

@media(max-width:1200px){

    .header{

        padding-left:3%;

        padding-right:3%;

    }

    .brand-title{

        font-size:22px;

    }

    .brand-tagline{

        font-size:9px;

    }

    .nav-links a{

        padding:9px 10px;

        font-size:13px;

    }

    .language-switcher{

        margin-left:10px;

        margin-right:10px;

    }

}


@media(max-width:992px){

    .desktop-menu{

        display:none;

    }

    .language-switcher{

        margin-left:auto;

    }

    .menu-toggle{

        display:block;

        margin-left:12px;

    }

}


@media(max-width:768px){

    .header{

        min-height:78px;

        padding:12px 20px;

    }

    .brand-title{

        font-size:19px;

    }

    .brand-tagline{

        font-size:8px;

        letter-spacing:.4px;

        white-space:normal;

        max-width:220px;

    }

    .language-switcher{

        gap:5px;

        margin-right:8px;

    }

    .language-switcher a{

        min-width:38px;

        padding:7px 9px;

        font-size:11px;

    }

    .menu-toggle{

        font-size:27px;

    }

}
/*======================================================
                    SERVICES HERO
                    PART 2
======================================================*/

.services-hero{

    position:relative;

    min-height:600px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:100px 8%;

    text-align:center;

    color:#fff;

    overflow:hidden;

    background:
        linear-gradient(
            135deg,
            #083E3F,
            #0F8B8D,
            #18A0A3
        );

}


/*======================================================
                DECORATIVE GLOW
======================================================*/

.services-hero::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    top:-230px;

    right:-160px;

    border-radius:50%;

    background:
        rgba(255,213,79,.10);

    filter:blur(5px);

}


.services-hero::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    bottom:-220px;

    left:-150px;

    border-radius:50%;

    background:
        rgba(255,255,255,.07);

    filter:blur(5px);

}


/*======================================================
                    HERO OVERLAY
======================================================*/

.services-hero .hero-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            135deg,
            rgba(8,62,63,.30),
            rgba(15,139,141,.12)
        );

}


/*======================================================
                    HERO CONTENT
======================================================*/

.services-hero .hero-content{

    position:relative;

    z-index:2;

    max-width:950px;

    margin:auto;

}


/*======================================================
                    HERO TAG
======================================================*/

.services-hero .hero-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:11px 22px;

    margin-bottom:25px;

    color:var(--dark);

    background:
        linear-gradient(
            135deg,
            var(--gold),
            var(--gold-dark)
        );

    border-radius:40px;

    font-size:14px;

    font-weight:700;

    box-shadow:
        0 12px 30px rgba(0,0,0,.18);

}


.services-hero .hero-tag i{

    font-size:16px;

}


/*======================================================
                    HERO HEADING
======================================================*/

.services-hero .hero-content h1{

    margin-bottom:15px;

    color:#fff;

    font-size:64px;

    font-weight:800;

    line-height:1.15;

    text-shadow:
        0 8px 25px rgba(0,0,0,.18);

}


.services-hero .hero-content h1 span{

    display:block;

    margin-top:8px;

    color:var(--gold);

}


/*======================================================
                    HERO SUBTITLE
======================================================*/

.services-hero .hero-subtitle{

    color:#fff;

    font-size:22px;

    font-weight:600;

    letter-spacing:1px;

}


/*======================================================
                    HERO LINE
======================================================*/

.services-hero .hero-line{

    width:100px;

    height:5px;

    margin:25px auto;

    border-radius:50px;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            var(--gold-dark)
        );

    box-shadow:
        0 0 15px rgba(255,213,79,.35);

}


/*======================================================
                    HERO DESCRIPTION
======================================================*/

.services-hero .hero-description{

    max-width:780px;

    margin:0 auto;

    color:rgba(255,255,255,.90);

    font-size:17px;

    line-height:1.9;

}


/*======================================================
            FULL DESKTOP HERO
======================================================*/

@media(min-width:993px){

    .services-hero{

        min-height:calc(110vh - 92px);

        height:calc(100vh - 92px);

        padding:60px 8%;

        display:flex;

        align-items:center;

        justify-content:center;

    }

    .services-hero .hero-content{

        width:100%;

        max-width:950px;

        margin:auto;

        transform:translateY(-10px);

    }

    .services-hero .hero-content h1{

        font-size:64px;

        margin-bottom:14px;

    }

}


/*======================================================
                    HERO RESPONSIVE
======================================================*/

@media(max-width:992px){

    .services-hero{

        min-height:540px;

        height:auto;

        padding:90px 25px;

    }

    .services-hero .hero-content h1{

        font-size:52px;

    }

}


@media(max-width:768px){

    .services-hero{

        min-height:500px;

        padding:80px 20px;

    }

    .services-hero .hero-content h1{

        font-size:38px;

    }

    .services-hero .hero-subtitle{

        font-size:18px;

    }

    .services-hero .hero-description{

        font-size:15px;

        line-height:1.8;

    }

}
/*======================================================
                SERVICES INTRODUCTION
                PART 3
======================================================*/

.services-intro{

    width:100%;

    padding:110px 8%;

    background:#ffffff;

}


/*======================================================
                    CONTAINER
======================================================*/

.services-intro .container{

    width:min(1300px,92%);

    margin:auto;

}


/*======================================================
                    SECTION TITLE
======================================================*/

.services-intro .section-title{

    text-align:center;

    margin-bottom:65px;

}


.services-intro .section-title span{

    display:inline-block;

    color:var(--primary);

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:10px;

}


.services-intro .section-title h2{

    color:var(--dark);

    font-size:44px;

    font-weight:800;

    line-height:1.25;

}


.services-intro .title-line{

    width:100px;

    height:5px;

    margin:18px auto 0;

    border-radius:50px;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            var(--gold-dark)
        );

}


/*======================================================
                    INTRO CONTENT
======================================================*/

.services-intro .intro-content{

    max-width:900px;

    margin:auto;

    text-align:center;

}


.services-intro .intro-content p{

    color:#555;

    font-size:17px;

    line-height:2;

    margin-bottom:22px;

}


.services-intro .intro-content p:last-child{

    margin-bottom:0;

}


/*======================================================
                    RESPONSIVE
======================================================*/

@media(max-width:768px){

    .services-intro{

        padding:85px 20px;

    }

    .services-intro .section-title{

        margin-bottom:45px;

    }

    .services-intro .section-title h2{

        font-size:32px;

    }

    .services-intro .intro-content p{

        font-size:15px;

        line-height:1.85;

    }

}/*======================================================
                MAIN SERVICES
                PART 4
======================================================*/

.services-main{

    width:100%;

    padding:120px 8%;

    background:
        linear-gradient(
            180deg,
            #f7fbfb,
            #ffffff
        );

}


/*======================================================
                    SECTION TITLE
======================================================*/

.services-main .section-title{

    text-align:center;

    margin-bottom:65px;

}

.services-main .section-title span{

    display:inline-block;

    color:var(--primary);

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:10px;

}

.services-main .section-title h2{

    color:var(--dark);

    font-size:44px;

    font-weight:800;

    line-height:1.25;

}

.services-main .title-line{

    width:100px;

    height:5px;

    margin:18px auto 0;

    border-radius:50px;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            var(--gold-dark)
        );

}


/*======================================================
                    SERVICES GRID
======================================================*/

.services-grid{

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:30px;

    max-width:1250px;

    margin:0 auto;

}


/*======================================================
                    SERVICE CARD
======================================================*/

.service-card{

    position:relative;

    padding:42px 32px;

    border-radius:26px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f7fbfb
        );

    border:1px solid
        rgba(15,139,141,.10);

    box-shadow:
        0 18px 45px rgba(0,0,0,.08);

    overflow:hidden;

    transition:.4s ease;

}


/* Gold top line */

.service-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            var(--gold-dark)
        );

}


/* Hover */

.service-card:hover{

    transform:
        translateY(-10px);

    box-shadow:
        0 28px 60px rgba(0,0,0,.13);

    border-color:
        rgba(255,213,79,.55);

}


/*======================================================
                    SERVICE ICON
======================================================*/

.service-icon{

    width:78px;

    height:78px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:22px;

    border-radius:50%;

    color:var(--gold);

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    border:4px solid
        rgba(255,213,79,.35);

    font-size:31px;

    box-shadow:
        0 12px 30px
        rgba(15,139,141,.20);

    transition:.35s ease;

}


.service-card:hover
.service-icon{

    transform:
        rotate(5deg)
        scale(1.08);

    background:
        linear-gradient(
            135deg,
            var(--gold),
            var(--gold-dark)
        );

    color:var(--dark);

}


/*======================================================
                    SERVICE NUMBER
======================================================*/

.service-number{

    position:absolute;

    top:25px;

    right:25px;

    color:
        rgba(15,139,141,.10);

    font-size:42px;

    font-weight:800;

}


/*======================================================
                    SERVICE TITLE
======================================================*/

.service-card h3{

    position:relative;

    margin-bottom:15px;

    color:var(--primary);

    font-size:25px;

    font-weight:700;

    line-height:1.3;

}


/*======================================================
                    SERVICE TEXT
======================================================*/

.service-card > p{

    color:#666;

    font-size:15px;

    line-height:1.85;

    margin-bottom:22px;

}


/*======================================================
                    SERVICE LIST
======================================================*/

.service-card ul{

    margin-bottom:28px;

}

.service-card li{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:12px;

    color:#555;

    font-size:14px;

}

.service-card li i{

    color:var(--primary);

    font-size:13px;

}


/*======================================================
                    SERVICE BUTTON
======================================================*/

.service-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    padding:13px 20px;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    border:2px solid var(--primary);

    border-radius:12px;

    font-size:13px;

    font-weight:700;

    box-shadow:
        0 10px 25px
        rgba(15,139,141,.16);

    transition:.35s ease;

}

.service-btn:hover{

    background:var(--gold);

    color:var(--dark);

    border-color:var(--gold);

    transform:
        translateY(-4px)
        scale(1.02);

    box-shadow:
        0 15px 30px
        rgba(0,0,0,.16);

}

.service-btn i{

    color:var(--gold);

}

.service-btn:hover i{

    color:var(--dark);

}


/*======================================================
                    RESPONSIVE
======================================================*/

@media(max-width:1200px){

    .services-grid{

        grid-template-columns:
            repeat(2,1fr);

    }

}


@media(max-width:768px){

    .services-main{

        padding:85px 20px;

    }

    .services-main .section-title{

        margin-bottom:45px;

    }

    .services-main .section-title h2{

        font-size:32px;

    }

    .services-grid{

        grid-template-columns:1fr;

    }

    .service-card{

        padding:38px 25px;

    }

    .service-card h3{

        font-size:22px;

    }

}/*======================================================
                SERVICE PROCESS
                PART 5
======================================================*/

.service-process{

    width:100%;

    padding:120px 8%;

    background:#ffffff;

}


/*======================================================
                    SECTION TITLE
======================================================*/

.service-process .section-title{

    text-align:center;

    margin-bottom:65px;

}

.service-process .section-title span{

    display:inline-block;

    color:var(--primary);

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:10px;

}

.service-process .section-title h2{

    color:var(--dark);

    font-size:44px;

    font-weight:800;

    line-height:1.25;

}

.service-process .title-line{

    width:100px;

    height:5px;

    margin:18px auto 0;

    border-radius:50px;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            var(--gold-dark)
        );

}


/*======================================================
                    PROCESS GRID
======================================================*/

.process-grid{

    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:28px;

    max-width:1250px;

    margin:0 auto;

}


/*======================================================
                    PROCESS CARD
======================================================*/

.process-card{

    position:relative;

    padding:42px 25px;

    text-align:center;

    border-radius:26px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f7fbfb
        );

    border:1px solid
        rgba(15,139,141,.10);

    box-shadow:
        0 18px 45px rgba(0,0,0,.08);

    transition:.4s ease;

}

.process-card:hover{

    transform:
        translateY(-10px);

    box-shadow:
        0 28px 60px rgba(0,0,0,.13);

    border-color:
        rgba(255,213,79,.55);

}


/*======================================================
                    PROCESS NUMBER
======================================================*/

.process-number{

    position:absolute;

    top:18px;

    right:20px;

    color:
        rgba(15,139,141,.14);

    font-size:25px;

    font-weight:800;

}


/*======================================================
                    PROCESS ICON
======================================================*/

.process-card > i{

    width:75px;

    height:75px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 22px;

    border-radius:50%;

    color:var(--gold);

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    border:4px solid
        rgba(255,213,79,.35);

    font-size:30px;

    transition:.35s ease;

}

.process-card:hover > i{

    background:
        linear-gradient(
            135deg,
            var(--gold),
            var(--gold-dark)
        );

    color:var(--dark);

    transform:
        rotate(5deg)
        scale(1.08);

}


/*======================================================
                    PROCESS TITLE
======================================================*/

.process-card h3{

    margin-bottom:15px;

    color:var(--primary);

    font-size:25px;

    font-weight:700;

}


/*======================================================
                    PROCESS TEXT
======================================================*/

.process-card p{

    color:#666;

    font-size:15px;

    line-height:1.85;

}


/*======================================================
                    RESPONSIVE
======================================================*/

@media(max-width:1200px){

    .process-grid{

        grid-template-columns:
            repeat(2,1fr);

    }

}


@media(max-width:768px){

    .service-process{

        padding:85px 20px;

    }

    .service-process .section-title{

        margin-bottom:45px;

    }

    .service-process .section-title h2{

        font-size:32px;

    }

    .process-grid{

        grid-template-columns:1fr;

    }

    .process-card{

        padding:38px 25px;

    }

    .process-card h3{

        font-size:22px;

    }

}/*======================================================
                    SERVICES CTA
                    PART 6
======================================================*/

.services-cta{

    width:100%;

    padding:110px 8%;

    position:relative;

    overflow:hidden;

    text-align:center;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            #083E3F 0%,
            #0F8B8D 55%,
            #18A0A3 100%
        );

}


/*======================================================
                BACKGROUND GLOW
======================================================*/

.services-cta::before{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    top:-220px;

    right:-150px;

    border-radius:50%;

    background:
        rgba(255,213,79,.12);

    filter:blur(5px);

}

.services-cta::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    bottom:-200px;

    left:-130px;

    border-radius:50%;

    background:
        rgba(255,255,255,.07);

}


/*======================================================
                    CTA CONTENT
======================================================*/

.services-cta .cta-content{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

}


/*======================================================
                    CTA SMALL TITLE
======================================================*/

.services-cta .cta-content > span{

    display:inline-block;

    margin-bottom:12px;

    color:var(--gold);

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}


/*======================================================
                    CTA HEADING
======================================================*/

.services-cta .cta-content h2{

    margin-bottom:22px;

    color:#FFD54F;

    font-size:48px;

    font-weight:800;

    line-height:1.25;

    text-shadow:
        0 8px 25px rgba(0,0,0,.18);

}


/*======================================================
                    CTA DESCRIPTION
======================================================*/

.services-cta .cta-content p{

    max-width:760px;

    margin:0 auto 38px;

    color:rgba(255,255,255,.92);

    font-size:18px;

    line-height:1.9;

}


/*======================================================
                    CTA BUTTONS
======================================================*/

.services-cta .cta-buttons{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}


/*======================================================
                    PREMIUM BUTTON
======================================================*/

.services-cta .premium-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    min-width:190px;

    padding:16px 28px;

    border-radius:16px;

    border:2px solid #FFD54F;

    background:
        linear-gradient(
            135deg,
            #0F8B8D,
            #18A0A3
        );

    color:#fff;

    font-weight:700;

    box-shadow:
        0 12px 30px rgba(0,0,0,.18);

    transition:.35s ease;

}


.services-cta .premium-btn:hover{

    transform:
        translateY(-6px)
        scale(1.03);

    background:#FFD54F;

    color:#083E3F;

    box-shadow:
        0 18px 40px rgba(0,0,0,.25);

}


/*======================================================
                    BUTTON ICON
======================================================*/

.services-cta .premium-btn i{

    color:#FFD54F;

}

.services-cta .premium-btn:hover i{

    color:#083E3F;

}


/*======================================================
                    SECONDARY BUTTON
======================================================*/

.services-cta .premium-btn.secondary{

    background:
        rgba(255,255,255,.08);

    color:#fff;

    backdrop-filter:blur(12px);

}

.services-cta .premium-btn.secondary:hover{

    background:#FFD54F;

    color:#083E3F;

}


/*======================================================
                    CTA MOBILE
======================================================*/

@media(max-width:768px){

    .services-cta{

        padding:85px 20px;

    }

    .services-cta .cta-content h2{

        font-size:34px;

    }

    .services-cta .cta-content p{

        font-size:15px;

        line-height:1.8;

    }

    .services-cta .cta-buttons{

        flex-direction:column;

    }

    .services-cta .premium-btn{

        width:min(280px,90%);

    }

}/*======================================================
                PREMIUM FOOTER
                PART 7
======================================================*/

.premium-footer{

    width:100%;

    margin:0;

    padding:0;

    background:
        linear-gradient(
            135deg,
            #083E3F,
            #0F8B8D
        );

    color:#fff;

    position:relative;

    overflow:hidden;

}


/*======================================================
                FOOTER CONTENT
======================================================*/

.footer-content{

    width:100%;

    padding:50px 60px;

    display:grid;

    grid-template-columns:
        2fr 1fr 1fr 1.5fr;

    gap:50px;

}


/*======================================================
                FOOTER BRAND
======================================================*/

.footer-brand h3{

    color:#FFD54F;

    font-size:30px;

    font-weight:800;

    margin-bottom:10px;

    line-height:1.2;

}

.footer-brand p{

    color:rgba(255,255,255,.85);

    line-height:1.9;

    margin-bottom:12px;

    font-size:15px;

    max-width:350px;

}


/*======================================================
                FOOTER BOX
======================================================*/

.footer-box h3,
.footer-box h4{

    margin-bottom:25px;

    color:#fff;

    text-shadow:
        0 0 15px rgba(255,255,255,.15);

}

.footer-box p{

    color:rgba(255,255,255,.85);

    line-height:1.9;

    margin-bottom:12px;

}

.footer-box a{

    display:block;

    color:#fff;

    text-decoration:none;

    margin-bottom:12px;

    transition:.3s ease;

}

.footer-box a:hover{

    color:#FFD54F;

    transform:translateX(8px);

}


/*======================================================
                CONTACT ITEMS
======================================================*/

.contact-item{

    display:flex;

    align-items:center;

    gap:14px;

    margin-bottom:18px;

    color:white;

    font-size:16px;

    font-weight:500;

}

.contact-item i{

    width:42px;

    height:42px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    border-radius:12px;

    background:rgba(255,255,255,.08);

    color:#FFD54F;

    font-size:16px;

    transition:.3s ease;

}

.contact-item:hover i{

    background:#FFD54F;

    color:#083E3F;

    transform:scale(1.08);

}

.contact-item a{

    color:white;

    text-decoration:none;

}

.contact-item a:hover{

    color:#FFD54F;

}


/*======================================================
                SOCIAL ICONS
======================================================*/

.footer-social{

    display:flex;

    gap:15px;

    margin-top:20px;

    justify-content:flex-start;

    align-items:center;

}

.footer-social a{

    width:48px;

    height:48px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0;

    border-radius:14px;

    background:rgba(255,255,255,.08);

    color:white;

    text-decoration:none;

    transition:.35s ease;

    backdrop-filter:blur(10px);

}

.footer-social a:hover{

    transform:
        translateY(-5px)
        scale(1.08);

    color:#083E3F;

    background:#FFD54F;

    box-shadow:
        0 0 20px rgba(255,213,79,.35);

}


/* Facebook */

.footer-social a:nth-child(1):hover{

    background:#1877F2;

    color:#fff;

}


/* LinkedIn */

.footer-social a:nth-child(2):hover{

    background:#0A66C2;

    color:#fff;

}


/* WhatsApp */

.footer-social a:nth-child(3):hover{

    background:#25D366;

    color:#fff;

}


/*======================================================
                FOOTER BOTTOM
======================================================*/

.footer-bottom{

    grid-column:1 / -1;

    width:100%;

    margin-top:20px;

    padding:25px 20px;

    border-top:
        1px solid rgba(255,255,255,.15);

    text-align:center;

    color:#fff;

    font-weight:600;

    line-height:1.7;

}

.footer-bottom strong{

    color:#FFD54F;

}


/*======================================================
                    FOOTER MOBILE
======================================================*/

@media(max-width:768px){

    .footer-content{

        grid-template-columns:1fr;

        text-align:center;

        padding:50px 25px;

        gap:30px;

    }

    .footer-brand p{

        margin-left:auto;

        margin-right:auto;

    }

    .footer-social{

        justify-content:center;

    }

    .footer-box a:hover{

        transform:none;

    }

    .contact-item{

        justify-content:center;

    }

    .footer-bottom{

        text-align:center;

    }

}