/* ==========================================
   SOFTOGRID CONTACT PAGE
   PREMIUM ENTERPRISE DESIGN
========================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#0B0B0F;
    color:#fff;
    overflow-x:hidden;
}


/* HEADER */

/*=========================
HEADER
=========================*/

/*=========================
FLOATING HEADER
=========================*/

/*==========================
HEADER
==========================*/


.header{

    position:fixed;

    top:20px;

    left:50%;

    transform:translateX(-50%);

    width:90%;

    z-index:1000;


    /* subtle cyan glow behind navbar */

    filter:drop-shadow(0 0 20px rgba(0,234,255,0.25));

}



.navbar{

    height:75px;

    padding:0 35px;

    display:flex;

    align-items:center;

    justify-content:space-between;


    /* SoftoGrid Glass Background */

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,0.18),
        rgba(16, 200, 216, 0.888)
    );


    backdrop-filter:blur(18px);


    /* Border Glow */

    border:1px solid rgba(255,255,255,0.35);


    box-shadow:

    0 8px 35px rgba(0,234,255,0.15),
    
    inset 0 0 20px rgba(255,255,255,0.08);


    border-radius:25px;

}

/*==========================
LOGO
==========================*/


.brand{

    display:flex;

    align-items:center;

    gap:12px;

    text-decoration:none;

}



.brand img{

    width:45px;

    height:45px;

    object-fit:contain;

}



.brand-text h2{

    margin:0;

    font-size:24px;

    color:white;

    font-weight:700;

    letter-spacing:.5px;

}



.brand-text span{

    color:#00eaff;

    font-size:12px;

    letter-spacing:3px;

}



/*==========================
NAV LINKS
==========================*/


.nav-links{

    display:flex;

    align-items:center;

    gap:35px;

    list-style:none;

    margin:0;

    padding:0;

}



.nav-links a{

    color:rgb(9, 9, 9);

    text-decoration:none;

    font-size:16px;

    font-weight:500;

    position:relative;

    transition:.3s;

}



.nav-links a::after{

    content:"";

    position:absolute;

    bottom:-8px;

    left:0;

    width:0;

    height:2px;

    background:#00eaff;

    transition:.3s;

}



.nav-links a:hover::after,
.nav-links a.active::after{

    width:100%;

}



.nav-links a:hover{

    color:#00eaff;

}




/* ===========================
          HERO
=========================== */

.contact-hero{

    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    position:relative;

    overflow:hidden;

    padding:120px 10% 80px;

}

.hero-content{

    max-width:900px;
    position:relative;
    z-index:10;

}

.small-title{

    display:inline-block;

    color:#FFB347;

    letter-spacing:4px;

    font-weight:700;

    margin-bottom:25px;

}

.hero-content h1{

    font-size:72px;
    line-height:1.1;
    font-weight:900;

}

.hero-content h1 span{

    color:#FF6B35;

}

.hero-content p{

    margin:35px auto;

    color:#BDBDBD;

    line-height:1.9;

    max-width:720px;

    font-size:20px;

}

.hero-btn{

    display:inline-block;

    margin-top:20px;

    background:#FF6B35;

    color:white;

    text-decoration:none;

    padding:18px 45px;

    border-radius:50px;

    transition:.4s;

    font-weight:700;

}

.hero-btn:hover{

    background:#FFB347;

    color:#111;

    transform:translateY(-8px);

}



/* ===========================
       FLOATING BLOBS
=========================== */

.blob{

    position:absolute;

    border-radius:50%;

    filter:blur(100px);

    opacity:.35;

}

.one{

    width:380px;
    height:380px;

    background:#ff6b35;

    top:-80px;
    left:-80px;

}

.two{

    width:450px;
    height:450px;

    background:#ffb347;

    bottom:-120px;
    right:-120px;

}



/* ===========================
       CONTACT CARDS
=========================== */

.contact-info{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    padding:90px 8%;

}

.contact-card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:45px 30px;

    text-align:center;

    backdrop-filter:blur(12px);

    transition:.4s;

}

.contact-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 60px rgba(255,107,53,.25);

    border-color:#FF6B35;

}

.contact-card i{

    font-size:46px;

    color:#FF6B35;

    margin-bottom:25px;

}

.contact-card h3{

    margin-bottom:15px;

    font-size:25px;

}

.contact-card p{

    font-size:18px;

    font-weight:600;

    margin-bottom:12px;

}

.contact-card span{

    color:#BDBDBD;

    line-height:1.7;

}



/* ===========================
     WHY SOFTOGRID
=========================== */

.why-softogrid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

    padding:120px 8%;

}

.section-tag{

    color:#FFB347;

    font-weight:700;

    letter-spacing:2px;

}

.left h2{

    font-size:56px;

    margin:25px 0;

    line-height:1.2;

}

.left p{

    color:#BDBDBD;

    line-height:2;

    font-size:18px;

}

.right{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:25px;

}

.feature{

    background:#16161D;

    border-radius:20px;

    padding:30px;

    text-align:center;

    transition:.35s;

    border:1px solid rgba(255,255,255,.06);

}

.feature:hover{

    transform:translateY(-8px);

    border-color:#FF6B35;

}

.feature i{

    font-size:36px;

    color:#FF6B35;

    margin-bottom:18px;

}











/* ===========================
        JOURNEY SECTION
=========================== */

.journey{

    padding:120px 8%;

    background:linear-gradient(
        180deg,
        #0b0b0f 0%,
        #12121a 100%
    );

}

.journey h2{

    text-align:center;

    font-size:54px;

    margin-bottom:70px;

    font-weight:800;

}

.journey h2 span{

    color:#FF6B35;

}



.timeline{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    position:relative;

}



.timeline::before{

    content:"";

    position:absolute;

    top:42px;

    left:12%;

    width:76%;

    height:2px;

    background:linear-gradient(
        90deg,
        #FF6B35,
        #FFB347
    );

}



.step{

    position:relative;

    text-align:center;

    z-index:2;

}



.number{

    width:85px;

    height:85px;

    border-radius:50%;

    margin:auto;

    background:#FF6B35;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    font-weight:800;

    box-shadow:
    0 15px 35px rgba(255,107,53,.35);

}



.step h3{

    margin-top:30px;

    margin-bottom:15px;

    font-size:24px;

}



.step p{

    color:#BDBDBD;

    line-height:1.8;

}





/*==================================
            FOOTER
==================================*/

#footer{
    position:relative;
    overflow:hidden;
    background:linear-gradient(180deg,#081220 0%,#050b15 100%);
    padding:90px 8% 30px;
}

/*==========================
TOP GLOW LINE
==========================*/

.footer-top-line{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:2px;
    background:linear-gradient(90deg,
    transparent,
    #00eaff,
    #4df6ff,
    transparent);
    box-shadow:0 0 25px #00eaff;
}

/*==========================
BACKGROUND
==========================*/

.footer-bg{
    position:absolute;
    inset:0;
    overflow:hidden;
    pointer-events:none;
}

.footer-bg span{
    position:absolute;
    border-radius:50%;
    background:rgba(0,234,255,.08);
    filter:blur(90px);
    animation:footerFloat 12s ease-in-out infinite;
}

.footer-bg span:nth-child(1){
    width:240px;
    height:240px;
    left:-60px;
    top:-40px;
}

.footer-bg span:nth-child(2){
    width:300px;
    height:300px;
    right:-100px;
    bottom:-120px;
    animation-delay:2s;
}

.footer-bg span:nth-child(3){
    width:220px;
    height:220px;
    left:45%;
    top:30%;
    animation-delay:4s;
}

/*==========================
CONTAINER
==========================*/

#footer .container{
    position:relative;
    z-index:2;
    max-width:1200px;
    margin:auto;
}

/*==========================
CONTENT
==========================*/

.footer-content{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:70px;
    margin-bottom:70px;
}

/*==========================
LOGO
==========================*/

.footer-logo{
    width:70px;
    margin-bottom:18px;
}

.footer-brand h2{
    color:#fff;
    font-size:30px;
    margin-bottom:18px;
}

.footer-brand p{
    color:rgba(255,255,255,.72);
    line-height:1.9;
    max-width:420px;
}

/*==========================
HEADINGS
==========================*/

.footer-links h3,
.footer-contact h3{
    color:#fff;
    margin-bottom:25px;
    position:relative;
    display:inline-block;
}

.footer-links h3::after,
.footer-contact h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:45px;
    height:2px;
    background:#00eaff;
}

/*==========================
LINKS
==========================*/

.footer-links ul{
    list-style:none;
}

.footer-links li{
    margin-bottom:16px;
}

.footer-links a{
    color:rgba(255,255,255,.7);
    text-decoration:none;
    transition:.35s;
}

.footer-links a:hover{
    color:#00eaff;
    padding-left:8px;
}

/*==========================
CONTACT
==========================*/

.footer-contact-item{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:18px;
}

.footer-contact-item i{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(0,234,255,.08);
    color:#00eaff;
    border:1px solid rgba(0,234,255,.2);
}

.footer-contact-item a,
.footer-contact-item span{
    color:rgba(255,255,255,.72);
    text-decoration:none;
}

.footer-contact-item a:hover{
    color:#00eaff;
}

/*==========================
BOTTOM
==========================*/

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.footer-copy{
    color:rgba(255,255,255,.6);
}

/*==========================
SOCIAL
==========================*/

.footer-social{
    display:flex;
    gap:15px;
}

.footer-social a{
    width:50px;
    height:50px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    color:#fff;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(0,234,255,.15);
    transition:.35s;
}

.footer-social a:hover{
    background:#00eaff;
    color:#081220;
    transform:translateY(-6px);
    box-shadow:0 0 25px rgba(0,234,255,.5);
}

/*==========================
BACK TO TOP
==========================*/

#backToTop{
    position:fixed;
    right:30px;
    bottom:30px;
    width:55px;
    height:55px;
    border:none;
    outline:none;
    cursor:pointer;
    border-radius:50%;
    background:#00eaff;
    color:#081220;
    font-size:20px;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 0 25px rgba(0,234,255,.45);
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:999;
}

#backToTop.active{
    opacity:1;
    visibility:visible;
}

#backToTop:hover{
    transform:translateY(-8px);
}

/*==========================
ANIMATION
==========================*/

@keyframes footerFloat{

    0%,100%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-35px);
    }

}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:992px){

.footer-content{
grid-template-columns:1fr;
gap:45px;
}

.footer-brand p{
max-width:100%;
}

}

@media(max-width:768px){

#footer{
padding:70px 20px 25px;
}

.footer-brand h2{
font-size:26px;
}

.footer-bottom{
flex-direction:column;
text-align:center;
}

.footer-social{
justify-content:center;
}

#backToTop{
right:20px;
bottom:20px;
width:48px;
height:48px;
}

}

@media(max-width:480px){

.footer-logo{
width:60px;
}

.footer-brand h2{
font-size:22px;
}

.footer-contact-item{
align-items:flex-start;
}

}