/********** GLANZLY — CLEAN & MODERN CSS **********/

:root {
    --primary: #111;
    --secondary: #555;
    --light: #f8f8f8;
    --dark: #000;
}

/* GLOBAL */
body {
    font-family: 'Inter', sans-serif;
    background: #fff;
    color: #111;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
}

p {
    color: #444;
}

/* NAVBAR */
.navbar {
    background: #fff;
    border-bottom: 1px solid #eee;
}

.navbar-nav .nav-link {
    padding: 8px 18px;
    border-radius: 30px;
    transition: 0.25s ease;
    font-weight: 500;
    color: #111 !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: #111;
    color: #fff !important;
}

/* LOGO */
.glanzly-logo {
    height: 160px;
    transition: 0.3s ease;
}

@media (max-width: 992px) {
    .glanzly-logo {
        height: 110px;
    }
}

@media (max-width: 576px) {
    .glanzly-logo {
        height: 90px;
    }
}

/* HERO */
.hero-header {
    padding: 6rem 0;
    background: #f8f8f8 !important;
    text-align: center;
}

/* SECTION TITLE */
.section-title {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #555;
    text-transform: uppercase;
    margin-bottom: 10px;
}

/* SERVICE CARDS */
.service-item {
    background: #f8f8f8;
    padding: 40px 25px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.service-item:hover {
    background: #111;
    color: #fff;
    transform: translateY(-8px);
}

.service-item i {
    font-size: 32px;
    margin-bottom: 15px;
    color: #111;
    transition: 0.3s ease;
}

.service-item:hover i {
    color: #fff;
}

.service-item p {
    margin: 0;
    transition: 0.3s ease;
}

/* CTA */
.cta-section {
    background: #111;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

/* FOOTER */
footer {
    background: #000;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

footer img {
    height: 160px;
    margin-bottom: 20px;
}

footer p {
    color: #ccc;
}

/* BACK TO TOP */
.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #111;
    color: #fff;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: none;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.back-to-top:hover {
    background: #333;
}
