/* ==========================================
   RESET
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ==========================================
   BODY
========================================== */

body {
    font-family: "Plus Jakarta Sans", sans-serif;
    background-color: #0a0f1d;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================
   LINKS
========================================== */

a {
    color: inherit;
    text-decoration: none;
}
/* ==========================================
   CONTAINER
========================================== */

.container {
    width: min(1200px, calc(100% - 80px));
    margin: 0 auto;
}
/* ==========================================
   NAVBAR
========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    background: rgba(10, 15, 29, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 88px;
}
/* ==========================================
   LOGO
========================================== */

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}
/* ==========================================
   NAV LINKS
========================================== */

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}
/* ==========================================
   NAV LINK
========================================== */

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}
/* ==========================================
   NAV LINK HOVER
========================================== */

.nav-links a:hover {
    color: #4f8cff;
}
/* ==========================================
   BUTTON
========================================== */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
/* ==========================================
   PRIMARY BUTTON
========================================== */

.button-primary {
    background-color: #4f8cff;
    color: #ffffff;
    border: 1px solid #4f8cff;
}
/* ==========================================
   PRIMARY BUTTON HOVER
========================================== */

.button-primary:hover {
    background-color: transparent;
    color: #4f8cff;
    border-color: #4f8cff;
    box-shadow: 0 10px 30px rgba(79, 140, 255, .35);
}
/* ==========================================
   HERO
========================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
}

.hero-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
    align-items: start;
}

.hero-badge {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(79, 140, 255, 0.1);
    color: #4f8cff;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-text h1 {
    font-size: clamp(3rem, 4.8vw, 4.4rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 1.125rem;
    color: rgba(255,255,255,.75);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
/* ==========================================
   SECONDARY BUTTON
========================================== */

.button-secondary {
    border: 1px solid rgba(255,255,255,.15);
    color: #ffffff;
}

.button-secondary:hover {
    border-color: #4f8cff;
    color: #4f8cff;
}
/* ==========================================
   HERO IMAGE
========================================== */

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 60px;
}

.hero-image-placeholder {
    width: 100%;
    max-width: 580px;
    aspect-ratio: 16 / 10;

    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;

    background: linear-gradient(
        135deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.02)
    );

    display: flex;
    justify-content: center;
    align-items: center;

    color: rgba(255,255,255,.45);
    font-size: 1rem;
    transition: all .3s ease;
    box-shadow: 0 0 80px rgba(79,140,255,.08);
}
.hero-image-placeholder:hover {
    transform: translateY(-6px);
    border-color: rgba(79,140,255,.25);
}
/* ==========================================
   HERO BACKGROUND
========================================== */

.hero {
    position: relative;
}

.hero::before {
    content: "";

    position: absolute;

    width: 600px;
    height: 600px;

    background: #4f8cff;

    filter: blur(180px);

    opacity: .18;

    top: -150px;
    right: -200px;

    border-radius: 50%;

    z-index: -1;
}
/* ==========================================
   SERVICES
========================================== */

.services {
    padding: 140px 0;
}
.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 80px;
}
.section-badge {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;

    background: rgba(79,140,255,.1);
    color: #4f8cff;

    font-size: .85rem;
    font-weight: 600;

    margin-bottom: 24px;
}
.section-heading h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 24px;
}
.section-heading p {
    color: rgba(255,255,255,.7);
    font-size: 1.1rem;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    padding: 36px;
    transition: all .3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(79,140,255,.3);
    background: rgba(255,255,255,.05);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 24px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    transition:.3s ease;
}
.project:hover h3{

    color:var(--accent);

}
.service-card p {
    color: rgba(255,255,255,.7);
    margin-bottom: 28px;
}

.service-link {
    color: #4f8cff;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
/* ==========================================
   FEATURED PROJECTS
========================================== */
.projects {

    padding: 140px 0;
    transition:
    transform .45s ease,
    box-shadow .45s ease,
    border-color .45s ease;

}

.projects-wrapper {

    display: flex;
    flex-direction: column;
    gap: 8rem;

}

.project {

    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    overflow:hidden;

}
.project-image {

    width: 100%;
    aspect-ratio: 16 / 10;

    border-radius: 32px;

    border: 1px solid rgba(255,255,255,.08);

    background: linear-gradient(
        145deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.02)
    );

    overflow: hidden;

}
.project-image img{

    transition:transform .6s ease;

}
.project-placeholder {

    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;

    color: rgba(255,255,255,.35);

    font-size: 1rem;

}
.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 32px 0;
}

.project-tags span {
    padding: 10px 18px;

    background: rgba(79,140,255,.08);

    border: 1px solid rgba(79,140,255,.15);

    border-radius: 999px;

    font-size: .9rem;

    color: #d8e4ff;

    transition: .35s ease;
}

.project-tags span:hover{
    background:#4f8cff;
    color:white;
    transform:translateY(-2px);
}
.project-link{

    display:inline-flex;
    align-items:center;
    gap:12px;

    margin-top:15px;

    padding:16px 28px;

    border-radius:999px;

    border:1px solid rgba(79,140,255,.25);

    color:white;

    text-decoration:none;

    font-weight:600;

    transition:.35s ease;

}
.project-link:hover{

    background:#4f8cff;

    border-color:#4f8cff;

    transform:translateY(-3px);

    box-shadow:0 18px 45px rgba(79,140,255,.25);

}
.project:hover{

    transform:translateY(-6px);

    border-color:rgba(79,140,255,.25);

    box-shadow:0 40px 90px rgba(0,0,0,.35);

}
.project:hover img{

    transform:scale(1.04);

}
.project-category{

    display:inline-block;

    margin-bottom:18px;

    letter-spacing:.18em;

    text-transform:uppercase;

    font-size:.78rem;

    color:var(--accent);

}
.project-content h3 {
    font-size: 2.6rem;
    margin-bottom: 18px;
    font-weight: 700;
    transition: color .35s ease;
}
/* ==========================================
   SCROLL REVEAL
========================================== */

.reveal {

    opacity: 0;

    transform: translateY(70px);

    transition:
        opacity .8s ease,
        transform .8s cubic-bezier(.22,.61,.36,1);

}

.reveal.active {

    opacity: 1;

    transform: translateY(0);

}
.project-meta{

    display:flex;
    flex-direction:column;
    align-items:flex-start;

    margin-bottom:28px;

}
.project-number{

    font-size:3rem;

    font-weight:800;

    color:rgba(255,255,255,.18);

    line-height:1;

}
.project-divider{

    width:90px;

    height:2px;

    background:var(--accent);

    margin:18px 0;

    border-radius:999px;

}
.project-category{

    font-size:.8rem;

    text-transform:uppercase;

    letter-spacing:.22em;

    color:var(--accent);

}
.project:nth-child(even) {
    flex-direction: row-reverse;
}
.project:nth-child(even) {
    grid-template-columns: 1fr 1.2fr;
}

.project:nth-child(even) .project-image {
    grid-column: 2;
}

.project:nth-child(even) .project-content {
    grid-column: 1;
    grid-row: 1;
}
.project {
    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease;
}

.project:hover {
    transform: translateY(-6px);
}
.project-blue {
    --accent: #4F7DFF;
}

.project-gray {
    --accent: #D8D8D8;
}

.project-purple {
    --accent: #8B5CF6;
}

.project-gold {
    --accent: #D4AF37;
}

.project-pink {
    --accent: #D977A8;
}
/* ==========================================
   FOOTER
========================================== */

.footer{

    margin-top:140px;

    border-top:1px solid rgba(255,255,255,.06);

    background:#090d18;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:70px;

    padding:90px 0;

}

.footer-column h3{

    font-size:2rem;

    margin-bottom:22px;

}

.footer-column h4{

    margin-bottom:22px;

    font-size:1.05rem;

}

.footer-column p{

    color:rgba(255,255,255,.7);

    line-height:1.8;

    margin-bottom:24px;

}

.footer-column span{

    color:rgba(255,255,255,.55);

    font-size:.95rem;

}

.footer-column ul{

    list-style:none;

    display:flex;

    flex-direction:column;

    gap:16px;

}

.footer-column a{

    color:rgba(255,255,255,.72);

    text-decoration:none;

    transition:.3s;

}

.footer-column a:hover{

    color:#ffffff;

}

.footer-button{

    display:inline-flex;

    align-items:center;

    gap:8px;

    margin-top:8px;

    color:#4f8cff !important;

    font-weight:600;

}

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.06);

    padding:28px 0;

}

.footer-bottom p{

    text-align:center;

    color:rgba(255,255,255,.45);

    font-size:.92rem;

}

/* Add to style.css */

.project-form{
display:flex;
flex-direction:column;
gap:18px;
margin-top:60px;
}

.project-form label{
font-weight:600;
}

.project-form input,
.project-form select {
    background: #171b29;
    color: #ffffff;
}
.project-form option {
    background: #171b29;
    color: #ffffff;
}
.project-form textarea{
width:100%;
padding:16px 18px;
background:rgba(255,255,255,.04);
border:1px solid rgba(255,255,255,.08);
border-radius:14px;
color:#fff;
font:inherit;
}

.project-form input:focus,
.project-form select:focus,
.project-form textarea:focus{
outline:none;
border-color:#4f8cff;
}

.project-form textarea{
resize:vertical;
min-height:180px;
}

.project-form button{
margin-top:20px;
align-self:flex-start;
}
/* ==========================================
   LEGAL PAGES & START PROJECT
========================================== */

.legal-page{
    padding:180px 0 120px;
}

.legal-container{
    max-width:900px;
    margin:0 auto;
}

.legal-intro{
    font-size:1.15rem;
    line-height:1.8;
    color:rgba(255,255,255,.72);
    margin:28px 0 60px;
}
/* ===================================================
   FAQ
=================================================== */

.faq{
    padding:140px 0;
}

.faq h2{
    margin:18px 0 20px;
    max-width:700px;
}

.faq-intro{
    max-width:650px;
    color:rgba(255,255,255,.7);
    margin-bottom:60px;
    line-height:1.8;
}

.faq-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.faq-list details{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    overflow:hidden;
    transition:.35s ease;
}

.faq-list details:hover{
    border-color:rgba(79,125,255,.45);
}

.faq-list summary{
    list-style:none;
    cursor:pointer;
    padding:26px 30px;
    font-size:1.08rem;
    font-weight:600;
    position:relative;
}

.faq-list summary::-webkit-details-marker{
    display:none;
}

.faq-list summary::after{
    content:"+";
    position:absolute;
    right:30px;
    font-size:1.4rem;
    color:#4F7DFF;
    transition:.3s;
}

.faq-list details[open] summary::after{
    transform:rotate(45deg);
}

.faq-list p{
    padding:0 30px 28px;
    color:rgba(255,255,255,.72);
    line-height:1.8;
}
/* ===================================================
   CTA
=================================================== */

.cta{
    padding:140px 0;
    text-align:center;
}

.cta .container{
    max-width:850px;
}

.cta h2{
    margin:20px auto;
    max-width:700px;
}

.cta p{
    max-width:650px;
    margin:0 auto 45px;
    color:rgba(255,255,255,.72);
    line-height:1.8;
}
.project-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.project-image img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.project:hover .project-image img {
    transform: scale(1.03);
}
.project-image img {
    filter: drop-shadow(0 25px 60px rgba(0,0,0,.45));
}
.hero-preview-slider {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-preview-slider img {
    width: 88%;
    height: auto;
    object-fit: contain;
    transition: opacity .5s ease;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,.45));
}
.hero-preview-slider img {
    animation: floatPreview 7s ease-in-out infinite;
    filter: drop-shadow(0 35px 70px rgba(0,0,0,.45));
}

@keyframes floatPreview {

    0% {
        transform: translateY(0) rotate(-0.4deg);
    }

    50% {
        transform: translateY(-10px) rotate(0.4deg);
    }

    100% {
        transform: translateY(0) rotate(-0.4deg);
    }

}
#result{

margin-top:20px;

font-size:16px;

font-weight:500;

color:#ffffff;

}
/* =======================================
   MOBILE
======================================= */

@media (max-width: 768px) {

    .nav-links{
        display:none;
    }

    .navbar .button{
        display:none;
    }

    .hero-content{
        grid-template-columns:1fr;
        text-align:left;
    }

    .hero h1{
        font-size:2.4rem;
        line-height:1.05;
    }

    .hero p{
        font-size:1rem;
    }

    .hero-image{
        display:none;
    }

    .container{
        padding-left:24px;
        padding-right:24px;
    }

    section{
        padding:70px 0;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:flex-start;
        gap:16px;
    }

    .hero-buttons .button{
        width:220px;
    }

    /* MOBILE GRID FIX */

.services-grid {
    grid-template-columns: 1fr;
}

.footer-grid {
    grid-template-columns: 1fr;
}

.projects-grid {
    grid-template-columns: 1fr;
}

body {
    overflow-x: hidden;
}

}

.menu-toggle{
    display:none;
    background:none;
    border:none;
    color:white;
    font-size:28px;
    cursor:pointer;
}

.menu-toggle {
    display: none;
}

@media (max-width: 768px) {

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 44px;
        height: 44px;

        margin-left: auto;
        padding: 0;

        background: transparent;
        border: none;

        color: #ffffff;
        font-size: 28px;
        line-height: 1;

        cursor: pointer;
    }

}

/* ========================================
   MOBILE MENU
   ======================================== */

@media (max-width: 768px) {

    .nav-links.mobile-open {
        display: flex;
        position: absolute;
        top: 88px;
        left: 24px;
        right: 24px;

        flex-direction: column;
        align-items: stretch;
        gap: 0;

        padding: 12px 0;

        background: rgba(10, 15, 29, 0.97);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);

        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;

        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);

        z-index: 999;
    }

    .nav-links.mobile-open li {
        width: 100%;
    }

    .nav-links.mobile-open a {
        display: block;
        width: 100%;
        padding: 16px 24px;
        box-sizing: border-box;
    }

    .nav-links.mobile-open a:hover {
        color: #4f8cff;
    }

}

/* =======================================
   MOBILE WIDTH FIX
======================================= */

@media (max-width: 768px) {

    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
        padding-left: 24px;
        padding-right: 24px;
    }

    header,
    .navbar,
    .navbar .container,
    section,
    footer {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .hero-content,
    .hero-text,
    .hero-actions,
    .services-grid,
    .projects-grid,
    .footer-grid {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    img {
        max-width: 100%;
        height: auto;
    }
}

