/* =========================================
   PURIVIR PROPERTY SERVICES
   Main Stylesheet
   Colors: Black • White • Lime Green
========================================= */


/* =========================================
   BRAND COLORS
========================================= */

:root {
    --black: #080a0a;
    --dark: #0e1111;
    --dark-light: #141919;

    --green: #a8ff12;
    --green-hover: #bbff43;
    --green-dark: #78c900;

    --white: #ffffff;
    --off-white: #f5f7f7;

    --gray: #aeb7b7;
    --gray-dark: #737d7d;

    --border: #283131;
}


/* =========================================
   RESET
========================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", Arial, Helvetica, sans-serif;

    background: var(--black);
    color: var(--white);

    line-height: 1.6;

    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font-family: inherit;
}

.container {
    width: min(1120px, 92%);
    margin: 0 auto;
}


/* =========================================
   HEADER
========================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(8, 10, 10, 0.94);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-bottom: 1px solid rgba(168, 255, 18, 0.12);
}


/* =========================================
   NAVIGATION
========================================= */

.nav {
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


/* =========================================
   PURIVIR LOGO
========================================= */

.brand {
    position: relative;

    display: inline-flex;
    align-items: flex-start;

    font-weight: 800;

    letter-spacing: -1.5px;
}

.brand-word {
    font-size: 28px;
    font-style: italic;
    font-weight: 800;
}

.brand .white {
    color: var(--white);
}

.brand .green {
    color: var(--green);
}

.spark {
    color: var(--white);

    font-size: 16px;

    margin-left: 4px;
    margin-top: -5px;
}


/* =========================================
   NAV LINKS
========================================= */

.nav-links {
    display: flex;
    align-items: center;

    gap: 30px;
}

.nav-links a {
    position: relative;

    color: var(--off-white);

    font-size: 14px;
    font-weight: 600;

    transition: 0.2s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 2px;

    background: var(--green);

    transition: width 0.2s ease;
}

.nav-links a:hover {
    color: var(--green);
}

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


/* =========================================
   BUTTONS
========================================= */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 14px 22px;

    border-radius: 10px;

    background: var(--green);

    border: 2px solid var(--green);

    color: var(--black);

    font-size: 14px;
    font-weight: 800;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border 0.2s ease,
        box-shadow 0.2s ease;
}

.btn:hover {
    background: var(--green-hover);

    border-color: var(--green-hover);

    transform: translateY(-2px);

    box-shadow: 0 10px 30px rgba(168, 255, 18, 0.15);
}

.btn-small {
    padding: 10px 17px;
}


/* OUTLINE BUTTON */

.btn-outline {
    background: transparent;

    color: var(--white);

    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: transparent;

    color: var(--green);

    border-color: var(--green);

    box-shadow: none;
}


/* =========================================
   HERO SECTION
========================================= */

.hero {
    position: relative;

    min-height: 85vh;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 80% 35%,
            rgba(168, 255, 18, 0.12),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #0b0e0e 0%,
            var(--black) 100%
        );

    border-bottom: 1px solid var(--border);

    overflow: hidden;
}


/* GREEN BACKGROUND GLOW */

.hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -250px;
    top: -200px;

    background: var(--green);

    opacity: 0.04;

    border-radius: 50%;

    filter: blur(80px);
}

.hero-grid {
    position: relative;
    z-index: 2;

    width: 100%;

    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    align-items: center;

    gap: 65px;

    padding: 100px 0;
}


/* =========================================
   HERO TEXT
========================================= */

.eyebrow {
    color: var(--green);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 2.5px;

    margin-bottom: 15px;
}

.hero h1 {
    max-width: 720px;

    margin-bottom: 25px;

    color: var(--white);

    font-size: clamp(52px, 7vw, 88px);

    line-height: 0.98;

    letter-spacing: -4px;
}

.hero h1 span {
    color: var(--green);
}

.hero-text {
    max-width: 650px;

    margin-bottom: 12px;

    color: var(--gray);

    font-size: 19px;
}

.hero-pride {
    margin-bottom: 30px;

    color: var(--white);

    font-size: 16px;
    font-weight: 700;
}


/* =========================================
   HERO BUTTONS
========================================= */

.hero-actions {
    display: flex;

    align-items: center;

    gap: 13px;

    flex-wrap: wrap;
}


/* =========================================
   TRUST ROW
========================================= */

.trust-row {
    display: flex;

    flex-wrap: wrap;

    gap: 22px;

    margin-top: 30px;

    color: var(--off-white);

    font-size: 14px;
}

.trust-row span {
    display: inline-flex;

    align-items: center;

    gap: 5px;
}

.trust-row span::first-letter {
    color: var(--green);
}


/* =========================================
   PURIVIR HERO BRAND CARD
========================================= */

.hero-card {
    position: relative;

    min-height: 400px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 50px 45px;

    background:
        linear-gradient(
            145deg,
            #171c1c,
            #0d1010
        );

    border: 1px solid #303939;

    border-radius: 25px;

    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.45);

    overflow: hidden;
}

.hero-card::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -120px;
    top: -120px;

    border-radius: 50%;

    background: rgba(168, 255, 18, 0.10);

    filter: blur(10px);
}

.hero-card::after {
    content: "";

    position: absolute;

    width: 180px;
    height: 5px;

    right: -35px;
    bottom: 35px;

    background: var(--green);

    transform: rotate(-30deg);
}


/* =========================================
   BIG PURIVIR LOGO
========================================= */

.logo-mark {
    position: relative;

    z-index: 2;

    display: inline-block;

    margin-top: 30px;
}

.logo-big {
    position: relative;

    z-index: 3;

    color: var(--white);

    font-size: clamp(48px, 6vw, 74px);

    font-weight: 900;

    font-style: italic;

    letter-spacing: -5px;

    line-height: 1;
}

.logo-big strong {
    color: var(--green);
}


/* GREEN SWEEP ABOVE LOGO */

.arc {
    position: absolute;

    z-index: 1;

    left: 15px;
    top: -29px;

    width: 190px;
    height: 42px;

    border-top: 5px solid var(--green);

    border-radius: 50%;

    transform: rotate(-5deg);
}


/* WHITE SPARKLE */

.star {
    position: absolute;

    z-index: 4;

    left: 195px;
    top: -48px;

    color: var(--white);

    font-size: 28px;
}

.hero-card > p {
    position: relative;

    z-index: 2;

    margin-top: 16px;

    color: var(--gray);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.card-line {
    position: relative;

    z-index: 2;

    width: 100%;
    height: 1px;

    margin: 32px 0 20px;

    background: var(--border);
}

.hero-card .card-tagline {
    margin-top: 0;

    color: var(--white);

    font-size: 14px;

    letter-spacing: 0.8px;
}


/* =========================================
   GENERAL SECTIONS
========================================= */

.section {
    padding: 100px 0;
}

.section h2 {
    max-width: 750px;

    margin-bottom: 18px;

    color: var(--white);

    font-size: clamp(38px, 5vw, 58px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.section-intro {
    max-width: 720px;

    margin-bottom: 45px;

    color: var(--gray);

    font-size: 18px;
}


/* =========================================
   SERVICES
========================================= */

.service-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.service-card {
    min-height: 320px;

    display: flex;

    flex-direction: column;

    padding: 30px;

    background:
        linear-gradient(
            145deg,
            #161b1b,
            #111515
        );

    border: 1px solid var(--border);

    border-radius: 18px;

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-7px);

    border-color: var(--green);

    box-shadow:
        0 20px 45px rgba(0, 0, 0, 0.35);
}


/* SERVICE ICON */

.icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    background: rgba(168, 255, 18, 0.08);

    border: 1px solid rgba(168, 255, 18, 0.25);

    border-radius: 14px;

    font-size: 30px;
}

.service-card h3 {
    margin-bottom: 13px;

    color: var(--white);

    font-size: 23px;
}

.service-card p {
    margin-bottom: 25px;

    color: var(--gray);

    font-size: 15px;
}

.service-card span {
    margin-top: auto;

    color: var(--green);

    font-size: 13px;
    font-weight: 700;
}


/* =========================================
   ABOUT SECTION
========================================= */

.section-dark {
    background:
        linear-gradient(
            180deg,
            #0f1313,
            #0b0e0e
        );

    border-top: 1px solid var(--border);

    border-bottom: 1px solid var(--border);
}

.about-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 75px;

    align-items: start;
}

.about-copy {
    color: var(--gray);

    font-size: 19px;
}

.quote {
    margin-top: 35px;

    padding: 10px 0 10px 20px;

    border-left: 4px solid var(--green);

    color: var(--white);

    font-size: 26px;
    font-weight: 700;
}


/* =========================================
   CONTACT / CTA
========================================= */

.cta-section {
    background: var(--black);
}

.cta {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 50px;

    background:
        radial-gradient(
            circle at 90% 50%,
            rgba(168, 255, 18, 0.08),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #141919,
            #0d1010
        );

    border: 1px solid var(--border);

    border-radius: 24px;

    overflow: hidden;
}

.cta::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 6px;
    height: 100%;

    background: var(--green);
}

.cta h2 {
    margin-bottom: 10px;
}

.cta p {
    max-width: 580px;

    color: var(--gray);
}

.cta-actions {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;

    flex-shrink: 0;
}


/* =========================================
   FOOTER
========================================= */

footer {
    padding: 60px 0 25px;

    background: #060808;

    border-top: 1px solid var(--border);
}

.footer-grid {
    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 30px;
}

.footer-brand {
    margin-bottom: 12px;
}

.footer-grid p {
    color: var(--gray);

    font-size: 14px;
}

.footer-contact {
    display: flex;

    flex-direction: column;

    gap: 5px;

    text-align: right;

    color: var(--gray);

    font-size: 14px;
}

.footer-contact a {
    color: var(--white);

    font-weight: 700;

    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: var(--green);
}

.copyright {
    margin-top: 35px;

    padding-top: 25px;

    border-top: 1px solid #1e2525;

    color: var(--gray-dark);

    font-size: 12px;
}


/* =========================================
   TEXT SELECTION
========================================= */

::selection {
    background: var(--green);
    color: var(--black);
}


/* =========================================
   SCROLLBAR
========================================= */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: #354040;

    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--green);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 950px) {

    .nav-links {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;

        gap: 50px;

        padding: 80px 0;
    }

    .hero {
        min-height: auto;
    }

    .hero-copy {
        max-width: 750px;
    }

    .hero-card {
        max-width: 650px;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .cta {
        flex-direction: column;

        align-items: flex-start;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .container {
        width: 90%;
    }


    /* HEADER */

    .nav {
        height: 68px;
    }

    .brand-word {
        font-size: 24px;
    }

    .btn-small {
        padding: 9px 13px;

        font-size: 12px;
    }


    /* HERO */

    .hero-grid {
        padding: 65px 0;
    }

    .hero h1 {
        font-size: 50px;

        letter-spacing: -2.5px;
    }

    .hero-text {
        font-size: 17px;
    }

    .hero-actions {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .trust-row {
        gap: 12px;

        flex-direction: column;
    }


    /* LOGO CARD */

    .hero-card {
        min-height: 310px;

        padding: 38px 27px;
    }

    .logo-big {
        font-size: 52px;

        letter-spacing: -3px;
    }

    .arc {
        width: 145px;

        top: -25px;
    }

    .star {
        left: 150px;

        top: -42px;
    }


    /* SECTIONS */

    .section {
        padding: 75px 0;
    }

    .section h2 {
        font-size: 39px;

        letter-spacing: -1.5px;
    }

    .section-intro {
        font-size: 16px;
    }


    /* SERVICES */

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 280px;
    }


    /* ABOUT */

    .about-copy {
        font-size: 17px;
    }

    .quote {
        font-size: 22px;
    }


    /* CTA */

    .cta {
        padding: 35px 25px;
    }

    .cta-actions {
        width: 100%;

        flex-direction: column;
    }

    .cta-actions .btn {
        width: 100%;
    }


    /* FOOTER */

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

    .footer-contact {
        text-align: left;
    }
}


/* =========================================
   VERY SMALL PHONES
========================================= */

@media (max-width: 380px) {

    .hero h1 {
        font-size: 43px;
    }

    .logo-big {
        font-size: 45px;
    }

    .btn-small {
        display: none;
    }

}
.booking-section {
    background: var(--dark);
    border-top: 1px solid var(--border);
}

.booking-form {
    max-width: 800px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin-top: 40px;
}

.form-group {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.form-group label {
    color: var(--white);

    font-size: 14px;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;

    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;

    color: #000000;
    font-size: 15px;

    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-dark);
}

.form-full {
    grid-column: 1 / -1;
}

.booking-form .btn {
    width: fit-content;
}

@media (max-width: 600px) {
    .booking-form {
        grid-template-columns: 1fr;
    }

    .form-full {
        grid-column: auto;
    }

    .booking-form .btn {
        width: 100%;
    }
}

/* FIX DATE INPUT OVERFLOW */
.booking-form,
.form-group {
    min-width: 0;
}

.form-group input[type="date"] {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}