/* =========================================================
   GSV SOLUTIONS
   Occupational Safety & Health Website
========================================================= */

:root {

    --yellow: #14b8a6;
    --yellow-light: #5eead4;
    --black: #07151d;
    --dark: #0d1f2b;
    --dark-2: #122b3a;
    --dark-3: #1a3949;

    --white: #f5fbff;
    --gray: #9bb0bf;
    --gray-light: #dfeaf2;

    --border: rgba(255,255,255,0.10);

    --shadow:
        0 25px 70px rgba(9,23,31,0.35);

    --radius: 18px;

    --transition:
        all 0.3s ease;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: "Inter", sans-serif;

    background: var(--black);

    color: var(--white);

    line-height: 1.6;

    overflow-x: hidden;
}


img {

    width: 100%;

    display: block;

    object-fit: cover;
}


a {

    color: inherit;

    text-decoration: none;
}


button,
input,
textarea,
select {

    font-family: inherit;
}


/* =========================================================
   NAVIGATION
========================================================= */

.navbar {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    height: 82px;

    z-index: 1000;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 6%;

    background:
        rgba(8,10,13,0.88);

    backdrop-filter: blur(18px);

    border-bottom:
        1px solid var(--border);
}


.logo {

    display: flex;

    align-items: center;

    gap: 10px;
}


.logo-mark {

    width: 43px;
    height: 43px;

    display: grid;

    place-items: center;

    background: var(--yellow);

    color: var(--black);

    font-weight: 900;

    font-size: 24px;

    transform: skew(-8deg);

    border-radius: 7px;
}


.logo strong {

    display: block;

    font-size: 22px;

    line-height: 1;

    letter-spacing: 2px;
}


.logo small {

    display: block;

    margin-top: 3px;

    font-size: 8px;

    letter-spacing: 4px;

    color: var(--yellow);
}


nav {

    display: flex;

    gap: 30px;
}


nav a {

    color: #d5d8dc;

    font-size: 14px;

    font-weight: 600;

    transition: var(--transition);
}


nav a:hover {

    color: var(--yellow);
}


.nav-button {

    background: var(--yellow);

    color: var(--black);

    padding: 12px 20px;

    border-radius: 7px;

    font-size: 13px;

    font-weight: 800;

    transition: var(--transition);
}


.nav-button:hover {

    background: var(--white);

    transform: translateY(-2px);
}


.menu-toggle {

    display: none;

    background: none;

    border: none;

    color: white;

    font-size: 27px;

    cursor: pointer;
}


/* =========================================================
   HERO
========================================================= */

.hero {

    min-height: 100vh;

    position: relative;

    display: flex;

    align-items: center;

    padding: 120px 7% 80px;

    overflow: hidden;
}


.hero-video {

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: -3;
}


.hero-overlay {

    position: absolute;

    inset: 0;

    z-index: -2;

    background:

        linear-gradient(
            90deg,
            rgba(4,5,7,0.97) 0%,
            rgba(4,5,7,0.84) 40%,
            rgba(4,5,7,0.45) 100%
        ),

        linear-gradient(
            0deg,
            rgba(4,5,7,0.9),
            transparent 45%
        );
}


.hero-content {

    max-width: 780px;

    position: relative;

    z-index: 2;
}


.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: var(--yellow);

    font-size: 12px;

    letter-spacing: 2px;

    font-weight: 800;

    margin-bottom: 24px;
}


.hero-badge span {

    width: 9px;
    height: 9px;

    background: var(--yellow);

    border-radius: 50%;

    box-shadow:
        0 0 0 7px rgba(246,196,0,0.12);
}


.hero h1 {

    font-size: clamp(45px, 6vw, 82px);

    line-height: 0.98;

    letter-spacing: -3px;

    font-weight: 900;

    margin-bottom: 28px;
}


.hero h1 span {

    display: block;

    color: var(--yellow);
}


.hero p {

    max-width: 650px;

    font-size: 18px;

    color: #c3c8cf;

    margin-bottom: 35px;
}


.hero-buttons {

    display: flex;

    gap: 14px;

    flex-wrap: wrap;
}


.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 52px;

    padding: 0 27px;

    border-radius: 7px;

    font-weight: 800;

    font-size: 14px;

    transition: var(--transition);
}


.btn-primary {

    background: var(--yellow);

    color: var(--black);
}


.btn-primary:hover {

    background: white;

    transform: translateY(-3px);

    box-shadow:
        0 12px 35px rgba(246,196,0,0.25);
}


.btn-outline {

    border: 1px solid rgba(255,255,255,0.3);

    color: white;
}


.btn-outline:hover {

    border-color: var(--yellow);

    color: var(--yellow);

    transform: translateY(-3px);
}


.hero-contact {

    display: flex;

    gap: 16px;

    align-items: center;

    margin-top: 35px;

    color: #aeb4bb;

    font-size: 13px;
}


.hero-contact a {

    color: white;

    font-weight: 700;
}


.hero-contact a:hover {

    color: var(--yellow);
}


.scroll-indicator {

    position: absolute;

    bottom: 35px;

    right: 7%;

    display: flex;

    align-items: center;

    gap: 12px;

    color: #a3a9b0;

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 2px;
}


.scroll-indicator span {

    width: 35px;
    height: 1px;

    background: var(--yellow);
}


/* =========================================================
   TRUST BAR
========================================================= */

.trust-bar {

    background: var(--yellow);

    color: var(--black);

    padding: 22px 7%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


.trust-bar strong {

    display: block;

    font-size: 18px;
}


.trust-bar span {

    font-size: 12px;

    font-weight: 600;
}


.trust-items {

    display: flex;

    gap: 25px;

    flex-wrap: wrap;

    justify-content: flex-end;
}


.trust-items span {

    font-weight: 800;

    font-size: 12px;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section {

    padding: 110px 7%;
}


.section-label {

    color: var(--yellow);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 3px;

    margin-bottom: 15px;
}


.section-heading {

    max-width: 720px;

    margin-bottom: 60px;
}


.section-heading h2,
.about-text h2,
.booking-info h2,
.cta h2 {

    font-size: clamp(35px, 4vw, 58px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 20px;

    font-weight: 900;
}


.section-heading h2 span,
.about-text h2 span,
.booking-info h2 span,
.cta h2 span {

    color: var(--yellow);
}


.section-heading p {

    color: var(--gray);

    font-size: 16px;
}


/* =========================================================
   ABOUT
========================================================= */

.about {

    background:
        radial-gradient(
            circle at 80% 30%,
            rgba(246,196,0,0.08),
            transparent 35%
        );
}


.about-grid {

    display: grid;

    grid-template-columns:
        1fr 0.9fr;

    gap: 80px;

    align-items: center;
}


.about-text > p {

    color: var(--gray);

    margin-bottom: 20px;

    max-width: 650px;
}


.about-points {

    margin-top: 35px;
}


.about-points > div {

    display: flex;

    gap: 20px;

    padding: 20px 0;

    border-bottom:
        1px solid var(--border);
}


.about-points > div > span {

    color: var(--yellow);

    font-weight: 900;

    font-size: 13px;
}


.about-points h3 {

    font-size: 16px;

    margin-bottom: 5px;
}


.about-points p {

    color: var(--gray);

    font-size: 13px;
}


.about-image {

    position: relative;
}


.about-image img {

    height: 600px;

    border-radius: var(--radius);

    filter:
        saturate(0.8)
        contrast(1.1);
}


.about-image::after {

    content: "";

    position: absolute;

    inset: 15px;

    border: 1px solid
        rgba(246,196,0,0.35);

    border-radius: var(--radius);

    pointer-events: none;
}


.experience-card {

    position: absolute;

    bottom: 35px;

    left: -30px;

    background: var(--yellow);

    color: var(--black);

    padding: 22px 30px;

    border-radius: 8px;

    box-shadow: var(--shadow);
}


.experience-card strong {

    display: block;

    font-size: 28px;
}


.experience-card span {

    font-size: 11px;

    font-weight: 700;
}


/* =========================================================
   SERVICES
========================================================= */

.services {

    background: #0d1014;
}


.service-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}


.service-card {

    background: var(--dark-2);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    overflow: hidden;

    transition: var(--transition);
}


.service-card:hover {

    transform: translateY(-8px);

    border-color:
        rgba(246,196,0,0.45);

    box-shadow:
        0 20px 50px rgba(0,0,0,0.35);
}


.service-image {

    height: 220px;

    position: relative;

    overflow: hidden;
}


.service-image img {

    height: 100%;

    transition:
        transform 0.6s ease;
}


.service-card:hover
.service-image img {

    transform: scale(1.08);
}


.service-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            0deg,
            rgba(0,0,0,0.65),
            transparent
        );
}


.service-icon {

    position: absolute;

    z-index: 2;

    bottom: 18px;

    left: 18px;

    width: 50px;
    height: 50px;

    display: grid;

    place-items: center;

    background: var(--yellow);

    color: var(--black);

    border-radius: 8px;

    font-size: 22px;
}


.service-content {

    padding: 27px;
}


.service-number {

    color: var(--yellow);

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 2px;
}


.service-content h3 {

    margin: 7px 0 12px;

    font-size: 22px;
}


.service-content p {

    color: var(--gray);

    font-size: 14px;

    margin-bottom: 22px;
}


.service-link {

    color: var(--yellow);

    font-weight: 800;

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 1px;
}


.service-link:hover {

    color: white;
}


.abstract-safety {

    width: 100%;
    height: 100%;

    display: grid;

    place-items: center;

    background:

        linear-gradient(
            135deg,
            #222,
            #080808
        );
}


.helmet {

    font-size: 70px;

    filter:
        drop-shadow(
            0 20px 25px rgba(0,0,0,0.5)
        );
}


/* =========================================================
   PRICING
========================================================= */

.pricing {

    background: var(--black);
}


.pricing-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    max-width: 1100px;

    margin: auto;
}


.price-card {

    background: var(--dark-2);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    padding: 35px;

    position: relative;

    transition: var(--transition);
}


.price-card:hover {

    transform: translateY(-7px);

    border-color:
        rgba(246,196,0,0.4);
}


.price-card.featured {

    border:
        1px solid var(--yellow);

    transform:
        scale(1.03);
}


.price-card.featured:hover {

    transform:
        scale(1.03)
        translateY(-7px);
}


.popular {

    position: absolute;

    top: 0;
    right: 25px;

    background: var(--yellow);

    color: var(--black);

    padding: 7px 12px;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 1px;

    border-radius:
        0 0 6px 6px;
}


.price-top > span {

    color: var(--yellow);

    font-size: 10px;

    letter-spacing: 2px;

    font-weight: 900;
}


.price-top h3 {

    margin: 12px 0 20px;

    font-size: 23px;
}


.price {

    font-size: 42px;

    font-weight: 900;

    letter-spacing: -2px;

    margin-bottom: 30px;
}


.price small {

    display: block;

    font-size: 11px;

    color: var(--gray);

    font-weight: 500;

    letter-spacing: 0;
}


.price-card ul {

    list-style: none;

    border-top:
        1px solid var(--border);

    padding-top: 20px;

    margin-bottom: 30px;
}


.price-card li {

    color: #c7cbd0;

    font-size: 13px;

    padding: 8px 0;
}


.price-button {

    width: 100%;

    height: 48px;

    display: grid;

    place-items: center;

    border:
        1px solid var(--yellow);

    color: var(--yellow);

    border-radius: 6px;

    font-size: 12px;

    font-weight: 800;

    transition: var(--transition);
}


.price-button:hover {

    background: var(--yellow);

    color: var(--black);
}


.pricing-note {

    text-align: center;

    color: #727981;

    font-size: 11px;

    margin-top: 30px;
}


/* =========================================================
   PROCESS
========================================================= */

.process {

    background: #0d1014;
}


.process-grid {

    display: grid;

    grid-template-columns:
        1fr 80px 1fr 80px 1fr;

    align-items: center;
}


.process-step {

    text-align: center;
}


.process-number {

    width: 70px;
    height: 70px;

    display: grid;

    place-items: center;

    margin: auto auto 20px;

    border:
        1px solid var(--yellow);

    border-radius: 50%;

    color: var(--yellow);

    font-weight: 900;
}


.process-step h3 {

    margin-bottom: 10px;
}


.process-step p {

    color: var(--gray);

    font-size: 13px;
}


.process-line {

    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--yellow),
            transparent
        );
}


/* =========================================================
   BOOKING
========================================================= */

.booking {

    background:

        radial-gradient(
            circle at 10% 50%,
            rgba(246,196,0,0.08),
            transparent 35%
        );
}


.booking-wrapper {

    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 80px;

    align-items: start;
}


.booking-info > p {

    color: var(--gray);

    max-width: 500px;

    margin-bottom: 35px;
}


.contact-details {

    display: grid;

    gap: 22px;
}


.contact-item {

    display: flex;

    gap: 15px;

    align-items: flex-start;
}


.contact-item > span {

    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    background:
        rgba(246,196,0,0.1);

    color: var(--yellow);

    border-radius: 7px;
}


.contact-item small {

    display: block;

    color: var(--yellow);

    font-size: 9px;

    letter-spacing: 2px;

    font-weight: 900;
}


.contact-item p,
.contact-item a {

    color: #d2d6da;

    font-size: 13px;
}


.contact-item a:hover {

    color: var(--yellow);
}


.booking-form {

    background: var(--dark-2);

    border:
        1px solid var(--border);

    padding: 35px;

    border-radius: var(--radius);

    box-shadow: var(--shadow);
}


.form-row {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;
}


.form-group {

    margin-bottom: 18px;
}


.form-group label {

    display: block;

    color: #cdd1d6;

    font-size: 11px;

    font-weight: 700;

    margin-bottom: 7px;
}


input,
textarea,
select {

    width: 100%;

    background: #0c0f13;

    color: white;

    border:
        1px solid var(--border);

    padding: 14px;

    border-radius: 6px;

    outline: none;

    transition: var(--transition);

    font-size: 13px;
}


input:focus,
textarea:focus,
select:focus {

    border-color: var(--yellow);

    box-shadow:
        0 0 0 3px
        rgba(246,196,0,0.08);
}


select {

    cursor: pointer;
}


textarea {

    resize: vertical;
}


.submit-button {

    width: 100%;

    border: none;

    background: var(--yellow);

    color: var(--black);

    height: 52px;

    border-radius: 6px;

    font-weight: 900;

    cursor: pointer;

    transition: var(--transition);
}


.submit-button:hover {

    background: white;

    transform: translateY(-2px);
}


.form-message {

    text-align: center;

    margin-top: 15px;

    color: var(--yellow);

    font-size: 13px;
}


/* =========================================================
   REVIEWS
========================================================= */

.reviews {

    background: #0d1014;
}


.review-layout {

    display: grid;

    grid-template-columns:
        1fr 0.7fr;

    gap: 30px;

    align-items: start;
}


.reviews-list {

    display: grid;

    gap: 15px;
}


.review-card {

    background: var(--dark-2);

    border:
        1px solid var(--border);

    border-radius: 12px;

    padding: 25px;
}


.stars {

    color: var(--yellow);

    letter-spacing: 3px;

    margin-bottom: 12px;
}


.review-card p {

    color: #d3d7db;

    margin-bottom: 15px;

    font-size: 14px;
}


.review-card strong {

    font-size: 12px;
}


.review-form-card {

    background: var(--dark-2);

    padding: 30px;

    border-radius: var(--radius);

    border:
        1px solid var(--border);
}


.review-form-card h3 {

    font-size: 23px;

    margin-bottom: 7px;
}


.review-form-card > p {

    color: var(--gray);

    font-size: 13px;

    margin-bottom: 22px;
}


.review-form-card input,
.review-form-card select,
.review-form-card textarea {

    margin-bottom: 12px;
}


.review-form-card button {

    width: 100%;

    height: 48px;

    background: var(--yellow);

    border: none;

    border-radius: 6px;

    font-weight: 900;

    cursor: pointer;
}


/* =========================================================
   CTA
========================================================= */

.cta {

    padding: 80px 7%;

    background: var(--yellow);

    color: var(--black);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;
}


.cta .section-label {

    color: #514300;
}


.cta h2 {

    max-width: 650px;

    margin-bottom: 12px;
}


.cta h2 span {

    color: white;
}


.cta p {

    max-width: 600px;

    color: #403700;
}


.cta-buttons {

    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}


.btn-light {

    background: white;

    color: var(--black);
}


.btn-dark {

    background: var(--black);

    color: white;
}


/* =========================================================
   FOOTER
========================================================= */

footer {

    background: #050607;

    padding: 70px 7% 25px;
}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 50px;

    border-bottom:
        1px solid var(--border);
}


.footer-brand p {

    max-width: 330px;

    color: var(--gray);

    font-size: 13px;

    margin-top: 20px;
}


.footer-grid h4 {

    margin-bottom: 18px;

    color: var(--yellow);

    font-size: 12px;

    letter-spacing: 1px;

    text-transform: uppercase;
}


.footer-grid > div:not(.footer-brand) {

    display: flex;

    flex-direction: column;

    gap: 9px;
}


.footer-grid a,
.footer-grid span {

    color: #858c94;

    font-size: 12px;

    transition: var(--transition);
}


.footer-grid a:hover {

    color: var(--yellow);
}


.footer-bottom {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding-top: 22px;

    color: #656c73;

    font-size: 10px;
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 58px;
    height: 58px;

    display: grid;

    place-items: center;

    background: #25d366;

    color: white;

    border-radius: 50%;

    font-size: 25px;

    z-index: 999;

    box-shadow:
        0 10px 30px rgba(0,0,0,0.3);

    transition: var(--transition);
}


.whatsapp:hover {

    transform: scale(1.1);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width: 1000px) {

    nav {

        gap: 15px;
    }

    .nav-button {

        display: none;
    }

    .about-grid {

        grid-template-columns: 1fr;
    }

    .about-image {

        max-width: 650px;
    }

    .service-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

    .pricing-grid {

        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .price-card.featured {

        transform: none;
    }

    .process-grid {

        grid-template-columns: 1fr;

        gap: 25px;
    }

    .process-line {

        display: none;
    }

    .booking-wrapper {

        grid-template-columns: 1fr;
    }

    .review-layout {

        grid-template-columns: 1fr;
    }

    .cta {

        flex-direction: column;

        align-items: flex-start;
    }

    .footer-grid {

        grid-template-columns:
            1fr 1fr;
    }

}


@media(max-width: 700px) {

    .navbar {

        padding: 0 5%;
    }

    nav {

        display: none;

        position: absolute;

        top: 82px;

        left: 0;

        width: 100%;

        padding: 25px;

        background: #080a0d;

        flex-direction: column;

        border-bottom:
            1px solid var(--border);
    }

    nav.active {

        display: flex;
    }

    .menu-toggle {

        display: block;
    }

    .hero {

        padding-left: 5%;

        padding-right: 5%;
    }

    .hero h1 {

        font-size: 48px;
    }

    .hero p {

        font-size: 15px;
    }

    .hero-contact {

        flex-direction: column;

        align-items: flex-start;

        gap: 7px;
    }

    .trust-bar {

        flex-direction: column;

        align-items: flex-start;

        padding: 25px 5%;
    }

    .trust-items {

        justify-content: flex-start;
    }

    .section {

        padding: 75px 5%;
    }

    .service-grid {

        grid-template-columns: 1fr;
    }

    .form-row {

        grid-template-columns: 1fr;
    }

    .booking-form {

        padding: 22px;
    }

    .about-image img {

        height: 420px;
    }

    .experience-card {

        left: 15px;

        bottom: 15px;
    }

    .footer-grid {

        grid-template-columns: 1fr;
    }

    .footer-bottom {

        flex-direction: column;
    }

    .cta {

        padding: 65px 5%;
    }

    .cta-buttons {

        width: 100%;
    }

    .cta-buttons .btn {

        width: 100%;
    }

}