html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: #f8f8f8;
    color: #111;
    overflow-x: hidden;
}

/* HERO */

.hero {
    min-height: 100vh;
    padding: 30px 80px;
    background:
        linear-gradient(rgba(10,10,10,0.65), rgba(10,10,10,0.65)),
        url('Images/Hero.webp');
    background-size: cover;
    background-position: center;
}

/* NAVBAR */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 16px 80px;
    z-index: 1000;
    background: transparent;
    transition: 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.82);
    box-shadow: 0 8px 30px rgba(0,0,0,0.18);
    backdrop-filter: blur(6px);
}

.logo {
    color: white;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -1px;
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    position: relative;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #d4b06a;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #d4b06a;
}

.nav-links a:hover::after {
    width: 100%;
}

/* HERO CONTENT */

.hero-content {
    max-width: 720px;
    margin-top: 220px;
}

.hero-content h1 {
    color: white;
    font-size: 78px;
    line-height: 1;
    margin-bottom: 28px;
    letter-spacing: -3px;
}

.hero-content p {
    color: #e0e0e0;
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 45px;
}

.btn,
.contact-btn {
    display: inline-block;
    background: #d4b06a;
    color: black;
    padding: 18px 38px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.btn:hover,
.contact-btn:hover {
    background: white;
    transform: translateY(-3px);
}

/* TRUST BAR */

.trust-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #08090c;
    color: white;
    text-align: center;
    padding: 30px 80px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.trust-bar div {
    border-right: 1px solid rgba(255,255,255,0.12);
}

.trust-bar div:last-child {
    border-right: none;
}

/* GENERAL */

.section-title span,
.contact-box span {
    color: #d4b06a;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 20px;
}

.section-title h2 {
    font-size: 60px;
    margin-top: 18px;
    margin-bottom: 70px;
    color: #111;
    letter-spacing: -2px;
}

.center {
    text-align: center;
}

/* ABOUT */

.about {
    padding: 140px 80px;
    background: white;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 32px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.about-text h3 {
    font-size: 48px;
    line-height: 1.15;
    margin-bottom: 28px;
    color: #111;
    letter-spacing: -2px;
}

.about-text p {
    font-size: 19px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 28px;
}

/* SERVICES */

.services {
    background: #0f1115;
    padding: 140px 80px;
}

.services .section-title h2 {
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-top: 70px;
}

.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 45px;
    opacity: 0;
    transform: translateY(50px);
    transition: 0.7s ease;
    backdrop-filter: blur(10px);
}

.service-card.show {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #d4b06a;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.service-card span {
    color: #d4b06a;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
}

.service-card h3 {
    color: white;
    font-size: 30px;
    margin-top: 18px;
    margin-bottom: 18px;
}

.service-card p {
    color: #cfcfcf;
    line-height: 1.9;
    font-size: 17px;
}

/* PROCESS */

.process {
    padding: 140px 80px;
    background: #f7f5f0;
}

.process-image {
    margin-top: 70px;
    display: flex;
    justify-content: center;
}

.process-image img {
    width: 100%;
    max-width: 1300px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

/* CONTACT */

.contact {
    padding: 150px 25px;
    background:
        linear-gradient(rgba(8,8,8,0.75), rgba(8,8,8,0.75)),
        url('Images/Hero.webp');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.contact-box {
    max-width: 850px;
    margin: auto;
}

.contact-box h2 {
    color: white;
    font-size: 62px;
    margin-top: 22px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.contact-box p {
    color: #d8d8d8;
    font-size: 20px;
    line-height: 1.9;
    margin-top: 30px;
    margin-bottom: 45px;
}

.contact-btn {
    padding: 18px 42px;
}

.contact-info {
    margin-top: 40px;
}

.contact-info p {
    color: #d8d8d8;
    font-size: 18px;
    margin-bottom: 14px;
}

.contact-info a {
    color: #d4b06a;
    text-decoration: none;
}

.contact-info a:hover {
    color: white;
}

/* FOOTER */

.footer {
    background: #08090c;
    color: white;
    padding: 70px 80px 35px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
}

.footer h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.footer p {
    color: #bdbdbd;
    line-height: 1.8;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    color: #d4b06a;
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
}

/* FLOAT ICONS */

.whatsapp-float {
    position: fixed;
    right: 34px;
    bottom: 34px;
    z-index: 2000;
    transition: 0.3s ease;
}

.whatsapp-float img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.phone-float {
    position: fixed;
    right: 34px;
    bottom: 95px;
    z-index: 2000;
    transition: 0.3s ease;
}

.phone-float img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.whatsapp-float:hover,
.phone-float:hover {
    transform: translateY(-4px) scale(1.06);
}

/* FADE */

.fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* LEGAL PAGES */

.legal-page {
    padding: 180px 80px 100px;
    max-width: 900px;
    margin: auto;
}

.legal-page h1 {
    font-size: 56px;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 20px;
}

.legal-page p {
    font-size: 18px;
    line-height: 1.9;
    color: #444;
}

.legal-page a {
    color: #d4b06a;
    text-decoration: none;
}

.legal-page a:hover {
    color: black;
}

/* RESPONSIVE */

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .about,
    .services,
    .process {
        padding: 90px 25px;
    }

    .about-container,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 44px;
    }

    .process-image img {
        border-radius: 20px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 25px;
    }

    .navbar {
        padding: 14px 25px;
    }

    .logo {
        font-size: 24px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        right: 25px;
        flex-direction: column;
        background: rgba(0,0,0,0.92);
        padding: 22px 28px;
        border-radius: 18px;
        gap: 18px;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-content {
        margin-top: 170px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p,
    .contact-box p {
        font-size: 18px;
    }

    .about-text h3 {
        font-size: 38px;
    }

    .contact-box h2 {
        font-size: 42px;
    }

    .trust-bar {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 30px 25px;
    }

    .trust-bar div {
        border-right: none;
    }

    .footer {
        padding: 50px 25px 25px;
    }

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
    }

    .whatsapp-float img {
        width: 40px;
        height: 40px;
    }

    .phone-float {
        right: 16px;
        bottom: 72px;
    }

    .phone-float img {
        width: 34px;
        height: 34px;
    }

    .legal-page {
        padding: 140px 25px 80px;
    }

    .legal-page h1 {
        font-size: 40px;
    }

    .legal-page h2 {
        font-size: 26px;
    }

    .legal-page p {
        font-size: 17px;
    }
}
