* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0a0a0a;
    color: white;
    font-family: Arial, sans-serif;
}

/* HEADER / GLASS NAV */

header {
    position: fixed;
    width: calc(100% - 40px);
    top: 20px;
    left: 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 28px;

    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.08);

    z-index: 1000;
}

header h1 {
    font-family: "Times New Roman", serif;
    font-size: 20px;
    font-weight: normal;
    letter-spacing: 0.5px;
}

nav a {
    color: #cccccc;
    text-decoration: none;
    margin-left: 25px;
    font-size: 14px;
    transition: 0.3s ease;
}

nav a:hover {
    color: white;
}

/* HERO */

.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;

    display: flex;
    align-items: center;

    padding-left: 80px;
}

/* VIDEO */

.bg-video {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 1;
}

/* OVERLAY */

.overlay {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.55);

    z-index: 2;
}

/* CONTENT */

.hero-content {
    position: relative;
    z-index: 3;

    max-width: 650px;
}

.brand-mark {
    font-family: "Times New Roman", serif;
    font-size: 60px;
    margin-bottom: 20px;
    color: white;
    letter-spacing: 2px;
}

.hero-content h2 {
    font-family: "Times New Roman", serif;
    font-size: 64px;
    font-weight: normal;
    line-height: 1.1;

    margin-bottom: 20px;
}

.hero-content p {
    color: #d0d0d0;
    font-size: 16px;
    line-height: 1.6;

    margin-bottom: 30px;
}

/* BUTTONS */

.buttons {
    display: flex;
    gap: 15px;
}

.btn {
    text-decoration: none;

    padding: 14px 28px;

    border: 1px solid #ffffff40;

    font-size: 14px;

    transition: 0.3s ease;
}

.primary {
    background: white;
    color: black;
}

.primary:hover {
    background: #d9d9d9;
}

.secondary {
    color: white;
}

.secondary:hover {
    background: rgba(255,255,255,0.1);
}
.brand-mark {
    font-family: "Times New Roman", serif !important;
    font-size: 90px !important;
    margin-bottom: 20px !important;
    color: white !important;
    letter-spacing: 2px !important;
}
html {
    scroll-behavior: smooth;
}
/* SERVICES */

.services {
    padding: 140px 80px;

    background: #0a0a0a;
}

.services-header {
    max-width: 900px;

    margin-bottom: 80px;
}

.services-subtitle {
    font-family: "Times New Roman", serif;

    font-size: 28px;

    color: white;

    margin-bottom: 25px;

    letter-spacing: 3px;

    opacity: 0.9;
}
.services-header h3 {
    font-family: "Times New Roman", serif;

    font-size: 52px;

    line-height: 1.2;

    font-weight: normal;
}

/* GRID */

.services-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 30px;
}

/* CARD */

.service-card {
    padding: 40px;

    background: #111;

    border: 1px solid rgba(255,255,255,0.05);

    transition: 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);

    border-color: rgba(255,255,255,0.12);
}

.service-card h4 {
    font-family: "Times New Roman", serif;

    font-size: 28px;

    margin-bottom: 20px;

    font-weight: normal;
}

.service-card p {
    color: #bbbbbb;

    line-height: 1.7;

    font-size: 15px;
}

/* PROJECTS */

.projects {
    padding: 100px 80px;
    background: #0a0a0a;
}

.projects h3 {
    font-family: "Times New Roman", serif;
    font-size: 40px;
    margin-bottom: 50px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.project-card {
    background: #111;

    overflow: hidden;

    border: 1px solid rgba(255,255,255,0.05);

    transition: 0.4s ease;
}

.project-card:hover {
    transform: translateY(-5px);

    border: 1px solid rgba(255,255,255,0.08);
}

.project-card img {
    width: 100%;

    height: 500px;

    object-fit: cover;

    transition: 0.6s ease;

    transform: scale(1);

    display: block;
}

.project-card:hover img {
    transform: scale(1.04);
}

.project-card p {
    padding: 22px;

    color: #e0e0e0;

    font-family: "Times New Roman", serif;

    font-size: 22px;

    letter-spacing: 0.5px;

    line-height: 1.4;
}

/* CONTACT */

.contact {
    padding: 140px 80px;

    background: #0a0a0a;
}

.contact-header {
    max-width: 800px;

    margin-bottom: 60px;
}

.contact-subtitle {
    font-family: "Times New Roman", serif;

    font-size: 28px;

    color: white;

    letter-spacing: 3px;

    margin-bottom: 20px;
}

.contact-header h3 {
    font-family: "Times New Roman", serif;

    font-size: 52px;

    font-weight: normal;

    margin-bottom: 20px;
}

.contact-header p {
    color: #cccccc;

    line-height: 1.7;
}

/* CONTACT LINKS */

.contact-links {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 25px;
}

.contact-card {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 40px;

    background: #111;

    border: 1px solid rgba(255,255,255,0.06);

    text-decoration: none;

    transition: 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-5px);

    border-color: rgba(255,255,255,0.15);
}

.contact-card span {
    color: #888;

    margin-bottom: 15px;

    letter-spacing: 1px;

    font-size: 14px;
}

.contact-card strong {
    color: white;

    font-family: "Times New Roman", serif;

    font-size: 26px;

    font-weight: normal;

    line-height: 1.4;
}

/* WHATSAPP */

.whatsapp:hover {
    background: rgba(255,255,255,0.03);
}

/* SOCIALS */

.socials {
    padding: 120px 80px;

    text-align: center;

    background: #0a0a0a;
}

.socials h3 {
    font-family: "Times New Roman", serif;

    font-size: 42px;

    margin-bottom: 20px;
}

.socials p {
    max-width: 700px;

    margin: 0 auto 40px auto;

    color: #cccccc;

    line-height: 1.7;
}

.social-links {
    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
}

.social-links a {
    color: white;

    text-decoration: none;

    border: 1px solid rgba(255,255,255,0.15);

    padding: 14px 28px;

    transition: 0.3s ease;
}

.social-links a:hover {
    background: rgba(255,255,255,0.08);

    transform: translateY(-2px);
}
/* ESTIMATE FORM */

.estimate {
    padding: 140px 80px;
    background: #0a0a0a;
}

.estimate-header {
    max-width: 850px;
    margin-bottom: 50px;
}

.estimate-subtitle {
    font-family: "Times New Roman", serif;
    font-size: 28px;
    color: white;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.estimate-header h3 {
    font-family: "Times New Roman", serif;
    font-size: 52px;
    font-weight: normal;
    margin-bottom: 20px;
}

.estimate-header p {
    color: #cccccc;
    line-height: 1.7;
}

.estimate-form {
    max-width: 900px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.estimate-form input,
.estimate-form textarea {
    width: 100%;
    background: #111;
    border: 1px solid rgba(255,255,255,0.12);
    color: white;
    padding: 18px;
    margin-bottom: 20px;
    font-size: 15px;
    outline: none;
}

.estimate-form textarea {
    height: 180px;
    resize: vertical;
}

.estimate-form input::placeholder,
.estimate-form textarea::placeholder {
    color: #777;
}

.estimate-form input:focus,
.estimate-form textarea:focus {
    border-color: rgba(255,255,255,0.45);
}

.estimate-form button {
    background: white;
    color: black;
    border: none;
    padding: 16px 34px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s ease;
}

.estimate-form button:hover {
    background: #d9d9d9;
}
/* FLOATING WHATSAPP */

.floating-whatsapp {
    position: fixed;

    bottom: 30px;
    right: 30px;

    width: 65px;
    height: 65px;

    border-radius: 50%;

    background: white;

    display: flex;
    justify-content: center;
    align-items: center;

    box-shadow: 0 10px 30px rgba(0,0,0,0.35);

    z-index: 999;

    transition: 0.3s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.05);
}

.floating-whatsapp img {
    width: 34px;
    height: 34px;
}
/* PHILOSOPHY */

.philosophy {
    padding: 150px 80px;
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.section-label {
    font-family: "Times New Roman", serif;
    font-size: 24px;
    letter-spacing: 3px;
    color: white;
    margin-bottom: 30px;
}

.philosophy h3 {
    max-width: 1000px;
    font-family: "Times New Roman", serif;
    font-size: 56px;
    line-height: 1.15;
    font-weight: normal;
    margin-bottom: 35px;
}

.philosophy p:last-child {
    max-width: 760px;
    color: #bbbbbb;
    line-height: 1.8;
    font-size: 16px;
}
/* SCROLL REVEAL */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
/* HERO ANIMATION */

.hero-animate .brand-mark {
    animation: fadeUp 1.2s ease forwards;
}

.hero-animate h2 {
    opacity: 0;
    animation: fadeUp 1.2s ease forwards;
    animation-delay: 0.25s;
}

.hero-animate p {
    opacity: 0;
    animation: fadeUp 1.2s ease forwards;
    animation-delay: 0.45s;
}

.hero-animate .buttons {
    opacity: 0;
    animation: fadeUp 1.2s ease forwards;
    animation-delay: 0.65s;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* PROCESS */

.process {
    padding: 140px 80px;
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.process h3 {
    max-width: 850px;
    font-family: "Times New Roman", serif;
    font-size: 52px;
    font-weight: normal;
    line-height: 1.2;
    margin-bottom: 70px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.process-card {
    padding: 35px;
    background: #111;
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.4s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.16);
}

.process-card span {
    display: block;
    font-family: "Times New Roman", serif;
    font-size: 18px;
    color: #777;
    margin-bottom: 30px;
}

.process-card h4 {
    font-family: "Times New Roman", serif;
    font-size: 30px;
    font-weight: normal;
    margin-bottom: 18px;
}

.process-card p {
    color: #bbbbbb;
    line-height: 1.7;
    font-size: 15px;
}
/* FOOTER */

.footer {
    padding: 70px 80px 40px;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer h4 {
    font-family: "Times New Roman", serif;
    font-size: 28px;
    font-weight: normal;
    margin-bottom: 12px;
}

.footer p {
    color: #999;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin: 35px 0;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
}

.footer-small {
    font-size: 13px;
    color: #666;
}
/* REVIEWS */

.reviews {
    padding: 140px 80px;
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.reviews h3 {
    font-family: "Times New Roman", serif;
    font-size: 52px;
    font-weight: normal;
    margin-bottom: 20px;
}

.reviews p {
    color: #cccccc;
    margin-bottom: 35px;
    line-height: 1.7;
}

.reviews-button {
    display: inline-block;
    color: black;
    background: white;
    text-decoration: none;
    padding: 16px 34px;
    font-size: 14px;
    transition: 0.3s ease;
}

.reviews-button:hover {
    background: #d9d9d9;
}
/* MOBILE RESPONSIVE */

@media (max-width: 768px) {

    header {
        width: calc(100% - 24px);
        top: 12px;
        left: 12px;
        padding: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    header h1 {
        font-size: 18px;
    }

    nav {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
    }

    nav a {
        margin-left: 0;
        font-size: 13px;
    }

    .hero {
        padding: 0 24px;
        height: 100vh;
    }

    .brand-mark {
        font-size: 64px !important;
    }

    .hero-content h2 {
        font-size: 44px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .philosophy,
    .services,
    .process,
    .projects,
    .socials,
    .estimate,
    .contact {
        padding: 90px 24px;
    }

    .philosophy h3,
    .services-header h3,
    .process h3,
    .estimate-header h3,
    .contact-header h3,
    .reviews h3 {
        font-size: 36px;
    }

    .section-label,
    .services-subtitle,
    .estimate-subtitle,
    .contact-subtitle {
        font-size: 20px;
    }

    .services-header {
        margin-bottom: 50px;
    }

    .service-card,
    .process-card,
    .contact-card {
        padding: 28px;
    }

    .project-card img {
        height: 430px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-card strong {
        font-size: 20px;
        word-break: break-word;
    }

    .footer {
        padding: 60px 24px 35px;
    }

    .floating-whatsapp {
        width: 58px;
        height: 58px;
        bottom: 22px;
        right: 22px;
    }

    .floating-whatsapp img {
        width: 30px;
        height: 30px;
    }
}
/* MOBILE / DESKTOP VIDEO SWITCH */

.mobile-video {
    display: none;
}

.desktop-video {
    display: block;
}

@media (max-width: 768px) {

    .desktop-video {
        display: none;
    }

    .mobile-video {
        display: block;
    }

}
@media (max-width: 768px) {

    .hero {
        align-items: flex-start;
        padding: 190px 24px 0 24px;
    }

    .hero-content {
        max-width: 100%;
    }

    .brand-mark {
        font-size: 58px !important;
        margin-bottom: 18px !important;
    }

    .hero-content h2 {
        font-size: 40px;
        line-height: 1.08;
    }

    .hero-content p {
        font-size: 14px;
        margin-bottom: 26px;
    }

    .buttons {
        width: 100%;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

}

/* ABOUT / WHY MPI */

.about {
    padding: 140px 80px;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.about h3 {
    max-width: 950px;
    font-family: "Times New Roman", serif;
    font-size: 54px;
    line-height: 1.15;
    font-weight: normal;
    margin-bottom: 35px;
}

.about p:not(.section-label) {
    max-width: 760px;
    color: #bbbbbb;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 22px;
}

/* LOGO STORY */

.logo-story {
    padding: 140px 80px;
    background: #0a0a0a;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.logo-story h3 {
    max-width: 950px;
    font-family: "Times New Roman", serif;
    font-size: 54px;
    line-height: 1.15;
    font-weight: normal;
    margin-bottom: 35px;
}

.logo-story p:not(.section-label) {
    max-width: 760px;
    color: #bbbbbb;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 22px;
}

/* FLOATING LOGO BUBBLE */

.floating-logo {
    position: fixed;
    bottom: 105px;
    right: 30px;

    width: 65px;
    height: 65px;

    border-radius: 50%;

    background: #0a0a0a;
    color: white;

    border: 1px solid rgba(255,255,255,0.25);

    display: flex;
    justify-content: center;
    align-items: center;

    font-family: "Times New Roman", serif;
    font-size: 26px;

    text-decoration: none;

    z-index: 999;

    box-shadow: 0 10px 30px rgba(0,0,0,0.35);

    transition: 0.3s ease;
}

.floating-logo:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: rgba(255,255,255,0.55);
}
/* SUCCESS PAGE */

.success-page {
    min-height: 100vh;
    background: #050505;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 40px;
}

.success-page h1 {
    font-family: "Times New Roman", serif;
    font-size: 90px;
    font-weight: normal;
    margin-bottom: 20px;
}

.success-page h2 {
    font-family: "Times New Roman", serif;
    font-size: 48px;
    font-weight: normal;
    margin-bottom: 20px;
}

.success-page p {
    max-width: 600px;
    color: #bbbbbb;
    line-height: 1.8;
    margin-bottom: 40px;
}
/* ESTIMATE FORM */

.estimate-form {
    margin-top: 60px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.estimate-form input,
.estimate-form textarea {
    width: 100%;
    padding: 18px 20px;

    background: #111;
    border: 1px solid rgba(255,255,255,0.08);

    color: white;
    font-size: 15px;

    outline: none;

    transition: 0.3s ease;
}

.estimate-form input:focus,
.estimate-form textarea:focus {
    border-color: rgba(255,255,255,0.35);
}

.estimate-form textarea {
    min-height: 180px;
    resize: vertical;
    margin-bottom: 25px;
}

.estimate-form button {
    border: none;
    cursor: pointer;
}
/* FINAL ESTIMATE FORM FIX */

.estimate {
    padding: 140px 80px !important;
    background: #0a0a0a !important;
}

.estimate-form {
    max-width: 900px !important;
    margin-top: 50px !important;
}

.form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px !important;
    margin-bottom: 20px !important;
}

.estimate-form input,
.estimate-form textarea {
    width: 100% !important;
    background: #111 !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    color: white !important;
    padding: 18px 20px !important;
    font-size: 15px !important;
    outline: none !important;
    font-family: Arial, sans-serif !important;
}

.estimate-form textarea {
    min-height: 180px !important;
    resize: vertical !important;
    margin-bottom: 25px !important;
}

.estimate-form input::placeholder,
.estimate-form textarea::placeholder {
    color: #777 !important;
}

.estimate-form button {
    background: white !important;
    color: black !important;
    border: none !important;
    padding: 16px 34px !important;
    font-size: 14px !important;
    cursor: pointer !important;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr !important;
    }
}