/*==================================================
KASITU WEBS V2
Future Driven Design System
==================================================*/

:root{

--primary:#4F46E5;
--secondary:#06B6D4;
--accent:#8B5CF6;

--bg:#070B17;
--bg2:#0D1325;

--glass:rgba(255,255,255,.05);
--glass2:rgba(255,255,255,.08);

--border:rgba(255,255,255,.10);

--text:#ffffff;
--muted:#b6bdd3;

--success:#21d07a;
--danger:#ff4f6d;

--radius:20px;

--shadow:

0 15px 40px rgba(0,0,0,.35);

--transition:.35s ease;

}

/*==============================*/

*{

user-select: none;

margin:0;

padding:0;

box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Space Grotesk',sans-serif;

background:var(--bg);

color:var(--text);

overflow-x:hidden;

position:relative;

line-height:1.7;

}

/*==============================*/

body::before{

content:"";

position:fixed;

inset:0;

background:

radial-gradient(circle at 15% 20%,

rgba(79,70,229,.22),

transparent 35%),

radial-gradient(circle at 80% 10%,

rgba(6,182,212,.18),

transparent 40%),

radial-gradient(circle at 60% 80%,

rgba(139,92,246,.15),

transparent 35%);

pointer-events:none;

z-index:-3;

}

/*==============================*/

.bg-grid{

position:fixed;

inset:0;

background-image:

linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),

linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);

background-size:45px 45px;

mask-image:linear-gradient(to bottom,

transparent,

white,

transparent);

z-index:-4;

animation:gridMove 30s linear infinite;

}

/*==============================*/

.gradient-1{

position:fixed;

width:550px;

height:550px;

background:#4F46E5;

filter:blur(140px);

opacity:.18;

top:-220px;

left:-180px;

animation:float1 10s ease-in-out infinite;

z-index:-5;

}

.gradient-2{

position:fixed;

width:520px;

height:520px;

background:#06B6D4;

filter:blur(160px);

opacity:.18;

right:-150px;

bottom:-180px;

animation:float2 12s ease-in-out infinite;

z-index:-5;

}

/*==============================*/

a{

color:inherit;

text-decoration:none;

}

img{

max-width:100%;

display:block;

}

section{

padding:110px 8%;

position:relative;

}

/*==============================*/

.section-header{

max-width:760px;

margin:auto;

text-align:center;

margin-bottom:70px;

}

.section-subtitle{

display:inline-block;

padding:8px 20px;

border-radius:50px;

background:var(--glass);

border:1px solid var(--border);

font-size:.8rem;

letter-spacing:2px;

color:var(--secondary);

margin-bottom:18px;

text-transform:uppercase;

}

.section-header h2{

font-size:clamp(2.3rem,5vw,4rem);

font-weight:700;

margin-bottom:20px;

}

.section-header h2 span{

background:

linear-gradient(

90deg,

#06B6D4,

#8B5CF6);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.section-header p{

color:var(--muted);

font-size:1.08rem;

}

/*==============================*/

.primary-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 34px;

border-radius:50px;

border:none;

cursor:pointer;

font-weight:600;

background:

linear-gradient(

90deg,

#4F46E5,

#06B6D4);

color:#fff;

transition:var(--transition);

box-shadow:

0 0 25px

rgba(79,70,229,.45);

}

.primary-btn:hover{

transform:translateY(-6px);

box-shadow:

0 0 40px

rgba(79,70,229,.65);

}

.secondary-btn{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 34px;

border-radius:50px;

border:1px solid var(--border);

background:var(--glass);

backdrop-filter:blur(20px);

transition:.35s;

}

.secondary-btn:hover{

background:rgba(255,255,255,.08);

transform:translateY(-6px);

}

/*==============================*/

@keyframes float1{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(40px);

}

}

@keyframes float2{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-50px);

}

}

@keyframes gridMove{

from{

transform:translateY(0);

}

to{

transform:translateY(45px);

}

}

/*==================================================
NAVIGATION
==================================================*/

.header{

position:fixed;

top:0;

left:0;

width:100%;

z-index:1000;

padding:18px 7%;

transition:.4s;

}

.header.scrolled{

background:rgba(7,11,23,.72);

backdrop-filter:blur(25px);

border-bottom:1px solid rgba(255,255,255,.08);

box-shadow:0 10px 40px rgba(0,0,0,.35);

}

.navbar{

display:flex;

align-items:center;

justify-content:space-between;

}

.logo{

display:flex;

align-items:center;

gap:15px;

}

.logo-circle{

width:58px;

height:58px;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:1.4rem;

font-weight:700;

background:linear-gradient(135deg,#4F46E5,#06B6D4);

box-shadow:0 0 30px rgba(79,70,229,.55);

}

.logo h2{

font-size:1.4rem;

letter-spacing:2px;

}

.logo span{

font-size:.8rem;

color:var(--muted);

}

.nav-links{

display:flex;

gap:38px;

list-style:none;

}

.nav-links a{

position:relative;

font-weight:500;

transition:.3s;

}

.nav-links a::after{

content:"";

position:absolute;

left:0;

bottom:-8px;

width:0;

height:2px;

background:linear-gradient(90deg,#06B6D4,#8B5CF6);

transition:.35s;

}

.nav-links a:hover::after{

width:100%;

}

.nav-links a:hover{

color:#06B6D4;

}

.nav-actions{

display:flex;

align-items:center;

gap:18px;

}

#theme-toggle{

width:48px;

height:48px;

border:none;

cursor:pointer;

border-radius:50%;

background:var(--glass);

border:1px solid var(--border);

color:white;

font-size:1.1rem;

backdrop-filter:blur(20px);

transition:.35s;

}

#theme-toggle:hover{

transform:rotate(180deg);

background:#4F46E5;

}

.menu-btn{

display:none;

}

/*==================================================
HERO
==================================================*/

.hero{

min-height:100vh;

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:80px;

padding-top:150px;

}

.badge{

display:inline-flex;

align-items:center;

padding:10px 22px;

border-radius:50px;

background:rgba(79,70,229,.18);

border:1px solid rgba(79,70,229,.35);

margin-bottom:30px;

font-size:.85rem;

letter-spacing:1px;

}

.hero h1{

font-size:clamp(3.5rem,7vw,6.5rem);

line-height:1.05;

margin-bottom:30px;

font-weight:700;

}

.hero h1 span{

display:block;

background:linear-gradient(
90deg,
#06B6D4,
#8B5CF6);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.hero p{

max-width:600px;

font-size:1.15rem;

color:var(--muted);

margin-bottom:40px;

}

.hero-buttons{

display:flex;

gap:20px;

margin-bottom:55px;

flex-wrap:wrap;

}

.hero-stats{

display:flex;

gap:40px;

flex-wrap:wrap;

}

.hero-stats div{

padding:20px;

background:var(--glass);

border:1px solid var(--border);

border-radius:18px;

backdrop-filter:blur(18px);

min-width:140px;

transition:.35s;

}

.hero-stats div:hover{

transform:translateY(-10px);

box-shadow:0 15px 40px rgba(79,70,229,.35);

}

.hero-stats h2{

font-size:2rem;

margin-bottom:5px;

background:linear-gradient(
90deg,
#06B6D4,
#8B5CF6);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

/*==================================================
LAPTOP
==================================================*/

.hero-right{

display:flex;

justify-content:center;

align-items:center;

position:relative;

}

.laptop{

width:460px;

animation:laptopFloat 5s ease-in-out infinite;

}

.screen{

height:300px;

border-radius:22px;

padding:30px;

background:rgba(255,255,255,.06);

border:1px solid rgba(255,255,255,.12);

backdrop-filter:blur(25px);

overflow:hidden;

box-shadow:

0 20px 60px rgba(0,0,0,.4),

0 0 60px rgba(79,70,229,.25);

}

.base{

width:100%;

height:18px;

border-radius:0 0 18px 18px;

background:linear-gradient(
90deg,
#3b3b3b,
#6a6a6a);

}

.code{

font-family:Consolas,monospace;

font-size:1rem;

line-height:2;

}

.blue{

color:#57bfff;

}

.purple{

color:#b879ff;

}

.green{

color:#63ff99;

}

.orange{

color:#ffb356;

}

@keyframes laptopFloat{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-18px);

}

100%{

transform:translateY(0px);

}

}

/*==================================================
TRUSTED TECHNOLOGIES
==================================================*/

.trusted{

padding:70px 8%;

text-align:center;

}

.trusted p{

color:var(--secondary);

margin-bottom:35px;

font-size:.95rem;

letter-spacing:3px;

text-transform:uppercase;

}

.trusted-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(140px,1fr));

gap:22px;

}

.trusted-grid div{

padding:18px;

background:var(--glass);

border:1px solid var(--border);

backdrop-filter:blur(20px);

border-radius:18px;

font-weight:600;

transition:.35s;

cursor:default;

}

.trusted-grid div:hover{

transform:translateY(-8px);

background:rgba(79,70,229,.18);

box-shadow:0 15px 40px rgba(79,70,229,.25);

}

/*=========================================
HERO BADGE
=========================================*/

.hero-badge{

display:inline-flex;

align-items:center;

gap:10px;

padding:12px 20px;

margin-bottom:25px;

background:rgba(6,182,212,.12);

border:1px solid rgba(6,182,212,.25);

border-radius:50px;

font-size:.9rem;

font-weight:600;

color:#06B6D4;

}

.hero-badge i{

font-size:10px;

color:#00ff66;

animation:pulse 2s infinite;

}

@keyframes pulse{

0%{

transform:scale(1);

}

50%{

transform:scale(1.5);

}

100%{

transform:scale(1);

}

}

/*=========================================
LAPTOP
=========================================*/

.laptop{

position:relative;

padding:25px;

background:#0b1120;

border-radius:22px;

border:1px solid rgba(255,255,255,.08);

box-shadow:0 40px 70px rgba(0,0,0,.35);

}

.laptop-top{

display:flex;

gap:10px;

margin-bottom:20px;

}

.laptop-top span{

width:14px;

height:14px;

border-radius:50%;

}

.laptop-top span:nth-child(1){

background:#ff5f57;

}

.laptop-top span:nth-child(2){

background:#ffbd2e;

}

.laptop-top span:nth-child(3){

background:#28ca42;

}

.code{

font-family:Consolas,monospace;

font-size:15px;

line-height:2;

min-height:260px;

color:#63ff99;

white-space:pre-wrap;

}

/*=========================================
FLOATING TECH
=========================================*/

.floating-tech{

position:absolute;

width:70px;

height:70px;

border-radius:20px;

display:flex;

align-items:center;

justify-content:center;

font-size:2rem;

background:rgba(255,255,255,.08);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.08);

animation:float 6s ease-in-out infinite;

}

.html{

top:15%;

left:-35px;

color:#E34F26;

}

.css{

top:65%;

left:-25px;

color:#1572B6;

}

.js{

top:12%;

right:-30px;

color:#F7DF1E;

}

.node{

top:55%;

right:-35px;

color:#68A063;

}

.github{

bottom:-20px;

left:50%;

transform:translateX(-50%);

color:#ffffff;

}

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}

/*==================================================
SERVICES
==================================================*/

.services-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

gap:35px;

}

.service-card{

padding:40px;

border-radius:28px;

background:var(--glass);

border:1px solid var(--border);

backdrop-filter:blur(25px);

transition:.4s;

position:relative;

overflow:hidden;

}

.service-card::before{

content:"";

position:absolute;

inset:0;

background:linear-gradient(

135deg,

rgba(79,70,229,.15),

transparent,

rgba(6,182,212,.08)

);

opacity:0;

transition:.4s;

}

.service-card:hover::before{

opacity:1;

}

.service-card:hover{

transform:translateY(-15px);

box-shadow:

0 25px 60px rgba(79,70,229,.28);

}

.service-icon{

width:75px;

height:75px;

display:flex;

align-items:center;

justify-content:center;

border-radius:20px;

font-size:2rem;

margin-bottom:25px;

background:linear-gradient(

135deg,

#4F46E5,

#06B6D4

);

box-shadow:0 0 35px rgba(79,70,229,.35);

transition:.4s;

}

.service-card:hover .service-icon{

transform:rotate(10deg) scale(1.1);

}

.service-card h3{

font-size:1.45rem;

margin-bottom:15px;

}

.service-card p{

color:var(--muted);

}

/*==================================================
PORTFOLIO
==================================================*/

.portfolio-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(360px,1fr));

gap:40px;

}

.project-card{

position:relative;

overflow:hidden;

border-radius:28px;

background:var(--glass);

border:1px solid var(--border);

backdrop-filter:blur(20px);

transition:.45s;

}

.project-card:hover{

transform:translateY(-15px) rotateX(4deg);

box-shadow:

0 25px 70px rgba(79,70,229,.35);

}

.project-image{

height:240px;

overflow:hidden;

}

.project-image img{

width:100%;

height:100%;

object-fit:cover;

transition:.7s;

}

.project-card:hover img{

transform:scale(1.12);

}

.project-content{

padding:30px;

}

.project-tag{

display:inline-block;

padding:8px 18px;

border-radius:40px;

background:rgba(79,70,229,.18);

color:#06B6D4;

font-size:.8rem;

margin-bottom:18px;

}

.project-content h3{

font-size:1.5rem;

margin-bottom:15px;

}

.project-content p{

color:var(--muted);

margin-bottom:25px;

}

.project-links{

display:flex;

gap:18px;

}

.project-links a{

padding:12px 24px;

border-radius:40px;

background:rgba(255,255,255,.05);

border:1px solid var(--border);

transition:.35s;

}

.project-links a:hover{

background:#4F46E5;

transform:translateY(-4px);

}

/*==================================================
WHY US
==================================================*/

.why-us{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.why-left p{

margin-top:25px;

color:var(--muted);

font-size:1.05rem;

}

.why-right{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:20px;

}

.feature{

padding:22px;

background:var(--glass);

border-radius:18px;

border:1px solid var(--border);

transition:.35s;

font-weight:500;

}

.feature:hover{

background:rgba(79,70,229,.18);

transform:translateX(8px);

}

/*=========================================
PRICING
=========================================*/
/*==================================================*
* PRICING — RESPONSIVE 4 CARD LAYOUT
*==================================================*/

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:25px;
    margin-top:60px;
}

/* Make all pricing cards equal height */
.price-card{
    position:relative;
    padding:35px;
    border-radius:24px;
    background:var(--glass);
    border:1px solid var(--border);
    transition:.35s;
    height:100%;
}

/* Featured card */
.price-card.featured{
    border:2px solid #4F46E5;
    transform:scale(1.03);
    z-index:2;
}

.price-card:hover{
    transform:translateY(-12px);
}

/*==================================================*
* 2 × 2 LAYOUT
*==================================================*/

@media(max-width:1200px){
    .pricing-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap:25px;
    }

    .price-card.featured{
        transform:none;
    }
}

/*==================================================*
* MOBILE — ONE CARD PER ROW
*==================================================*/

@media(max-width:600px){
    .pricing-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .price-card{
        padding:30px 25px;
    }

    .price-card.featured{
        transform:none;
    }
}

.popular{

position:absolute;

top:-15px;

left:50%;

transform:translateX(-50%);

padding:8px 18px;

background:#4F46E5;

color:white;

border-radius:40px;

font-size:.8rem;

font-weight:700;

}

.price{

font-size:3rem;

font-weight:700;

margin:30px 0;

background:linear-gradient(

90deg,

#06B6D4,

#8B5CF6);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

.price-card ul{

margin:30px 0;

padding-left:20px;

line-height:2;

}

/*==================================================
CALCULATOR
==================================================*/

.calculator{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.calculator-left p{

margin-top:25px;

color:var(--muted);

}

.calculator-right{

padding:45px;

background:var(--glass);

border-radius:30px;

border:1px solid var(--border);

backdrop-filter:blur(25px);

}

.calculator-right label{

display:block;

margin-bottom:12px;

font-weight:600;

}

.calculator-right input{

width:100%;

padding:16px;

margin-bottom:22px;

border-radius:16px;

background:rgba(255,255,255,.05);

border:1px solid var(--border);

color:white;

outline:none;

}

fieldset{

padding:25px;

border-radius:20px;

border:1px solid var(--border);

margin-bottom:30px;

}

legend{

padding:0 12px;

color:#06B6D4;

}

fieldset label{

display:flex;

align-items:center;

gap:12px;

margin:15px 0;

cursor:pointer;

}

.extra{

width:18px;

height:18px;

accent-color:#4F46E5;

}

.estimate-box{

padding:30px;

text-align:center;

border-radius:20px;

margin-bottom:30px;

background:linear-gradient(

135deg,

rgba(79,70,229,.25),

rgba(6,182,212,.18)

);

}

.estimate-box small{

display:block;

margin-bottom:10px;

color:var(--muted);

}

#total{

font-size:3rem;

font-weight:700;

background:linear-gradient(

90deg,

#06B6D4,

#8B5CF6);

-webkit-background-clip:text;

-webkit-text-fill-color:transparent;

}

/*==================================================*
* FUTURISTIC RECOMMENDED EXTRAS
*==================================================*/

.extra-option{
    position:relative;

    display:flex;
    align-items:center;
    gap:12px;

    padding:13px 14px;

    margin:10px 0;

    border-radius:14px;

    transition:
        .35s ease;

    overflow:hidden;
}


/*-----------------------------------------*
* HOLOGRAPHIC RECOMMENDED CARD
*-----------------------------------------*/

.extra-option.recommended{

    border:1px solid rgba(6,182,212,.55);

    background:
        linear-gradient(
            110deg,
            rgba(6,182,212,.08),
            rgba(79,70,229,.12),
            rgba(139,92,246,.08)
        );

    box-shadow:
        0 0 10px rgba(6,182,212,.10),
        inset 0 0 18px rgba(79,70,229,.06);

    animation:
        recommendedPulse 3s ease-in-out infinite;
}


/*-----------------------------------------*
* MOVING NEON LINE
*-----------------------------------------*/

.extra-option.recommended::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:80%;
    height:1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #06B6D4,
            #8B5CF6,
            transparent
        );

    box-shadow:
        0 0 12px #06B6D4;

    animation:
        scanLine 3s linear infinite;
}


/*-----------------------------------------*
* LEFT NEON INDICATOR
*-----------------------------------------*/

.extra-option.recommended::after{

    content:"";

    position:absolute;

    left:0;
    top:15%;

    width:3px;
    height:70%;

    border-radius:10px;

    background:
        linear-gradient(
            180deg,
            #06B6D4,
            #8B5CF6
        );

    box-shadow:
        0 0 10px #06B6D4,
        0 0 20px rgba(6,182,212,.6);
}


/*-----------------------------------------*
* FUTURISTIC BADGE
*-----------------------------------------*/

.recommended-badge{

    display:none;

    margin-left:auto;

    position:relative;

    padding:5px 10px;

    border-radius:8px;

    white-space:nowrap;

    font-size:9px;

    font-weight:800;

    letter-spacing:1px;

    text-transform:uppercase;

    color:#67e8f9;

    background:
        rgba(6,182,212,.10);

    border:1px solid rgba(6,182,212,.45);

    box-shadow:
        0 0 10px rgba(6,182,212,.15);

    text-shadow:
        0 0 8px rgba(6,182,212,.8);

    animation:
        badgeGlow 2s ease-in-out infinite;
}


/*-----------------------------------------*
* SHOW BADGE
*-----------------------------------------*/

.extra-option.recommended
.recommended-badge{

    display:inline-flex;

    align-items:center;
    justify-content:center;

}


/* Add futuristic "AI" style indicator */

.extra-option.recommended
.recommended-badge::before{

    content:"✦";

    margin-right:5px;

    color:#8B5CF6;

    text-shadow:
        0 0 8px #8B5CF6;

}


/*-----------------------------------------*
* CHECKBOX
*-----------------------------------------*/

.extra-option.recommended
.extra{

    accent-color:#06B6D4;

    filter:
        drop-shadow(
            0 0 5px
            rgba(6,182,212,.7)
        );
}


/*-----------------------------------------*
* HOVER
*-----------------------------------------*/

.extra-option.recommended:hover{

    transform:
        translateX(5px);

    border-color:
        rgba(6,182,212,.85);

    background:
        linear-gradient(
            110deg,
            rgba(6,182,212,.14),
            rgba(79,70,229,.18),
            rgba(139,92,246,.12)
        );

    box-shadow:
        0 0 20px rgba(6,182,212,.16),
        0 0 40px rgba(79,70,229,.10),
        inset 0 0 20px rgba(6,182,212,.06);
}


/*-----------------------------------------*
* ANIMATIONS
*-----------------------------------------*/

@keyframes recommendedPulse{

    0%,100%{

        box-shadow:
            0 0 10px rgba(6,182,212,.08),
            inset 0 0 15px rgba(79,70,229,.04);

    }

    50%{

        box-shadow:
            0 0 20px rgba(6,182,212,.18),
            0 0 35px rgba(79,70,229,.08),
            inset 0 0 20px rgba(6,182,212,.07);

    }

}


@keyframes scanLine{

    0%{
        left:-120%;
    }

    100%{
        left:140%;
    }

}


@keyframes badgeGlow{

    0%,100%{

        box-shadow:
            0 0 5px rgba(6,182,212,.15);

    }

    50%{

        box-shadow:
            0 0 15px rgba(6,182,212,.35);

    }

}

/*==================================================
SCROLL TO TOP
==================================================*/

#scrollTop{

position:fixed;

bottom:35px;

right:35px;

width:58px;

height:58px;

border:none;

border-radius:50%;

background:linear-gradient(135deg,#4F46E5,#06B6D4);

color:white;

font-size:1.4rem;

cursor:pointer;

display:flex;

align-items:center;

justify-content:center;

box-shadow:0 15px 40px rgba(79,70,229,.4);

transition:.35s;

z-index:999;

}

#scrollTop:hover{

transform:translateY(-8px) rotate(360deg);

}

/*==================================================
CUSTOM SCROLLBAR
==================================================*/

::-webkit-scrollbar{

width:10px;

}

::-webkit-scrollbar-track{

background:#070B17;

}

::-webkit-scrollbar-thumb{

background:linear-gradient(#4F46E5,#06B6D4);

border-radius:20px;

}

::selection{

background:#4F46E5;

color:white;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1100px){

.hero,
.contact,
.calculator,
.why-us{

grid-template-columns:1fr;

}

.hero{

text-align:center;

}

.hero-buttons,
.hero-stats{

justify-content:center;

}

.hero-right{

margin-top:40px;

}

}


/*==================================================
MOBILE MENU
==================================================*/
@media(max-width:900px){

.nav-links{

display:flex;

position:fixed;

top:85px;

left:50%;

transform:translateX(-50%) scale(.95);

width:92%;

flex-direction:column;

padding:30px;

background:rgba(7,11,23,.94);

backdrop-filter:blur(25px);

border:1px solid rgba(255,255,255,.08);

border-radius:22px;

opacity:0;

pointer-events:none;

transition:.35s;

}

.nav-links.mobile-open{

opacity:1;

pointer-events:auto;

transform:translateX(-50%) scale(1);

}
  
.menu-btn{

display:flex;

width:50px;

height:50px;

border:none;

background:var(--glass);

border:1px solid var(--border);

border-radius:12px;

color:white;

align-items:center;

justify-content:center;

cursor:pointer;

}

section{

padding:90px 6%;

}

.hero h1{

font-size:3rem;

}

.section-header h2{

font-size:2.5rem;

}

}

@media(max-width:600px){

.hero{

padding-top:120px;

}

.hero-buttons{

flex-direction:column;

}

.primary-btn,
.secondary-btn{

width:100%;

}

.price-card.featured{

transform:none;

}

.portfolio-grid,
.services-grid,
.tech-grid,
.pricing-grid,
.statistics,
.testimonial-grid{

grid-template-columns:1fr;

}

.laptop{

width:100%;

}

}

/*=========================================
REVEAL ANIMATIONS
=========================================*/

.hidden{

opacity:0;

transform:translateY(60px);

transition:

opacity .8s ease,

transform .8s ease;

}

.show{

opacity:1;

transform:none;

}

.nav-links a.active{

color:#06B6D4;

}

.nav-links a.active::after{

width:100%;

}

/*==================================================
LIGHT MODE
==================================================*/

html[data-theme="light"]{

--bg:#f7f9fc;
--bg2:#ffffff;

--text:#111827;
--muted:#5f6776;

--glass:rgba(255,255,255,.75);
--glass2:rgba(255,255,255,.9);

--border:rgba(0,0,0,.08);

}

/*==================================================
CURSOR
==================================================*/

.cursor-glow{

position:fixed;

width:220px;

height:220px;

border-radius:50%;

pointer-events:none;

background:radial-gradient(

circle,

rgba(79,70,229,.20),

transparent 70%

);

transform:translate(-50%,-50%);

z-index:0;

transition:

left .08s linear,

top .08s linear;

}

/*==================================================
CURSOR BLINK
==================================================*/

.cursor{

animation:blink .8s infinite;

}

@keyframes blink{

50%{

opacity:0;

}

}

/*==================================================
PAGE FADE
==================================================*/

body{

opacity:0;

transition:opacity .6s ease;

}

body.loaded{

opacity:1;

}

/*=========================================
PROGRESS BAR
=========================================*/

#progress-bar{

position:fixed;

top:0;

left:0;

height:4px;

width:0;

background:linear-gradient(

90deg,

#4F46E5,

#06B6D4,

#8B5CF6

);

z-index:99999;

}

/*=========================================
TOAST
=========================================*/

.toast{

position:fixed;

bottom:30px;

left:50%;

transform:translateX(-50%) translateY(120px);

padding:16px 28px;

border-radius:50px;

background:#111827;

color:white;

border:1px solid rgba(255,255,255,.12);

transition:.35s;

opacity:0;

z-index:9999;

}

.toast.show{

opacity:1;

transform:translateX(-50%) translateY(0);

}

/*==================================================
PARTICLE CANVAS
==================================================*/

#particles{

position:fixed;

inset:0;

width:100%;

height:100%;

pointer-events:none;

z-index:-6;

}

/*==================================================
3D CARD
==================================================*/

.project-card{

transform-style:preserve-3d;

will-change:transform;

}

/*==================================================
BUTTON LOADING
==================================================*/

button:disabled{

opacity:.7;

cursor:not-allowed;

}


/*==================================================
TERMINAL
==================================================*/

#terminal{

position:fixed;

left:50%;

top:50%;

transform:translate(-50%,-50%) scale(.9);

width:900px;

max-width:95%;

height:600px;

background:#050816;

border:1px solid rgba(255,255,255,.1);

border-radius:20px;

display:none;

flex-direction:column;

overflow:hidden;

z-index:99999;

box-shadow:0 40px 80px rgba(0,0,0,.5);

}

#terminal.open{

display:flex;

animation:terminalOpen .35s ease;

}

@keyframes terminalOpen{

from{

opacity:0;

transform:translate(-50%,-50%) scale(.8);

}

to{

opacity:1;

transform:translate(-50%,-50%) scale(1);

}

}

.terminal-header{

padding:15px 20px;

display:flex;

justify-content:space-between;

background:#0b1120;

}

#terminal-body{

flex:1;

padding:20px;

overflow:auto;

font-family:Consolas,monospace;

color:#63ff99;

}

#terminal-input{

border:none;

padding:18px;

background:#111827;

color:white;

font-family:Consolas;

outline:none;

}

/*==================================================
COMMAND PALETTE
==================================================*/

#command-palette{

position:fixed;

top:15%;

left:50%;

transform:translateX(-50%);

width:700px;

max-width:90%;

padding:20px;

border-radius:20px;

background:#111827;

display:none;

z-index:99999;

box-shadow:0 30px 70px rgba(0,0,0,.4);

}

#command-palette.show{

display:block;

}

#command-search{

width:100%;

padding:18px;

background:#1f2937;

border:none;

color:white;

font-size:18px;

outline:none;

border-radius:12px;

}

/*==================================================
SYSTEM STATUS
==================================================*/

.status-indicator{

width:14px;

height:14px;

border-radius:50%;

background:#555;

display:inline-block;

margin-right:10px;

}

.status-indicator.online{

background:#00ff66;

box-shadow:0 0 20px #00ff66;

}

/*=========================================
SECTION HEADER
=========================================*/

.section-header{

text-align:center;

max-width:750px;

margin:0 auto 70px;

}

.section-tag{

display:inline-block;

padding:8px 18px;

border-radius:50px;

background:rgba(79,70,229,.12);

border:1px solid rgba(79,70,229,.25);

color:#06B6D4;

font-size:.85rem;

font-weight:700;

letter-spacing:1px;

margin-bottom:20px;

text-transform:uppercase;

}

.section-header h2{

font-size:clamp(2.2rem,5vw,3.5rem);

margin-bottom:20px;

}

.section-header p{

color:var(--muted);

font-size:1.1rem;

line-height:1.8;

}

/*=========================================
TRUSTED GRID ICONS
=========================================*/

.trusted-grid div{

display:flex;

flex-direction:column;

align-items:center;

justify-content:center;

text-align:center;

min-height:180px;

}

.trusted-grid i{

font-size:3rem;

margin-bottom:20px;

transition:.35s;

}

.trusted-grid div:hover i{

transform:scale(1.2) rotate(8deg);

}

.fa-html5{

color:#E34F26;

}

.fa-css3-alt{

color:#1572B6;

}

.fa-js-square{

color:#F7DF1E;

}

.fa-node-js{

color:#68A063;

}

.fa-fire{

color:#FF6B00;

}

.fa-database{

color:#00C853;

}

.fa-wordpress{

color:#21759B;

}

.fa-github{

color:#ffffff;

}

.fa-mobile-alt{

color:#06B6D4;

}

.fa-cloud{

color:#8B5CF6;

}

/*=========================================
PROJECT TECH STACK
=========================================*/

.project-tech{

display:flex;

flex-wrap:wrap;

gap:10px;

margin:25px 0;

}

.project-tech span{

padding:8px 14px;

border-radius:30px;

background:rgba(79,70,229,.12);

border:1px solid rgba(79,70,229,.2);

font-size:.8rem;

font-weight:600;

transition:.35s;

}

.project-tech span:hover{

background:#4F46E5;

transform:translateY(-4px);

}

.project-links{

display:flex;

gap:15px;

margin-top:25px;

}

.project-links a{

flex:1;

text-align:center;

padding:14px;

border-radius:14px;

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

transition:.35s;

font-weight:600;

}

.project-links a:hover{

background:#4F46E5;

transform:translateY(-5px);

}


/*=========================================
TESTIMONIALS
=========================================*/

.testimonial-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:30px;

margin-top:60px;

}

.testimonial-card{

padding:35px;

border-radius:20px;

background:var(--glass);

border:1px solid var(--border);

transition:.35s;

}

.testimonial-card:hover{

transform:translateY(-10px);

}

.testimonial-card span{

color:#06B6D4;

}

.stars{

font-size:1.2rem;

color:#FFD700;

margin-bottom:20px;

}

.client{

display:flex;

align-items:center;

gap:15px;

margin-top:25px;

}

.client img{

width:60px;

height:60px;

border-radius:50%;

object-fit:cover;

}

/*=========================================
FAQ
=========================================*/

.faq-container{

max-width:900px;

margin:60px auto;

}

.faq-container details{

margin-bottom:20px;

padding:20px;

background:var(--glass);

border:1px solid var(--border);

border-radius:16px;

}

.faq-container summary{

cursor:pointer;

font-weight:700;

}

/*=========================================
CONTACT
=========================================*/

.contact-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:50px;

margin-top:60px;

}

.contact-info{

display:flex;

flex-direction:column;

gap:20px;

}

.info-card{

display:flex;

align-items:center;

gap:20px;

padding:25px;

background:var(--glass);

border:1px solid var(--border);

border-radius:18px;

}

.info-card i{

font-size:2rem;

color:#06B6D4;

}

#contact-form{

display:flex;

flex-direction:column;

gap:20px;

}

#contact-form input,

#contact-form textarea{

padding:18px;

border-radius:14px;

border:1px solid var(--border);

background:var(--glass);

color:inherit;

}

@media(max-width:900px){

.contact-grid{

grid-template-columns:1fr;

}

}

/*=========================================
FOOTER
=========================================*/

.footer{

margin-top:120px;

padding:80px 8% 30px;

background:#08111f;

border-top:1px solid rgba(255,255,255,.08);

}

.footer-top{

display:grid;

grid-template-columns:2fr 1fr 1fr 1fr;

gap:50px;

}

.footer h2{

margin-bottom:20px;

}

.footer h3{

margin-bottom:20px;

}

.footer ul{

list-style:none;

padding:0;

}

.footer li{

margin-bottom:12px;

color:var(--muted);

}

.footer a{

transition:.3s;

}

.footer a:hover{

color:#06B6D4;

}

.footer-social{

display:flex;

gap:15px;

margin-top:25px;

}

.footer-social a{

width:48px;

height:48px;

display:flex;

align-items:center;

justify-content:center;

border-radius:50%;

background:rgba(255,255,255,.05);

font-size:1.2rem;

transition:.35s;

}

.footer-social a:hover{

transform:translateY(-6px);

background:#4F46E5;

}

.footer-bottom{

margin-top:50px;

padding-top:30px;

border-top:1px solid rgba(255,255,255,.08);

text-align:center;

color:var(--muted);

}

@media(max-width:900px){

.footer-top{

grid-template-columns:1fr;

text-align:center;

}

.footer-social{

justify-content:center;

}

}

/*=========================================
SCROLL REVEAL
=========================================*/

.hidden{

opacity:0;

transform:translateY(60px);

transition:.8s;

}

.show{

opacity:1;

transform:none;

}

/*==================================================*
* MOBILE SERVICES = TECHNOLOGY STYLE
*==================================================*/

@media (max-width: 600px){

    .services-grid{
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .service-card{
        min-height: 180px;
        padding: 22px 15px;
        border-radius: 20px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        text-align: center;

        background:
            linear-gradient(
                145deg,
                rgba(255,255,255,.065),
                rgba(79,70,229,.07)
            );

        border: 1px solid rgba(255,255,255,.10);

        backdrop-filter: blur(20px);

        transition:
            transform .35s ease,
            box-shadow .35s ease,
            border-color .35s ease;
    }

    /* Service icon becomes like technology icons */

    .service-icon{
        width:58px;
        height:58px;

        margin-bottom:14px;

        border-radius:17px;

        font-size:1.45rem;

        background:
            linear-gradient(
                135deg,
                rgba(79,70,229,.9),
                rgba(6,182,212,.9)
            );

        box-shadow:
            0 0 20px rgba(79,70,229,.25);

        flex-shrink:0;
    }

    .service-card h3{
        font-size:.95rem;
        line-height:1.3;
        margin-bottom:0;
    }

/* KEEP SERVICE DESCRIPTIONS VISIBLE */
    .service-card p {
        display: block;
        visibility: visible;
        opacity: 1;
        height: auto;
        max-height: none;
        overflow: visible;

        font-size: .82rem;
        line-height: 1.55;
        color: var(--muted);
        margin-top: 8px;
    }

    /* Futuristic hover/touch effect */

    .service-card:hover{
        transform:translateY(-6px);

        border-color:
            rgba(6,182,212,.45);

        box-shadow:
            0 10px 35px rgba(79,70,229,.25),
            0 0 20px rgba(6,182,212,.08);
    }

    .service-card:hover .service-icon{
        transform:
            scale(1.08)
            rotate(5deg);

        box-shadow:
            0 0 30px rgba(6,182,212,.35);
    }

}


/*==================================================*
* VERY SMALL PHONES
*==================================================*/

@media (max-width: 380px){

    .services-grid{
        gap:10px;
    }

    .service-card{
        min-height:165px;
        padding:18px 10px;
    }

    .service-icon{
        width:52px;
        height:52px;
        font-size:1.25rem;
    }

    .service-card h3{
        font-size:.85rem;
    }

        .service-card p {
        font-size: .9rem;
        line-height: 1.6;
    }

}

/*==================================================*
* COLORFUL SERVICE ICONS
*==================================================*/

.service-icon{
    position:relative;
    overflow:hidden;

    width:75px;
    height:75px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:22px;

    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(20px);

    transition:
        transform .4s ease,
        box-shadow .4s ease,
        border-color .4s ease;
}

/* Futuristic shine */

.service-icon::before{
    content:"";

    position:absolute;
    inset:-50%;

    background:
        conic-gradient(
            transparent,
            rgba(255,255,255,.25),
            transparent 30%
        );

    animation:serviceIconSpin 5s linear infinite;
}

/* Inner glow */

.service-icon::after{
    content:"";

    position:absolute;
    inset:2px;

    border-radius:20px;

    background:rgba(7,11,23,.55);

    z-index:0;
}

.service-icon i{
    position:relative;
    z-index:2;

    font-size:2rem;

    transition:
        transform .4s ease,
        filter .4s ease;
}


/*==================================================*
* INDIVIDUAL SERVICE COLORS
*==================================================*/

/* Website Development */
.service-card:nth-child(1) .service-icon{
    border-color:rgba(0,210,255,.45);
    box-shadow:
        0 0 25px rgba(0,210,255,.15),
        inset 0 0 20px rgba(0,210,255,.08);
}

.service-card:nth-child(1) .service-icon i{
    color:#00d9ff;
    filter:drop-shadow(0 0 10px rgba(0,217,255,.8));
}


/* Mobile Applications */
.service-card:nth-child(2) .service-icon{
    border-color:rgba(139,92,246,.5);
    box-shadow:
        0 0 25px rgba(139,92,246,.18),
        inset 0 0 20px rgba(139,92,246,.08);
}

.service-card:nth-child(2) .service-icon i{
    color:#a78bfa;
    filter:drop-shadow(0 0 10px rgba(139,92,246,.85));
}


/* eCommerce */
.service-card:nth-child(3) .service-icon{
    border-color:rgba(34,197,94,.45);
    box-shadow:
        0 0 25px rgba(34,197,94,.16),
        inset 0 0 20px rgba(34,197,94,.08);
}

.service-card:nth-child(3) .service-icon i{
    color:#4ade80;
    filter:drop-shadow(0 0 10px rgba(34,197,94,.8));
}


/* Graphic Design */
.service-card:nth-child(4) .service-icon{
    border-color:rgba(236,72,153,.45);
    box-shadow:
        0 0 25px rgba(236,72,153,.16),
        inset 0 0 20px rgba(236,72,153,.08);
}

.service-card:nth-child(4) .service-icon i{
    color:#f472b6;
    filter:drop-shadow(0 0 10px rgba(236,72,153,.8));
}


/* Business Registration */
.service-card:nth-child(5) .service-icon{
    border-color:rgba(251,191,36,.5);
    box-shadow:
        0 0 25px rgba(251,191,36,.16),
        inset 0 0 20px rgba(251,191,36,.08);
}

.service-card:nth-child(5) .service-icon i{
    color:#fbbf24;
    filter:drop-shadow(0 0 10px rgba(251,191,36,.85));
}


/* Bluetooth Key Locators */
.service-card:nth-child(6) .service-icon{
    border-color:rgba(6,182,212,.5);
    box-shadow:
        0 0 25px rgba(6,182,212,.18),
        inset 0 0 20px rgba(6,182,212,.08);
}

.service-card:nth-child(6) .service-icon i{
    color:#22d3ee;
    filter:drop-shadow(0 0 10px rgba(6,182,212,.9));
}


/* Security Alarms */
.service-card:nth-child(7) .service-icon{
    border-color:rgba(239,68,68,.5);
    box-shadow:
        0 0 25px rgba(239,68,68,.18),
        inset 0 0 20px rgba(239,68,68,.08);
}

.service-card:nth-child(7) .service-icon i{
    color:#fb7185;
    filter:drop-shadow(0 0 10px rgba(239,68,68,.9));
}


/* Maintenance & Support */
.service-card:nth-child(8) .service-icon{
    border-color:rgba(129,140,248,.5);
    box-shadow:
        0 0 25px rgba(129,140,248,.18),
        inset 0 0 20px rgba(129,140,248,.08);
}

.service-card:nth-child(8) .service-icon i{
    color:#818cf8;
    filter:drop-shadow(0 0 10px rgba(129,140,248,.9));
}


/*==================================================*
* HOVER EFFECT
*==================================================*/

.service-card:hover .service-icon{
    transform: translateY(-3px) rotate(5deg) scale(1.05);
}

.service-card:hover .service-icon i{
    transform:scale(1.15) rotate(5deg);
}


/*==================================================*
* ANIMATION
*==================================================*/

@keyframes serviceIconSpin{

    0%{
        transform:rotate(0deg);
    }

    100%{
        transform:rotate(360deg);
    }

}

/*==================================================*
* MOBILE SECTION SPACING
*==================================================*/

@media(max-width:900px){

    section{
        padding:65px 6%;
    }

}

@media(max-width:600px){

    section{
        padding:50px 5%;
    }

    .section-header{
        margin-bottom:35px;
    }

    .section-header h2{
        font-size:2.2rem;
        margin-bottom:12px;
    }

    .section-header p{
        font-size:.95rem;
        line-height:1.6;
    }

}

/*==================================================
KASITU QUOTATION MODAL
==================================================*/

.quotation-modal {

    position:fixed;

    inset:0;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:25px;

    background:rgba(3,7,18,.82);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    opacity:0;

    visibility:hidden;

    pointer-events:none;

    transition:.4s ease;

    z-index:99999;

}


.quotation-modal.show {

    opacity:1;

    visibility:visible;

    pointer-events:auto;

}


/*==================================================
MODAL CARD
==================================================*/

.quotation-modal-card {

    position:relative;

    width:min(560px,100%);

    padding:45px;

    border-radius:30px;

    background:

        linear-gradient(
            145deg,
            rgba(13,19,37,.98),
            rgba(7,11,23,.98)
        );

    border:1px solid rgba(255,255,255,.12);

    box-shadow:

        0 40px 100px rgba(0,0,0,.65),

        0 0 80px rgba(79,70,229,.18),

        inset 0 1px 0 rgba(255,255,255,.06);

    transform:

        translateY(30px)
        scale(.94);

    transition:.45s ease;

    overflow:hidden;

}


.quotation-modal.show
.quotation-modal-card {

    transform:

        translateY(0)
        scale(1);

}


/*==================================================
DECORATIVE GLOW
==================================================*/

.quotation-modal-card::before {

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    top:-130px;

    right:-100px;

    background:#06B6D4;

    filter:blur(100px);

    opacity:.18;

    pointer-events:none;

}


.quotation-modal-card::after {

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    bottom:-130px;

    left:-100px;

    background:#8B5CF6;

    filter:blur(100px);

    opacity:.15;

    pointer-events:none;

}


/*==================================================
CLOSE BUTTON
==================================================*/

.quotation-close {

    position:absolute;

    top:18px;

    right:20px;

    width:42px;

    height:42px;

    border-radius:50%;

    border:1px solid var(--border);

    background:var(--glass);

    color:#fff;

    font-size:1.5rem;

    cursor:pointer;

    transition:.3s;

}


.quotation-close:hover {

    background:#4F46E5;

    transform:rotate(90deg);

}


/*==================================================
ICON
==================================================*/

.quotation-icon {

    width:78px;

    height:78px;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 22px;

    border-radius:24px;

    background:

        linear-gradient(
            135deg,
            #4F46E5,
            #06B6D4
        );

    box-shadow:

        0 0 45px
        rgba(6,182,212,.3);

    font-size:2rem;

}


/*==================================================
TAG
==================================================*/

.quotation-tag {

    display:block;

    text-align:center;

    color:#06B6D4;

    font-size:.75rem;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:10px;

}


/*==================================================
HEADING
==================================================*/

.quotation-modal-card h2 {

    text-align:center;

    font-size:clamp(1.7rem,4vw,2.4rem);

    margin-bottom:14px;

}


.quotation-modal-card > p {

    text-align:center;

    color:var(--muted);

    max-width:450px;

    margin:0 auto 28px;

}


/*==================================================
PREVIEW
==================================================*/

.quotation-preview {

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:15px;

    margin:25px 0 30px;

}


.quotation-preview > div {

    padding:20px;

    border-radius:18px;

    background:rgba(255,255,255,.045);

    border:1px solid rgba(255,255,255,.08);

}


.quotation-preview span {

    display:block;

    color:var(--muted);

    font-size:.75rem;

    margin-bottom:6px;

}


.quotation-preview strong {

    font-size:1.05rem;

}


/*==================================================
QUESTION
==================================================*/

.quotation-modal-card h3 {

    text-align:center;

    font-size:1rem;

    margin-bottom:20px;

}


/*==================================================
BUTTONS
==================================================*/

.quotation-actions {

    display:flex;

    justify-content:center;

    gap:14px;

    flex-wrap:wrap;

}


.quotation-actions button {

    min-width:190px;

}


/*==================================================
MOBILE
==================================================*/

@media(max-width:600px) {

    .quotation-modal {

        padding:15px;

    }

    .quotation-modal-card {

        padding:35px 22px;

        border-radius:25px;

    }

    .quotation-preview {

        grid-template-columns:1fr;

    }

    .quotation-actions {

        flex-direction:column;

    }

    .quotation-actions button {

        width:100%;

    }

}

/*==================================================
  KASITU WEBS — LIGHT MODE
==================================================*/

[data-theme="light"] {

    --primary:#4F46E5;
    --secondary:#0891B2;
    --accent:#7C3AED;

    --bg:#F5F7FB;
    --bg2:#FFFFFF;

    --glass:rgba(255,255,255,.78);
    --glass2:rgba(255,255,255,.92);

    --border:rgba(15,23,42,.12);

    --text:#111827;
    --muted:#5B6475;

    --success:#159957;
    --danger:#DC3545;

    --shadow:
        0 15px 40px rgba(15,23,42,.12);
}


/*==================================================
  LIGHT BODY
==================================================*/

[data-theme="light"] body {

    background:var(--bg);
    color:var(--text);
}


/*==================================================
  LIGHT BACKGROUND EFFECT
==================================================*/

[data-theme="light"] body::before {

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(79,70,229,.08),
            transparent 35%
        ),

        radial-gradient(
            circle at 80% 10%,
            rgba(6,182,212,.07),
            transparent 40%
        ),

        radial-gradient(
            circle at 60% 80%,
            rgba(139,92,246,.06),
            transparent 35%
        );
}


/*==================================================
  LIGHT GRID
==================================================*/

[data-theme="light"] .bg-grid {

    background-image:
        linear-gradient(
            rgba(15,23,42,.045) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(15,23,42,.045) 1px,
            transparent 1px
        );
}


/*==================================================
  LIGHT HEADER
==================================================*/

[data-theme="light"] .header.scrolled {

    background:rgba(255,255,255,.88);

    border-bottom:
        1px solid rgba(15,23,42,.10);

    box-shadow:
        0 10px 35px rgba(15,23,42,.10);
}


/*==================================================
  LIGHT NAVIGATION
==================================================*/

[data-theme="light"] .nav-links a {

    color:var(--text);
}

[data-theme="light"] .nav-links a:hover {

    color:var(--secondary);
}


/*==================================================
  LIGHT THEME BUTTON
==================================================*/

[data-theme="light"] #theme-toggle {

    color:var(--text);

    background:
        rgba(255,255,255,.85);

    border:
        1px solid rgba(15,23,42,.12);

    box-shadow:
        0 5px 20px rgba(15,23,42,.08);
}


/*==================================================
  LIGHT SECONDARY BUTTON
==================================================*/

[data-theme="light"] .secondary-btn {

    color:var(--text);

    background:
        rgba(255,255,255,.75);

    border:
        1px solid rgba(15,23,42,.12);

    box-shadow:
        0 8px 25px rgba(15,23,42,.06);
}

[data-theme="light"] .secondary-btn:hover {

    background:#FFFFFF;
}


/*==================================================
  LIGHT CARDS
==================================================*/

[data-theme="light"]
.service-card,

[data-theme="light"]
.project-card,

[data-theme="light"]
.price-card,

[data-theme="light"]
.testimonial-card,

[data-theme="light"]
.tech-card,

[data-theme="light"]
.feature,

[data-theme="light"]
.stat-card,

[data-theme="light"]
.trusted-grid div,

[data-theme="light"]
.hero-stats div {

    background:
        rgba(255,255,255,.82);

    border:
        1px solid rgba(15,23,42,.10);

    box-shadow:
        0 15px 35px rgba(15,23,42,.08);

    color:var(--text);
}


/*==================================================
  LIGHT CARD TEXT
==================================================*/

[data-theme="light"]
.service-card p,

[data-theme="light"]
.project-card p,

[data-theme="light"]
.price-card p,

[data-theme="light"]
.testimonial-card p,

[data-theme="light"]
.tech-card p,

[data-theme="light"]
.feature p,

[data-theme="light"]
.stat-card p {

    color:var(--muted);
}


/*==================================================
  LIGHT FORM
==================================================*/

[data-theme="light"]
input,

[data-theme="light"]
textarea,

[data-theme="light"]
select {

    background:
        rgba(255,255,255,.95);

    color:
        #111827;

    border:
        1px solid rgba(15,23,42,.14);
}

[data-theme="light"]
input::placeholder,

[data-theme="light"]
textarea::placeholder {

    color:#7A8496;
}

[data-theme="light"]
input:focus,

[data-theme="light"]
textarea:focus,

[data-theme="light"]
select:focus {

    border-color:
        var(--secondary);

    box-shadow:
        0 0 0 3px rgba(6,182,212,.12);

    outline:none;
}


/*==================================================
  LIGHT EXTRA OPTIONS
==================================================*/

[data-theme="light"]
.extra-option {

    background:
        rgba(255,255,255,.82);

    border:
        1px solid rgba(15,23,42,.10);

    color:var(--text);
}

[data-theme="light"]
.extra-option:hover {

    background:#FFFFFF;
}


/*==================================================
  LIGHT CALCULATOR
==================================================*/

[data-theme="light"]
.calculator,

[data-theme="light"]
.price-calculator {

    color:var(--text);
}


/*==================================================
  LIGHT TERMINAL
==================================================*/

[data-theme="light"]
#terminal,

[data-theme="light"]
.terminal {

    background:
        #111827;

    color:
        #E5E7EB;

    border:
        1px solid rgba(15,23,42,.15);
}


/*==================================================
  LIGHT COMMAND PALETTE
==================================================*/

[data-theme="light"]
#command-palette {

    background:
        rgba(255,255,255,.97);

    color:
        #111827;

    border:
        1px solid rgba(15,23,42,.12);

    box-shadow:
        0 25px 80px rgba(15,23,42,.20);
}


/*==================================================
  LIGHT MODALS
==================================================*/

[data-theme="light"]
.quotation-modal,

[data-theme="light"]
#quotation-modal {

    background:
        rgba(15,23,42,.35);
}


/* Modal content */

[data-theme="light"]
.quotation-modal-content,

[data-theme="light"]
#quotation-modal .modal-content,

[data-theme="light"]
#quotation-modal .quotation-content {

    background:
        #FFFFFF;

    color:
        #111827;

    border:
        1px solid rgba(15,23,42,.12);

    box-shadow:
        0 30px 90px rgba(15,23,42,.20);
}


/*==================================================
  LIGHT MODAL TEXT
==================================================*/

[data-theme="light"]
#quotation-modal h2,

[data-theme="light"]
#quotation-modal h3,

[data-theme="light"]
#quotation-modal p,

[data-theme="light"]
#quotation-modal span {

    color:inherit;
}


/*==================================================
  LIGHT SCROLLBAR
==================================================*/

[data-theme="light"] ::-webkit-scrollbar {

    width:10px;
}

[data-theme="light"] ::-webkit-scrollbar-track {

    background:#EEF1F6;
}

[data-theme="light"] ::-webkit-scrollbar-thumb {

    background:#B7C0CF;

    border-radius:20px;
}

[data-theme="light"] ::-webkit-scrollbar-thumb:hover {

    background:#8D98AA;
}

/*==================================================
   KASITU QUOTATION MODAL — LIGHT MODE FIX
==================================================*/

[data-theme="light"] .quotation-modal {
    background:rgba(15,23,42,.45);
}

[data-theme="light"] .quotation-modal-card {
    background:
        linear-gradient(
            145deg,
            #FFFFFF,
            #F8FAFC
        );

    color:#111827;

    border:
        1px solid rgba(15,23,42,.12);

    box-shadow:
        0 30px 90px rgba(15,23,42,.22);
}


/* Modal heading */

[data-theme="light"] .quotation-modal-card h2,
[data-theme="light"] .quotation-modal-card h3 {
    color:#111827;
}


/* Modal paragraph */

[data-theme="light"] .quotation-modal-card > p {
    color:#5B6475;
}


/* Close button */

[data-theme="light"] .quotation-close {
    background:#FFFFFF;
    color:#111827;
    border:
        1px solid rgba(15,23,42,.12);

    box-shadow:
        0 5px 20px rgba(15,23,42,.08);
}

[data-theme="light"] .quotation-close:hover {
    background:#4F46E5;
    color:#FFFFFF;
}


/* Preview cards */

[data-theme="light"] .quotation-preview > div {
    background:
        rgba(255,255,255,.90);

    border:
        1px solid rgba(15,23,42,.10);

    box-shadow:
        0 8px 25px rgba(15,23,42,.06);
}


[data-theme="light"] .quotation-preview span {
    color:#687386;
}


[data-theme="light"] .quotation-preview strong {
    color:#111827;
}


/* Decorative modal glow */

[data-theme="light"] .quotation-modal-card::before {
    opacity:.10;
}

[data-theme="light"] .quotation-modal-card::after {
    opacity:.08;
}


/*==================================================
   KASITU FOOTER — LIGHT MODE FIX
==================================================*/

[data-theme="light"] .footer {

    background:
        linear-gradient(
            180deg,
            #FFFFFF,
            #F3F6FB
        );

    border-top:
        1px solid rgba(15,23,42,.10);

    color:#111827;

    box-shadow:
        0 -10px 40px rgba(15,23,42,.06);
}


/* Footer headings */

[data-theme="light"] .footer h2,
[data-theme="light"] .footer h3 {
    color:#111827;
}


/* Footer text */

[data-theme="light"] .footer p,
[data-theme="light"] .footer li {
    color:#5B6475;
}


/* Footer links */

[data-theme="light"] .footer a {
    color:#374151;
}

[data-theme="light"] .footer a:hover {
    color:#0891B2;
}


/* Social buttons */

[data-theme="light"] .footer-social a {

    background:
        rgba(15,23,42,.06);

    border:
        1px solid rgba(15,23,42,.08);

    color:#374151;
}

[data-theme="light"] .footer-social a:hover {

    background:#4F46E5;

    color:#FFFFFF;

    border-color:#4F46E5;
}


/* Footer bottom */

[data-theme="light"] .footer-bottom {

    border-top:
        1px solid rgba(15,23,42,.10);

    color:#687386;
}

/* ==================================================
   KASITU INFORMATION MINI MODALS
   ================================================== */

.tech-info-card,
.feature {
    cursor: pointer;
    user-select: none;
}

.tech-info-card {
    position: relative;
    overflow: hidden;
}

.tech-info-card:hover,
.feature:hover {
    transform: translateY(-6px);
}


/* ==================================================
   PACKAGE INPUT + CLEAR BUTTON
   ================================================== */

.package-input-wrap {
    position: relative;
    width: 100%;
}

.package-input-wrap #site-type {
    width: 100%;
    padding-right: 48px;
}

.clear-package-btn {
    position: absolute;
    right: 12px;
    top: 35%;
    transform: translateY(-50%);

    width: 28px;
    height: 28px;

    padding: 0;
    margin: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.12);
    border-radius: 50%;

    background: rgba(255,255,255,.07);
    color: var(--muted);

    font-size: 20px;
    font-weight: 400;
    line-height: 28px;

    text-align: center;

    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity .25s ease,
        visibility .25s ease,
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}

.clear-package-btn.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.clear-package-btn:hover {
    background: rgba(255,79,109,.15);
    color: var(--danger);
    transform: translateY(-50%) scale(1.08);
}

/* ==================================================
   INFORMATION MODAL OVERLAY
   ================================================== */

.info-modal {
    position: fixed;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0,0,0,.62);
    backdrop-filter: blur(10px);

    z-index: 99999;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity .25s ease,
        visibility .25s ease;
}

.info-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* ==================================================
   MODAL BOX
   ================================================== */

.info-modal-box {
    position: relative;

    width: min(440px, 100%);

    padding: 38px 32px 30px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(20,28,55,.96),
            rgba(8,14,30,.97)
        );

    border: 1px solid rgba(255,255,255,.12);

    box-shadow:
        0 30px 90px rgba(0,0,0,.55),
        0 0 50px rgba(6,182,212,.12);

    backdrop-filter: blur(30px);

    transform:
        translateY(20px)
        scale(.94);

    transition:
        transform .3s ease;
}

.info-modal.active .info-modal-box {
    transform:
        translateY(0)
        scale(1);
}


/* ==================================================
   MODAL CLOSE BUTTON
   ================================================== */

.info-modal-close {
    position: absolute;

    top: 12px;
    right: 12px;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 50%;

    background: rgba(255,255,255,.06);

    color: var(--muted);

    font-size: 21px;
    font-weight: 400;

    line-height: 1;

    cursor: pointer;

    transition:
        .25s ease;
}

.info-modal-close:hover {
    color: #fff;
    background: rgba(255,79,109,.18);
    border-color: rgba(255,79,109,.35);
    transform: rotate(90deg);
}


/* ==================================================
   MODAL ICON
   ================================================== */

.info-modal-icon {
    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 18px;

    border-radius: 18px;

    background:
        linear-gradient(
            135deg,
            rgba(79,70,229,.25),
            rgba(6,182,212,.18)
        );

    border: 1px solid rgba(6,182,212,.20);

    box-shadow:
        0 0 30px rgba(6,182,212,.12);
}

.info-modal-icon i {
    font-size: 1.7rem;
    color: var(--secondary);
}


/* ==================================================
   MODAL CONTENT
   ================================================== */

.info-modal-label {
    display: inline-block;

    margin-bottom: 8px;

    font-size: .68rem;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: var(--secondary);
}

.info-modal-box h3 {
    margin-bottom: 12px;

    font-size: 1.65rem;
    line-height: 1.2;
}

.info-modal-box p {
    margin-bottom: 24px;

    color: var(--muted);

    font-size: .96rem;
    line-height: 1.7;
}


/* ==================================================
   MODAL BUTTON
   ================================================== */

.info-modal-ok {
    width: 100%;

    padding: 12px 20px;

    border: 1px solid rgba(255,255,255,.10);
    border-radius: 12px;

    background:
        linear-gradient(
            90deg,
            #4F46E5,
            #06B6D4
        );

    color: #fff;

    font-weight: 600;

    cursor: pointer;

    transition: .3s ease;
}

.info-modal-ok:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 30px rgba(79,70,229,.30);
}


/* ==================================================
   MOBILE MODAL
   ================================================== */

@media (max-width: 600px) {

    .info-modal {
        padding: 16px;
    }

    .info-modal-box {
        padding: 34px 22px 24px;
        border-radius: 20px;
    }

    .info-modal-box h3 {
        font-size: 1.4rem;
    }

    .info-modal-box p {
        font-size: .9rem;
    }

    .info-modal-icon {
        width: 55px;
        height: 55px;
    }

    .info-modal-close {
        width: 30px;
        height: 30px;
    }

}


/* ==================================================
   LIGHT MODE SUPPORT
   ================================================== */

[data-theme="light"] .info-modal-box {
    background:
        rgba(255,255,255,.97);

    border-color:
        rgba(0,0,0,.10);

    box-shadow:
        0 30px 80px rgba(0,0,0,.20);
}

[data-theme="light"] .info-modal-close {
    background: rgba(0,0,0,.05);
    color: #555;
}

[data-theme="light"] .info-modal-box p {
    color: #5b6475;
}

[data-theme="light"] .clear-package-btn {
    background: rgba(0,0,0,.05);
    color: #555;
}

/* ==================================================
   FLOATING WHATSAPP BUTTON
================================================== */

.floating-whatsapp {
    --wa-green: #25D366;
    --wa-dark: #128C7E;

    position: fixed;

    right: 24px;
    bottom: 92px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(37, 211, 102, .35);
    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            #25D366,
            #128C7E
        );

    color: white;

    cursor: pointer;

    touch-action: none;
    user-select: none;
    -webkit-user-select: none;

    z-index: 9999;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, .28),
        0 0 28px rgba(37, 211, 102, .20);

    transition:
        width .28s ease,
        border-radius .28s ease,
        box-shadow .28s ease,
        transform .28s ease;

    animation: whatsappFloat 4s ease-in-out infinite;
}


/* Hover */

.floating-whatsapp:hover {

    width: 148px;

    border-radius: 20px;

    box-shadow:
        0 18px 45px rgba(0, 0, 0, .34),
        0 0 32px rgba(37, 211, 102, .30);

}


/* Icon */

.floating-whatsapp-icon {

    position: relative;

    z-index: 3;

    width: 100%;
    height: 100%;

    display: grid;
    place-items: center;

    font-size: 1.65rem;

    transition: transform .28s ease;

}


.floating-whatsapp:hover
.floating-whatsapp-icon {

    transform: scale(1.05);

}


/* Glow ring */

.floating-whatsapp-ring {

    position: absolute;

    inset: -5px;

    border: 1px solid
        rgba(37, 211, 102, .35);

    border-radius: 22px;

    pointer-events: none;

    animation:
        whatsappPulse 2.8s ease-out infinite;

}


/* Chat label */

.floating-whatsapp-label {

    position: absolute;

    left: 55px;

    white-space: nowrap;

    font-size: .82rem;

    font-weight: 800;

    opacity: 0;

    transform: translateX(-8px);

    pointer-events: none;

    transition:
        opacity .2s ease,
        transform .2s ease;

}


.floating-whatsapp:hover
.floating-whatsapp-label {

    opacity: 1;

    transform: translateX(0);

}


/* Hold & drag hint */

.floating-whatsapp-hint {

    position: absolute;

    top: calc(100% + 9px);

    left: 50%;

    transform:
        translate(-50%, -4px);

    padding: 5px 9px;

    border-radius: 8px;

    font-size: .62rem;

    font-weight: 700;

    white-space: nowrap;

    background: var(--glass2);

    color: var(--text);

    border: 1px solid var(--border);

    opacity: 0;

    pointer-events: none;

    transition: .2s ease;

}


.floating-whatsapp.is-holding
.floating-whatsapp-hint,

.floating-whatsapp.is-dragging
.floating-whatsapp-hint {

    opacity: 1;

    transform:
        translate(-50%, 0);

}


/* While dragging */

.floating-whatsapp.is-holding,

.floating-whatsapp.is-dragging {

    animation: none;

    transform: scale(1.06);

    cursor: grabbing;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .36),
        0 0 40px rgba(37, 211, 102, .40);

}


/* Light mode */

[data-theme="light"]
.floating-whatsapp {

    box-shadow:
        0 12px 35px rgba(15, 23, 42, .16),
        0 0 25px rgba(37, 211, 102, .15);

}


[data-theme="light"]
.floating-whatsapp-hint {

    background: rgba(255,255,255,.95);

    color: #111827;

    border-color:
        rgba(15,23,42,.10);

}


/* Floating animation */

@keyframes whatsappFloat {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

}


/* Glow animation */

@keyframes whatsappPulse {

    0% {
        opacity: .7;
        transform: scale(.94);
    }

    70%, 100% {
        opacity: 0;
        transform: scale(1.18);
    }

}


/* Mobile */

@media (max-width: 600px) {

    .floating-whatsapp {

        right: 16px;
        bottom: 120px;

        width: 54px;
        height: 54px;

        border-radius: 16px;

    }


    .floating-whatsapp:hover {

        width: 54px;

        border-radius: 16px;

    }


    .floating-whatsapp-label {

        display: none;

    }

}

/* ==================================================
   SUPPORT / WORKING HOURS
================================================== */

.support-section {

    position: relative;

    overflow: hidden;

}


.support-section::before {

    content: "";

    position: absolute;

    width: 600px;

    height: 600px;

    left: 50%;

    top: 30%;

    transform:
        translate(-50%, -50%);

    background:
        radial-gradient(
            circle,
            rgba(79,70,229,.10),
            transparent 68%
        );

    pointer-events: none;

}


.support-grid {

    position: relative;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 18px;

    max-width: 1100px;

    margin: 50px auto 0;

}


.support-card {

    position: relative;

    padding: 30px;

    border-radius: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(255,255,255,.055),
            rgba(6,182,212,.025)
        );

    border: 1px solid var(--border);

    backdrop-filter: blur(22px);

    overflow: hidden;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

}


.support-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: -100%;

    width: 70%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #06B6D4,
            #8B5CF6,
            transparent
        );

    transition: left .7s ease;

}


.support-card:hover::before {

    left: 130%;

}


.support-card:hover {

    transform:
        translateY(-8px);

    border-color:
        rgba(6,182,212,.35);

    box-shadow:
        0 20px 50px rgba(0,0,0,.25),
        0 0 30px rgba(6,182,212,.08);

}


.support-icon {

    width: 52px;

    height: 52px;

    display: grid;

    place-items: center;

    margin-bottom: 20px;

    border-radius: 16px;

    color: #06B6D4;

    background:
        linear-gradient(
            135deg,
            rgba(79,70,229,.22),
            rgba(6,182,212,.16)
        );

    border: 1px solid
        rgba(6,182,212,.25);

    font-size: 1.2rem;

}


.support-label {

    display: block;

    margin-bottom: 8px;

    color: #06B6D4;

    font-size: .65rem;

    font-weight: 800;

    letter-spacing: 2px;

}


.support-card h3 {

    margin-bottom: 10px;

    font-size: 1.2rem;

}


.support-card p {

    color: var(--muted);

    font-size: .85rem;

    line-height: 1.7;

}


/* HOURS */

.hours-list {

    display: flex;

    flex-direction: column;

    gap: 10px;

    margin-top: 18px;

}


.hours-list div {

    display: flex;

    justify-content: space-between;

    gap: 15px;

    padding: 10px 12px;

    border-radius: 10px;

    background:
        rgba(255,255,255,.035);

    border: 1px solid
        rgba(255,255,255,.05);

}


.hours-list span {

    color: var(--muted);

    font-size: .78rem;

}


.hours-list strong {

    font-size: .78rem;

    color: #06B6D4;

}


/* STATUS */

.online-status {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 20px;

    padding: 8px 12px;

    border-radius: 30px;

    background:
        rgba(33,208,122,.08);

    border: 1px solid
        rgba(33,208,122,.20);

    color: #21d07a;

    font-size: .68rem;

    font-weight: 700;

}


.online-status span {

    width: 7px;

    height: 7px;

    border-radius: 50%;

    background: #21d07a;

    box-shadow:
        0 0 10px #21d07a;

    animation:
        supportPulse 2s infinite;

}


@keyframes supportPulse {

    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: .35;
    }

}


/* ACTION */

.support-action {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    margin-top: 20px;

    padding: 11px 16px;

    border-radius: 12px;

    color: white;

    background:
        linear-gradient(
            90deg,
            #4F46E5,
            #06B6D4
        );

    font-size: .75rem;

    font-weight: 700;

    transition: .3s;

}


.support-action:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 10px 25px
        rgba(6,182,212,.20);

}


/* PHONE */

@media (max-width: 600px) {

    .support-section {

        padding-top: 55px;

        padding-bottom: 55px;

    }

    .support-grid {

        grid-template-columns: 1fr;

        gap: 10px;

        margin-top: 30px;

    }

    .support-card {

        padding: 20px;

        border-radius: 18px;

    }

    .support-icon {

        width: 44px;

        height: 44px;

        margin-bottom: 14px;

        border-radius: 13px;

    }

    .support-card h3 {

        font-size: 1rem;

    }

    .support-card p {

        font-size: .76rem;

    }

}

/* ==================================================
   MOBILE — TIGHTER SECTION SPACING
================================================== */

@media (max-width: 600px) {

    section {

        padding-top: 20px;

        padding-bottom: 20px;

    }


    .section-header {

        margin-bottom: 30px;

    }


    .section-header h2 {

        margin-bottom: 12px;

    }


    .section-header p {

        font-size: .88rem;

        line-height: 1.6;

    }


    .trusted {

        padding-top: 40px;

        padding-bottom: 40px;

    }


    .services-grid,

    .portfolio-grid,

    .testimonial-grid {

        gap: 12px;

    }


    .faq-container {

        margin-top: 30px;

    }


    .faq-container details {

        margin-bottom: 10px;

        padding: 15px;

    }


    .contact-grid {

        gap: 25px;

        margin-top: 30px;

    }

    .price {
       margin: 0px;   
    }

    .price-card ul {
        margin: 5px 0; 
    }

    .footer {

        margin-top: 50px;

        padding-top: 50px;

    }

}

/* ==================================================
   FUTURISTIC CONTACT INFORMATION
================================================== */

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}


/* CONTACT CARD */

.contact-link.info-card {

    position: relative;

    display: flex;

    align-items: center;

    gap: 20px;

    padding: 22px;

    min-height: 105px;

    color: inherit;

    text-decoration: none;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.055),
            rgba(6,182,212,.025)
        );

    border: 1px solid var(--border);

    border-radius: 22px;

    backdrop-filter: blur(22px);

    overflow: hidden;

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease,
        background .35s ease;

}


/* Moving futuristic line */

.contact-link.info-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 80%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #06B6D4,
            #8B5CF6,
            transparent
        );

    box-shadow:
        0 0 14px #06B6D4;

    transition: left .7s ease;

}


.contact-link.info-card:hover::before {

    left: 120%;

}


/* Glow */

.contact-link.info-card::after {

    content: "";

    position: absolute;

    width: 120px;

    height: 120px;

    right: -70px;

    top: -60px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(6,182,212,.16),
            transparent 70%
        );

    pointer-events: none;

}


/* Hover */

.contact-link.info-card:hover {

    transform:
        translateX(8px)
        translateY(-3px);

    border-color:
        rgba(6,182,212,.45);

    background:
        linear-gradient(
            135deg,
            rgba(6,182,212,.10),
            rgba(79,70,229,.08)
        );

    box-shadow:
        0 18px 45px rgba(0,0,0,.25),
        0 0 28px rgba(6,182,212,.12);

}


/* ICON */

.info-card-icon {

    flex-shrink: 0;

    width: 58px;

    height: 58px;

    display: grid;

    place-items: center;

    border-radius: 17px;

    background:
        linear-gradient(
            135deg,
            rgba(79,70,229,.25),
            rgba(6,182,212,.20)
        );

    border: 1px solid
        rgba(6,182,212,.25);

    color: #06B6D4;

    font-size: 1.35rem;

    box-shadow:
        inset 0 0 20px rgba(6,182,212,.06),
        0 0 20px rgba(6,182,212,.08);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


.contact-link.info-card:hover
.info-card-icon {

    transform:
        rotate(-5deg)
        scale(1.08);

    box-shadow:
        0 0 25px rgba(6,182,212,.25);

}


/* LABEL */

.contact-label {

    display: block;

    margin-bottom: 3px;

    color: #06B6D4;

    font-size: .68rem;

    font-weight: 800;

    letter-spacing: 2px;

}


/* TITLE */

.contact-link.info-card h3 {

    margin: 0 0 3px;

    font-size: 1.05rem;

}


/* DESCRIPTION */

.contact-link.info-card p {

    margin: 0;

    color: var(--muted);

    font-size: .82rem;

}


/* SMALL ACTION */

.contact-link.info-card small {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    margin-top: 7px;

    color: #8B5CF6;

    font-size: .68rem;

    font-weight: 700;

    opacity: .85;

}


.contact-link.info-card small i {

    font-size: .58rem;

}


/* MOBILE */

@media (max-width: 600px) {

    .contact-info {

        gap: 10px;

    }

    .contact-link.info-card {

        padding: 16px;

        min-height: 88px;

        gap: 14px;

        border-radius: 18px;

    }

    .info-card-icon {

        width: 46px;

        height: 46px;

        border-radius: 14px;

        font-size: 1.05rem;

    }

    .contact-link.info-card h3 {

        font-size: .88rem;

    }

    .contact-link.info-card p {

        font-size: .72rem;

    }

    .contact-link.info-card small {

        font-size: .60rem;

        margin-top: 4px;

    }

    .contact-label {

        font-size: .58rem;

        letter-spacing: 1.5px;

    }

    .contact-link.info-card:hover {

        transform: translateY(-2px);

    }

}
