/*======================================================
        H.M. PREMATHILAKA
        PREMIUM FEEDBACK PAGE CSS
        PART 1
======================================================*/


/*======================================================
                    RESET
======================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fff;
    color:#222;
    overflow-x:hidden;
}

:root{

    --primary:#0F8B8D;
    --primary-dark:#075d60;
    --secondary:#18A0A3;

    --gold:#FFD54F;
    --gold-dark:#FFB300;

    --white:#fff;

    --light:#f7fbfb;

    --dark:#083E3F;

    --text:#444;

    --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);

}

.left-side{

    display:flex;

    align-items:center;

    gap:20px;

}
/*=============================
        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::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    transform:skewX(-25deg);

    transition:.8s;

}

.language-switcher a:hover::before{

    left:180%;

}

.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
=========================================*/

.menu-toggle{

    display:none;

    font-size:32px;

    color:white;

    cursor:pointer;

}



/*=========================================
            MOBILE
=========================================*/

@media(max-width:768px){

.header{

    padding:15px 20px;

}

.logo img{

    width:105px;

}

.menu-toggle{

    display:block;

}

nav{

    display:none;

    width:100%;

    margin-top:20px;

}

nav.active{

    display:flex;

}

.nav-links{

    width:100%;

    flex-direction:column;

    gap:15px;

}

.language-switcher{

    margin:20px auto 0;

}

}





/*======================================================
                FEEDBACK HERO
======================================================*/

.feedback-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 */

.feedback-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);

}

.feedback-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);

}
/*======================================================
        FEEDBACK HERO - FULL DESKTOP SCREEN
======================================================*/

@media (min-width:993px){

    .feedback-hero{

        min-height:calc(110vh - 92px);

        height:calc(100vh - 92px);

        padding:60px 8%;

        display:flex;

        align-items:center;

        justify-content:center;

    }

    .feedback-hero .hero-content{

        width:100%;

        max-width:950px;

        margin:auto;

        transform:translateY(-10px);

    }

    .feedback-hero .hero-content h1{

        font-size:64px;

    }

}


/*======================================================
            TABLET / MOBILE
======================================================*/

@media(max-width:992px){

    .feedback-hero{

        min-height:540px;

        height:auto;

    }

}

/* Overlay */

.feedback-hero .hero-overlay{

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            135deg,
            rgba(8,62,63,.30),
            rgba(15,139,141,.12)
        );

}


/* Hero Content */

.feedback-hero .hero-content{

    position:relative;

    z-index:2;

    width:100%;

    max-width:950px;

    margin:auto;

}


/* Hero Tag */

.feedback-hero .hero-tag{

    display:inline-flex;

    align-items:center;

    justify-content: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);

}


/* Hero Heading */

.feedback-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);

}

.feedback-hero .hero-content h1 span{

    display:block;

    margin-top:8px;

    color:var(--gold);

}


/* Subtitle */

.feedback-hero .hero-subtitle{

    color:#fff;

    font-size:22px;

    font-weight:600;

    letter-spacing:1px;

}


/* Hero Line */

.feedback-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 */

.feedback-hero .hero-description{

    max-width:780px;

    margin:0 auto;

    color:
        rgba(255,255,255,.90);

    font-size:17px;

    line-height:1.9;

}


/*======================================================
                    RESPONSIVE
======================================================*/

@media(max-width:1200px){

    .nav-links{

        gap:4px;

    }

    .nav-links a{

        padding:9px 10px;

        font-size:13px;

    }

    .brand-title{

        font-size:22px;

    }

    .brand-tagline{

        font-size:9px;

    }

}


@media(max-width:992px){

    .desktop-menu{

        display:none;

    }

    .language-switcher{

        margin-left:auto;

    }

    .menu-toggle{

        display:block;

        margin-left:12px;

    }

    .feedback-hero{

        min-height:540px;

        padding:90px 25px;

    }

    .feedback-hero .hero-content h1{

        font-size:52px;

    }

}


@media(max-width:768px){

    .header{

        min-height:78px;

        padding:12px 20px;

    }

    .brand-title{

        font-size:19px;

    }

    .brand-tagline{

        font-size:8px;

        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;

    }

    .feedback-hero{

        min-height:500px;

        padding:80px 20px;

    }

    .feedback-hero .hero-content h1{

        font-size:38px;

    }

    .feedback-hero .hero-subtitle{

        font-size:18px;

    }

    .feedback-hero .hero-description{

        font-size:15px;

        line-height:1.8;

    }

}/*======================================================
                FEEDBACK SECTION
======================================================*/

.feedback-section{

    width:100%;

    padding:120px 8%;

    background:
        linear-gradient(
            180deg,
            #f7fbfb,
            #ffffff
        );

}

.container{

    width:min(1300px,92%);

    margin:auto;

}


/*======================================================
                SECTION TITLE
======================================================*/

.section-title{

    max-width:850px;

    margin:0 auto 65px;

    text-align:center;

}

.section-title span{

    display:inline-block;

    color:var(--primary);

    font-size:14px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:10px;

}

.section-title h2{

    color:var(--dark);

    font-size:44px;

    font-weight:800;

    line-height:1.25;

}

.section-title .title-line{

    width:100px;

    height:5px;

    margin:18px auto;

    border-radius:50px;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            var(--gold-dark)
        );

}

.section-title p{

    color:#666;

    font-size:16px;

    line-height:1.8;

    margin-top:20px;

}


/*======================================================
                FEEDBACK GRID
======================================================*/

.feedback-grid{

    display:grid;

    grid-template-columns:
        repeat(3,1fr);

    gap:30px;

    max-width:1200px;

    margin:0 auto;

}


/*======================================================
                FEEDBACK CARD
======================================================*/

.feedback-card{

    position:relative;

    padding:35px 30px;

    background:#fff;

    border-radius:26px;

    border:1px solid
        rgba(15,139,141,.10);

    box-shadow:
        0 18px 45px
        rgba(0,0,0,.08);

    overflow:hidden;

    transition:.4s ease;

}

.feedback-card:hover{

    transform:
        translateY(-10px);

    border-color:
        rgba(255,213,79,.60);

    box-shadow:
        0 28px 60px
        rgba(0,0,0,.14);

}


/* Gold Top Line */

.feedback-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            var(--gold-dark)
        );

}


/*======================================================
                QUOTE ICON
======================================================*/

.feedback-quote{

    position:absolute;

    top:20px;

    right:25px;

    color:
        rgba(15,139,141,.10);

    font-size:45px;

}


/*======================================================
                CUSTOMER INFO
======================================================*/

.feedback-user{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:22px;

}

.feedback-avatar{

    width:58px;

    height:58px;

    display:flex;

    align-items:center;

    justify-content:center;

    flex-shrink:0;

    border-radius:50%;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    border:3px solid var(--gold);

    color:#fff;

    font-size:22px;

}

.feedback-user-info h3{

    color:var(--primary);

    font-size:18px;

    font-weight:700;

    margin-bottom:3px;

}

.feedback-user-info span{

    color:#888;

    font-size:12px;

}


/*======================================================
                    RATING
======================================================*/

.feedback-rating{

    display:flex;

    align-items:center;

    gap:4px;

    margin-bottom:20px;

}

.feedback-rating i{

    color:var(--gold-dark);

    font-size:16px;

}

.feedback-rating span{

    margin-left:7px;

    color:#777;

    font-size:13px;

    font-weight:600;

}


/*======================================================
                    FEEDBACK TEXT
======================================================*/

.feedback-text{

    color:#555;

    font-size:15px;

    line-height:1.9;

    margin:0;

}


/*======================================================
                VERIFIED LABEL
======================================================*/

.verified-feedback{

    display:inline-flex;

    align-items:center;

    gap:7px;

    margin-top:22px;

    padding:7px 13px;

    border-radius:30px;

    background:
        rgba(15,139,141,.08);

    color:var(--primary);

    font-size:11px;

    font-weight:700;

}

.verified-feedback i{

    color:var(--primary);

}


/*======================================================
                EMPTY STATE
======================================================*/

.feedback-empty{

    grid-column:1 / -1;

    max-width:650px;

    margin:0 auto;

    padding:65px 40px;

    text-align:center;

    border-radius:28px;

    border:2px dashed
        rgba(15,139,141,.18);

    background:
        rgba(255,255,255,.75);

}

.empty-icon{

    width:80px;

    height:80px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 22px;

    border-radius:50%;

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );

    color:var(--gold);

    font-size:30px;

    box-shadow:
        0 12px 30px
        rgba(15,139,141,.18);

}

.feedback-empty h3{

    margin-bottom:10px;

    color:var(--primary);

    font-size:24px;

    font-weight:700;

}

.feedback-empty p{

    color:#777;

    font-size:15px;

    line-height:1.8;

}


/*======================================================
                RESPONSIVE
======================================================*/

@media(max-width:992px){

    .feedback-grid{

        grid-template-columns:
            repeat(2,1fr);

        gap:25px;

    }

    .feedback-section{

        padding:95px 5%;

    }

}


@media(max-width:768px){

    .feedback-section{

        padding:85px 20px;

    }

    .section-title{

        margin-bottom:45px;

    }

    .section-title h2{

        font-size:32px;

    }

    .section-title p{

        font-size:15px;

    }

    .feedback-grid{

        grid-template-columns:1fr;

    }

    .feedback-card{

        padding:32px 25px;

    }

    .feedback-empty{

        padding:50px 25px;

    }

}/*======================================================
                    FEEDBACK CTA
======================================================*/

.feedback-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%
        );

}

.feedback-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);

}

.feedback-cta::after{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    bottom:-200px;

    left:-130px;

    border-radius:50%;

    background:
        rgba(255,255,255,.07);

}


/*======================================================
                    CTA CONTENT
======================================================*/

.feedback-cta .cta-content{

    position:relative;

    z-index:2;

    max-width:900px;

    margin:auto;

}

.feedback-cta .cta-content h2{

    margin-bottom:22px;

    color:#FFD54F;

    font-size:48px;

    font-weight:800;

    line-height:1.25;

}

.feedback-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
======================================================*/

.feedback-cta .cta-buttons{

    display:flex;

    align-items:center;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

}

.feedback-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;

}

.feedback-cta .premium-btn:hover{

    transform:
        translateY(-6px)
        scale(1.03);

    background:#FFD54F;

    color:#083E3F;

    box-shadow:
        0 18px 40px rgba(0,0,0,.25);

}

.feedback-cta .premium-btn i{

    color:#FFD54F;

}

.feedback-cta .premium-btn:hover i{

    color:#083E3F;

}

.feedback-cta .premium-btn.secondary{

    background:
        rgba(255,255,255,.08);

    color:#fff;

    backdrop-filter:blur(12px);

}

.feedback-cta .premium-btn.secondary:hover{

    background:#FFD54F;

    color:#083E3F;

}

/*=========================================
            PREMIUM FOOTER
=========================================*/

.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
=========================================*/

.footer-box p i{

    color:#FFD54F;

    margin-right:10px;

}

.footer-box p a{

    display:inline;

    margin:0;

}


/*=========================================
            SOCIAL
=========================================*/

.footer-social{

    display:flex;

    gap:12px;

    margin-top:20px;

}

.footer-social a{

    width:45px;

    height:45px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0;

    border-radius:12px;

    background:rgba(255,255,255,.10);

    color:#fff;

    transition:.3s ease;

}

.footer-social a:hover{

    background:#FFD54F;

    color:#083E3F;

    transform:
        translateY(-5px)
        scale(1.05);

}


/*=========================================
            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;

}


/*=========================================
            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-section{
    display:grid !important;
    grid-template-columns:1.6fr 1fr !important;
    gap:30px !important;
}

.contact-form-box{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;

    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.15);
    padding:40px;
    border-radius:25px;

    min-height:600px;
}

.info-top{
    grid-area:info1;
}

.info-bottom{
    grid-area:info2;
}
.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;

    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(37,211,102,.4);
}.footer-social a:nth-child(1):hover{
    background:#1877F2;
}

.footer-social a:nth-child(2):hover{
    background:#0A66C2;
}

.footer-social a:nth-child(3):hover{
    background:#25D366;
}
.footer-box p{
    display:flex;
    align-items:center;
    gap:10px;
}
.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;
    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;
}
.footer-bottom{
    width:100% !important;
    display:block !important;

    text-align:center !important;

    margin-top:40px !important;

    padding-top:25px !important;

    border-top:1px solid rgba(255,255,255,.15) !important;

    color:white !important;
}

.footer-bottom p{
    text-align:center !important;
}.footer-content{
    width:100%;
    max-width:none;
    margin:0;
    padding:70px 40px;

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:50px;
}

.footer-bottom{
    grid-column:1 / -1 !important;

    width:100% !important;

    text-align:center !important;

    margin-top:30px !important;
}.footer-content{
    padding:50px 60px;
}

.footer-box h3,
.footer-box h4{
    margin-bottom:25px;
}

.footer-bottom{
    margin-top:20px;
    opacity:.9;
}
.premium-footer{
    width:100% !important;
    max-width:100% !important;
    margin:0 !important;
}

footer{
    width:100% !important;
    margin:0 !important;
}

