/* ========================= */
/* METERGURU PREMIUM UI STYLES */
/* ========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    line-height:1.6;
    overflow-x:hidden;
}

/* ========================= */
/* SCROLL PROGRESS BAR */
/* ========================= */

.scroll-progress{
    position:fixed;
    top:0;
    left:0;
    height:4px;
    width:0%;
    background:linear-gradient(90deg,#00e0ff,#ff7a00);
    z-index:9999;
}

/* ========================= */
/* SECTION LAYOUT */
/* ========================= */

section{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:80px 8%;
    position:relative;
}

.container{
    width:100%;
    max-width:1200px;
    display:flex;
    flex-direction:row;
    align-items:center;
    gap:70px;
}

.column{
    flex:1;
}

.logo-column{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

/* ========================= */
/* GLASS EFFECT PANELS */
/* ========================= */

.white .container,
.orange .container,
.contact .container{
    backdrop-filter:blur(14px);
    background:rgba(255,255,255,0.75);
    border-radius:18px;
    padding:50px;
    box-shadow:0 20px 50px rgba(0,0,0,0.08);
}

.orange .container{
    background:rgba(255,255,255,0.15);
}

/* ========================= */
/* HERO CINEMATIC VIDEO */
/* ========================= */

.hero{
    background:black;
    color:white;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle at 30% 20%,rgba(0,224,255,0.2),transparent 50%),
               radial-gradient(circle at 80% 80%,rgba(255,122,0,0.2),transparent 50%);
    animation:ambientGlow 12s infinite alternate ease-in-out;
}

@keyframes ambientGlow{
    0%{opacity:0.5}
    100%{opacity:1}
}

.hero video{
    width:100%;
    height:70vh;
    object-fit:cover;
    border-radius:16px;
    box-shadow:0 30px 70px rgba(0,0,0,0.5);
    transform:scale(1.02);
}

/* ========================= */
/* PARALLAX IMAGES */
/* ========================= */

img{
    width:100%;
    border-radius:16px;
    box-shadow:0 20px 50px rgba(0,0,0,0.12);
    transform:translateZ(0);
    transition:transform 0.4s ease;
}

img:hover{
    transform:scale(1.03);
}

/* ========================= */
/* TYPOGRAPHY */
/* ========================= */

.logo{
    font-size:46px;
    font-weight:bold;
    margin-bottom:25px;
    letter-spacing:1px;
}

.hero-text{
    font-size:34px;
    font-weight:500;
    line-height:1.4;
}

p{
    font-size:18px;
    margin-bottom:15px;
}

.service-title{
    font-size:24px;
    font-weight:bold;
    margin-top:20px;
    margin-bottom:6px;
}

.service-desc{
    font-size:18px;
    margin-bottom:16px;
    line-height:1.6;
}

h2{
    margin-bottom:25px;
    font-size:36px;
}

/* ========================= */
/* COLORS */
/* ========================= */

.white{
    background:linear-gradient(180deg,#ffffff,#f4f7fa);
}

.orange{
    background:linear-gradient(135deg,#ff7a00,#ff9d2f);
    color:white;
}

.contact{
    background:linear-gradient(180deg,#ffffff,#eef2f6);
}

/* ========================= */
/* CONTACT */
/* ========================= */

.contact-container{
    flex-direction:column;
    text-align:center;
}

.map-container{
    width:100%;
    max-width:900px;
    margin-bottom:40px;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

form{
    width:100%;
    max-width:600px;
    display:flex;
    flex-direction:column;
}

input, textarea{
    width:100%;
    padding:16px;
    margin-bottom:15px;
    border-radius:10px;
    border:1px solid #ddd;
    font-size:16px;
    background:white;
    transition:all 0.25s ease;
}

input:focus, textarea:focus{
    outline:none;
    border-color:#ff7a00;
    box-shadow:0 0 0 3px rgba(255,122,0,0.15);
}

button{
    padding:16px 32px;
    border:none;
    border-radius:10px;
    background:linear-gradient(135deg,#ff7a00,#ff9d2f);
    color:white;
    font-size:16px;
    cursor:pointer;
    transition:all 0.25s ease;
}

button:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* ========================= */
/* FLOATING CONTACT BUTTON */
/* ========================= */

.floating-contact{
    position:fixed;
    right:25px;
    bottom:25px;
    background:linear-gradient(135deg,#00e0ff,#00bcd4);
    color:white;
    padding:16px 22px;
    border-radius:50px;
    font-size:14px;
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
    cursor:pointer;
    z-index:999;
    transition:0.3s;
}

.floating-contact:hover{
    transform:scale(1.08);
}

/* ========================= */
/* FADE IN */
/* ========================= */

.fade-in{
    opacity:0;
    transform:translateY(50px);
    transition:all 1s ease;
}

.fade-in.visible{
    opacity:1;
    transform:translateY(0);
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:900px){

    .container{
        flex-direction:column;
        text-align:center;
        gap:40px;
    }

    .hero video{
        height:60vh;
    }

    .logo{
        font-size:38px;
    }

    .hero-text{
        font-size:24px;
    }

    h2{
        font-size:28px;
    }

}
