/*
Theme Name: VEXTRA Custom
Author: VEXTRA
Description: Custom VEXTRA Technology, Security & Engineering Theme
Version: 1.0
*/

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #050B18;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =========================
   HEADER
========================= */

.site-header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 24px 0;
}

.header-container {
    width: min(1200px, 90%);
    margin-left: 85px;
    margin-right: 130px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.site-logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #ffffff;
    
}
.site-logo-image {
    width: 140px;
    height: auto;
    display: block;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-navigation a {
    color: #d9e4f2;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
}

.main-navigation a:hover {
    color: #00c8ff;
}

.quote-button {
    padding: 12px 22px;
    border: 1px solid #00c8ff;
    border-radius: 6px;

    color: #ffffff;
    font-size: 14px;
    font-weight: 600;

    transition: 0.3s ease;
}

.quote-button:hover {
    background: #00c8ff;
    color: #050B18;
}


/* =========================
   HERO
========================= */

.hero-section {
    min-height: 100vh;
    position: relative;

    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(0, 180, 255, 0.16),
            transparent 35%
        ),
        #050B18;
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;

    right: -200px;
    top: 100px;

    border-radius: 50%;

    border: 1px solid rgba(0, 200, 255, 0.15);

    box-shadow:
        0 0 80px rgba(0, 200, 255, 0.08),
        inset 0 0 80px rgba(0, 200, 255, 0.04);
}

.hero-container {
    width: min(1200px, 90%);
margin-left: 130px;
    margin-right: 130px;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 720px;
    padding-top: 80px;
}

.hero-label {
    display: inline-block;

    margin-bottom: 22px;

    color: #00c8ff;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-content h1 {
    margin: 0;
    font-size: clamp(48px, 6vw, 70px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -2px;
    padding-top: 75px;
}

.hero-content h1 span {
    color: #00c8ff;
}

.hero-content p {
    max-width: 620px;

    margin: 28px 0 35px;

    color: #aebdce;

    font-size: 17px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 15px 25px;

    border-radius: 6px;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}

.primary-button {
    background: #00c8ff;
    color: #050B18;
}

.primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 200, 255, 0.2);
}

.secondary-button {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.secondary-button:hover {
    border-color: #00c8ff;
    color: #00c8ff;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .main-navigation {
        display: none;
    }

    .header-container {
        justify-content: space-between;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 52px;
    }

}

@media (max-width: 600px) {

    .site-header {
        padding: 18px 0;
    }

    .quote-button {
        padding: 10px 15px;
    }

    .hero-content {
        padding-top: 70px;
    }

    .hero-content h1 {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-button {
        width: 100%;
    }

}

/* =========================
   ABOUT VEXTRA
========================= */

.about-section {
    padding: 90px 0;
    background: #050b18;
}

.about-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    /* grid-template-columns: 1.1fr 1.3fr 0.9fr; */
    grid-template-columns: 32% 46% 22%;

    min-height: 330px;

    border: 1px solid rgba(0, 200, 255, 0.18);
    border-radius: 18px;

    overflow: hidden;

    background: #071426;
}


.about-text {
    padding: 42px 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.about-label,
.services-label {
    display: block;

    margin-bottom: 14px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;

    color: #00c8ff;
}


.about-text h2 {
    margin: 0 0 18px;

    font-size: 31px;
    line-height: 1.15;
    font-weight: 800;

    color: #ffffff;
}


.about-text h2 span {
    color: #00c8ff;
}


.about-text p {
    margin: 0 0 25px;

    font-size: 15px;
    line-height: 1.7;

    color: #8ea5c0;
}


.about-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    width: fit-content;

    padding: 12px 18px;

    border-radius: 6px;

    background: #00bfff;

    color: #04101e;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition: 0.3s ease;
}


.about-button:hover {
    transform: translateY(-2px);
    background: #ffffff;
}


/* .about-image {
    min-height: 330px;
    overflow: hidden;
}


.about-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
} */
.about-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;

    background: #050d1a;
}


.stat-item {
    display: flex;
    flex-direction: column;

    align-items: flex-start;
    justify-content: center;

    padding: 25px;

    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


.stat-item strong {
    margin-bottom: 7px;

    font-size: 30px;
    line-height: 1;

    color: #00c8ff;
}


.stat-item span {
    font-size: 11px;
    color: #8197b1;
}


/* =========================
   VEXTRA SERVICES
========================= */

.vextra-services-section {
    padding: 95px 0 0;
    background: #f5f4ef;
    color: #111111;
}


.vextra-services-header {
    width: 90%;
    max-width: 1160px;
    margin: 0 auto;
    padding-bottom: 55px;
}





.vextra-services-header h2 {
    margin: 0 0 15px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 48px;
    line-height: 1.1;

    color: #111111;
}


.vextra-services-header h2 span {
    color: #00a9dc;
    font-style: italic;
}


.vextra-services-header p {
    max-width: 650px;

    margin: 0;

    font-size: 18px;
    line-height: 1.8;

    color: #707070;
}


/* SERVICE LIST */

.vextra-services-list {
    width: 100%;

    border-top: 1px solid #d9d7d1;
}


.vextra-service-row {
    display: grid;

    grid-template-columns: 68px 240px 1fr 50px;

    align-items: center;

    min-height: 118px;

    padding: 0 5%;

    border-bottom: 1px solid #d9d7d1;

    transition: 0.3s ease;
}


.vextra-service-row:hover,
.vextra-service-row.active {
    background: #090909;
    color: #ffffff;
}


/* NUMBER */

.vextra-service-number {
    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;

    color: #999999;
}


.vextra-service-row:hover .vextra-service-number,
.vextra-service-row.active .vextra-service-number {
    color: #00c8ff;
}


/* TITLE */

.vextra-service-title h3 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 21px;
    font-weight: 700;

    color: #171717;
}


.vextra-service-row:hover .vextra-service-title h3,
.vextra-service-row.active .vextra-service-title h3 {
    color: #ffffff;
}


/* TAGS */

.vextra-service-tags {
    display: flex;

    flex-wrap: wrap;

    gap: 7px;
}


.vextra-service-tags span {
    display: inline-block;

    padding: 7px 10px;

    border: 1px solid #d9d7d1;

    background: #f8f7f3;

    font-size: 8px;
    font-weight: 600;

    color: #555555;
}


.vextra-service-row:hover .vextra-service-tags span,
.vextra-service-row.active .vextra-service-tags span {
    border-color: #3c3c3c;
    background: #111111;
    color: #dddddd;
}


/* ARROW */

.vextra-service-arrow {
    text-align: right;

    font-size: 18px;

    color: #aaaaaa;

    transition: 0.3s ease;
}


.vextra-service-row:hover .vextra-service-arrow,
.vextra-service-row.active .vextra-service-arrow {
    color: #00c8ff;
    transform: translateX(5px);
}


/* RESPONSIVE */

@media (max-width: 1000px) {

    .vextra-service-row {
        grid-template-columns: 60px 200px 1fr 40px;
        padding: 0 4%;
    }

}


@media (max-width: 800px) {

    .vextra-service-row {
        grid-template-columns: 55px 1fr 35px;
        gap: 15px;

        padding: 25px 5%;
    }

    .vextra-service-tags {
        grid-column: 2 / 3;
    }

    .vextra-service-arrow {
        grid-column: 3;
        grid-row: 1;
    }

}


@media (max-width: 600px) {

    .vextra-services-section {
        padding-top: 70px;
    }

    .vextra-services-header {
        width: 88%;
        padding-bottom: 40px;
    }

    .vextra-services-header h2 {
        font-size: 38px;
    }

    .vextra-service-row {
        display: grid;

        grid-template-columns: 55px 1fr 30px;

        min-height: auto;

        padding: 25px 6%;
    }

    .vextra-service-number {
        grid-column: 1;
        grid-row: 1;
    }

    .vextra-service-title {
        grid-column: 2;
        grid-row: 1;
    }

    .vextra-service-tags {
        grid-column: 2 / 4;
        grid-row: 2;

        margin-top: 18px;
    }

    .vextra-service-arrow {
        grid-column: 3;
        grid-row: 1;
    }

}
/* =========================
   OUR FOUNDATION
========================= */

.foundation-section {
    width: 100%;
    background: #050b18;
    color: #ffffff;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}


/* HEADER */

.foundation-header {
    max-width: 1160px;
    margin: 0 auto;
    padding: 70px 30px 55px;
}


.foundation-header h2 {
    margin: 0 0 14px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 44px;
    line-height: 1.1;
    font-weight: 700;

    color: #ffffff;
}


.foundation-header h2 span {
    color: #00c8ff;
    font-style: italic;
}


.foundation-header p {
    max-width: 650px;

    margin: 0;

    font-size: 17px;
    line-height: 1.7;

    color: #858585;
}


/* THREE COLUMNS */

.foundation-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr 0.95fr;

    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.foundation-column {
    min-height: 370px;
    padding: 35px 38px;

    border-right: 1px solid rgba(255, 255, 255, 0.1);
}


.foundation-column:last-child {
    border-right: none;
}


.pillar-number {
    display: block;

    margin-bottom: 40px;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #626262;
}


.foundation-column h3 {
    margin: 0 0 25px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 21px;
    font-weight: 700;

    color: #ffffff;
}


/* MISSION */

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px 35px;
}


.mission-grid h4 {
    margin: 0 0 10px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 15px;

    color: #ffffff;
}


.mission-grid p {
    margin: 0;

    font-size: 15px;
    line-height: 1.7;

    color: #777777;
}


/* VISION */

.vision-text {
    max-width: 330px;

    margin: 0;

    font-size: 15px;
    line-height: 1.8;

    color: #777777;
}


/* VALUES */

.values-list {
    width: 100%;
}


.value-item {
    display: flex;
    align-items: center;

    min-height: 45px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.value-item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


.value-item span {
    width: 35px;

    font-size: 9px;

    color: #666666;
}


.value-item strong {
    font-family: Georgia, "Times New Roman", serif;

    font-size: 14px;

    color: #eeeeee;
}


/* HOVER */

.value-item:hover strong {
    color: #00c8ff;
}


.mission-grid > div:hover h4 {
    color: #00c8ff;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .foundation-grid {
        grid-template-columns: 1fr;
    }

    .foundation-column {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .foundation-column:last-child {
        border-bottom: none;
    }

}


@media (max-width: 600px) {

    .foundation-header {
        padding: 55px 22px 40px;
    }

    .foundation-header h2 {
        font-size: 36px;
    }

    .foundation-grid {
        display: block;
    }

    .foundation-column {
        padding: 30px 22px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

}
/* =========================
   OUR COMMITMENT
========================= */

.commitment-section {
    padding: 100px 0;
    background: #f5f7fa;
}


.commitment-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1.05fr;

    gap: 70px;

    align-items: center;
}


/* IMAGE */

.commitment-image {
    position: relative;

    height: 520px;

    overflow: hidden;

    background: #071426;
}


.commitment-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* BLUE OVERLAY */

.commitment-image::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 28%;

    height: 80px;

    background: rgba(0, 191, 255, 0.78);
}


/* IMAGE LABEL */

.commitment-image-label {
    position: absolute;

    top: 0;
    right: 0;

    z-index: 2;

    padding: 14px 22px;

    background: #00bfff;

    color: #04101e;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 2px;
}


/* CONTENT */

.commitment-content {
    padding: 10px 0;
}


.commitment-label {
    display: block;

    margin-bottom: 18px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #00a9dc;
}


.commitment-content h2 {
    margin: 0 0 18px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 48px;
    line-height: 1.1;

    color: #050b18;
}


.commitment-content h2 span {
    color: #00a9dc;

    font-style: italic;
}


.commitment-intro {
    max-width: 600px;

    margin: 0 0 30px;

    font-size: 15px;
    line-height: 1.8;

    color: #707982;
}


/* LIST */

.commitment-list {
    border-top: 1px solid #d9dee3;
}


.commitment-item {
    display: flex;
    align-items: flex-start;

    gap: 18px;

    padding: 19px 0;

    border-bottom: 1px solid #d9dee3;
}


.commitment-number {
    min-width: 28px;

    padding-top: 4px;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1px;

    color: #00a9dc;
}


.commitment-text {
    flex: 1;
}


.commitment-text strong {
    display: block;

    margin-bottom: 7px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 22px;

    color: #101820;
}


.commitment-text strong b {
    color: #00a9dc;

    font-size: 21px;
}


.commitment-text p {
    margin: 0;

    font-size: 15px;
    line-height: 1.6;

    color: #727b83;
}


/* HOVER */

.commitment-item {
    transition: 0.3s ease;
}


.commitment-item:hover {
    padding-left: 8px;
}

h76bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb                           v
.commitment-item:hover .commitment-text strong {
    color: #00a9dc;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .commitment-container {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .commitment-image {
        height: 400px;
    }

}


@media (max-width: 600px) {

    .commitment-section {
        padding: 70px 0;
    }

    .commitment-container {
        width: 88%;
    }

    .commitment-image {
        height: 330px;
    }

    .commitment-content h2 {
        font-size: 38px;
    }

    .commitment-item {
        gap: 12px;
    }

}
/* =========================
   HEADER ACTIONS
========================= */

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* CREATE ACCOUNT */

.account-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 15px;

    border: 1px solid rgba(0, 200, 255, 0.5);
    border-radius: 5px;

    color: #00c8ff;

    font-size: 11px;
    font-weight: 700;

    text-decoration: none;

    white-space: nowrap;

    transition: 0.3s ease;
}


.account-button:hover {
    background: #00c8ff;
    color: #06101c;
}


/* CART */

.cart-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    padding: 10px 12px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    transition: 0.3s ease;
}


.cart-button:hover {
    color: #00c8ff;
}


/* MOBILE */

@media (max-width: 1100px) {

    .header-actions {
        gap: 5px;
    }

    .account-button {
        padding: 9px 10px;
    }

}


@media (max-width: 900px) {

    .account-button {
        display: none;
    }

}
/* =========================
   ACCOUNT POPUP
========================= */

.account-modal {
    display: none;

    position: fixed;
    inset: 0;

    z-index: 99999;
}

.account-modal.show {
    display: flex;

    align-items: center;
    justify-content: center;
}


.account-modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(2, 8, 18, 0.78);

    backdrop-filter: blur(6px);
}


.account-modal-box {
    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 430px;

    padding: 42px;

    background: #ffffff;

    border-radius: 12px;

    box-shadow: 0 30px 80px rgba(0,0,0,0.35);

    animation: accountPopup 0.25s ease;
}


@keyframes accountPopup {

    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}


.account-modal-close {
    position: absolute;

    top: 15px;
    right: 18px;

    border: none;

    background: transparent;

    font-size: 28px;

    color: #777;

    cursor: pointer;
}


.account-modal-content {
    text-align: center;
}


.account-modal-label {
    display: block;

    margin-bottom: 10px;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #00a9dc;
}


.account-modal-content h2 {
    margin: 0 0 10px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 32px;

    color: #071426;
}


.account-modal-content h2 span {
    color: #00a9dc;
    font-style: italic;
}


.account-modal-content > p {
    margin: 0 0 25px;

    font-size: 12px;

    line-height: 1.6;

    color: #777;
}


/* SOCIAL BUTTONS */

.social-login {
    width: 100%;

    height: 46px;

    margin-bottom: 10px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border: 1px solid #dce1e5;

    border-radius: 5px;

    background: #ffffff;

    color: #222;

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.25s ease;
}


.social-login:hover {
    border-color: #00a9dc;

    background: #f7fcff;
}


.google-login span {
    font-weight: 800;

    color: #4285f4;
}


.facebook-login span {
    font-size: 18px;
    font-weight: 800;

    color: #1877f2;
}


/* DIVIDER */

.account-divider {
    display: flex;

    align-items: center;

    gap: 12px;

    margin: 22px 0;

    color: #aaa;

    font-size: 9px;
}


.account-divider::before,
.account-divider::after {
    content: "";

    flex: 1;

    height: 1px;

    background: #e2e5e8;
}


/* FORM */

.popup-account-form input {
    width: 100%;

    box-sizing: border-box;

    margin-bottom: 10px;

    padding: 13px;

    border: 1px solid #dce1e5;

    border-radius: 5px;

    outline: none;

    font-size: 12px;
}


.popup-account-form input:focus {
    border-color: #00a9dc;
}


.popup-register-button {
    width: 100%;

    padding: 13px;

    border: none;

    border-radius: 5px;

    background: #071426;

    color: #ffffff;

    font-size: 11px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.25s ease;
}


.popup-register-button:hover {
    background: #00bfff;

    color: #071426;
}


.account-login-text {
    margin-top: 20px !important;

    font-size: 10px !important;

    color: #777;
}


.account-login-text a {
    color: #00a9dc;

    font-weight: 700;

    text-decoration: none;
}


@media (max-width: 500px) {

    .account-modal-box {
        width: 88%;

        padding: 35px 22px;
    }

    .account-modal-content h2 {
        font-size: 27px;
    }

}
.logout-button{
    padding: 12px 22px;
    border: 1px solid #00c8ff;
    border-radius: 6px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}
/* =====================================================
   VEXTRA PROJECTS
===================================================== */

.vextra-projects-section {
    background: #050b16;
    padding: 110px 0;
    color: #ffffff;
}

.vextra-projects-container {
    width: 88%;
    max-width: 1200px;
    margin: auto;
}

.vextra-section-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    padding-bottom: 55px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.vextra-mini-label {
    display: block;
    margin-bottom: 18px;
    color: #00bfff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.vextra-section-top h2,
.vextra-certification-heading h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.05;
    font-weight: 600;
}

.vextra-section-top h2 span,
.vextra-certification-heading h2 span {
    color: #00bfff;
    font-style: italic;
}

.vextra-section-top p,
.vextra-certification-heading p {
    max-width: 600px;
    margin: 22px 0 0;
    color: #8ea0b8;
    font-size: 15px;
    line-height: 1.8;
}

.vextra-text-link {
    flex-shrink: 0;
    color: #ffffff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    padding-bottom: 5px;
    border-bottom: 1px solid #00bfff;
    transition: .3s ease;
}

.vextra-text-link:hover {
    color: #00bfff;
}


/* PROJECT GRID */

.vextra-project-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 270px 220px;
    gap: 12px;
    margin-top: 35px;
}

.vextra-project {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 200px;
    border: 1px solid rgba(0,191,255,0.15);
    background: #0a1627;
    text-decoration: none;
}

.vextra-project.project-large {
    grid-row: span 2;
}

.vextra-project img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s ease;
}

.vextra-project::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(2,8,18,.95),
        rgba(2,8,18,.05) 70%
    );
}

.vextra-project:hover img {
    transform: scale(1.06);
}

.vextra-project-overlay {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    bottom: 22px;
}

.vextra-project-overlay span {
    color: #00bfff;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.vextra-project-overlay h3 {
    margin: 8px 0 0;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
}


/* =========================================
   VEXTRA LICENSED & CERTIFIED
========================================= */

.vextra-license-section {
    background: #050b16;
    color: #ffffff;
    padding: 100px 0 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.vextra-license-container {
    width: 88%;
    max-width: 1200px;
    margin: 0 auto;
}

.vextra-license-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    padding-bottom: 65px;
}

.vextra-license-title {
    max-width: 720px;
}

.vextra-license-title h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.05;
    font-weight: 600;
}

.vextra-license-title h2 span {
    color: #00bfff;
    font-style: italic;
}

.vextra-license-title p {
    max-width: 650px;
    margin: 22px 0 0;
    color: #8798ae;
    font-size: 15px;
    line-height: 1.8;
}


/* LICENSE GRID */

.vextra-license-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid rgba(255,255,255,0.10);
    border-left: 1px solid rgba(255,255,255,0.10);
    padding-bottom: 35px;
}


.vextra-license-card {
    position: relative;

    min-height: 220px;

    padding: 30px;

    border-right: 1px solid rgba(255,255,255,0.10);
    border-bottom: 1px solid rgba(255,255,255,0.10);

    background: #07111f;

    transition:
        background .3s ease,
        transform .3s ease;
}


.vextra-license-card:hover {
    background: #0b1b2f;
    transform: translateY(-5px);
}


.license-number {
    display: block;

    color: #53657b;

    font-size: 12px;

    letter-spacing: 2px;
}


.license-content {
    margin-top: 55px;
}


.license-content h3 {
    margin: 0 0 12px;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 23px;

    font-weight: 600;
}


.license-content p {
    margin: 0;

    max-width: 210px;

    color: #8192a8;

    font-size: 15px;

    line-height: 1.7;
}


.license-arrow {
    position: absolute;

    right: 28px;
    bottom: 28px;

    color: #00bfff;

    font-size: 18px;

    transition: transform .3s ease;
}


.vextra-license-card:hover .license-arrow {
    transform: translate(4px, -4px);
}


/* MOBILE */

@media (max-width: 900px) {

    .vextra-license-grid {
        grid-template-columns: 1fr 1fr;
    }

}


@media (max-width: 600px) {

    .vextra-license-section {
        padding-top: 70px;
    }

    .vextra-license-header {
        display: block;
    }

    .vextra-license-title h2 {
        font-size: 40px;
    }

    .vextra-license-grid {
        grid-template-columns: 1fr;
    }

    .vextra-license-card {
        min-height: 190px;
    }

}
/* =========================================
   VEXTRA CONTACT SECTION
========================================= */

.vextra-contact-section {
    background: #f5f7fa;
    padding: 110px 0;
    color: #07101d;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.vextra-contact-container {
    width: 88%;
    max-width: 1200px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;

    align-items: stretch;
}


/* LEFT */

.vextra-contact-content {
    padding: 10px 0;
}

.vextra-contact-label {
    display: block;

    margin-bottom: 18px;

    color: #00aeea;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}


.vextra-contact-content h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(42px, 5vw, 62px);

    line-height: 1.05;

    font-weight: 600;
}


.vextra-contact-content h2 span {
    color: #00aeea;
    font-style: italic;
}


.vextra-contact-intro {
    max-width: 510px;

    margin: 20px 0 35px;

    color: #687789;

    font-size: 13px;

    line-height: 1.8;
}


/* DETAILS */

.vextra-contact-details {
    border-top: 1px solid #d9dee4;
}


.vextra-contact-row {
    display: grid;

    grid-template-columns: 110px 1fr;

    gap: 25px;

    padding: 16px 0;

    border-bottom: 1px solid #d9dee4;
}


.vextra-contact-title {
    color: #00aeea;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.vextra-contact-value {
    color: #263445;

    font-size: 12px;

    line-height: 1.5;
}


.vextra-contact-value a {
    color: #263445;

    text-decoration: none;

    transition: .25s ease;
}


.vextra-contact-value a:hover {
    color: #00aeea;
}


/* BUTTONS */

.vextra-contact-buttons {
    display: flex;

    gap: 10px;

    margin-top: 28px;
}


.vextra-contact-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 0 22px;

    background: #00bfff;

    color: #04101c;

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;

    border: 1px solid #00bfff;

    transition: .3s ease;
}


.vextra-contact-button:hover {
    background: #07101d;

    color: #00bfff;
}


.vextra-contact-button.secondary {
    background: transparent;

    color: #07101d;

    border-color: #c8d0d9;
}


.vextra-contact-button.secondary:hover {
    background: #07101d;

    color: #ffffff;

    border-color: #07101d;
}


/* =========================================
   MAP
========================================= */

.vextra-map {
    position: relative;

    min-height: 470px;

    overflow: hidden;

    background: #0a1627;

    border: 1px solid rgba(0, 174, 234, .35);
}


.vextra-map iframe {
    width: 100%;
    height: 100%;

    min-height: 470px;

    display: block;

    border: 0;

    filter: grayscale(1) contrast(1.05);
}


/* MAP LABEL */

.vextra-map-overlay {
    position: absolute;

    left: 22px;
    bottom: 22px;

    padding: 15px 18px;

    background: rgba(5, 11, 22, .94);

    border-left: 2px solid #00bfff;

    color: #ffffff;

    pointer-events: none;
}


.vextra-map-overlay span {
    display: block;

    margin-bottom: 5px;

    color: #00bfff;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 2px;
}


.vextra-map-overlay strong {
    display: block;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 18px;
}


.vextra-map-overlay small {
    display: block;

    margin-top: 3px;

    color: #8ea0b8;

    font-size: 10px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 800px) {

    .vextra-contact-section {
        padding: 75px 0;
    }

    .vextra-contact-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .vextra-map {
        min-height: 350px;
    }

    .vextra-map iframe {
        min-height: 350px;
    }

}


@media (max-width: 500px) {

    .vextra-contact-content h2 {
        font-size: 40px;
    }

    .vextra-contact-row {
        grid-template-columns: 90px 1fr;

        gap: 15px;
    }

    .vextra-contact-buttons {
        flex-direction: column;
    }

    .vextra-contact-button {
        width: 100%;
    }

}
/* =========================================
   VEXTRA FAQ + CONTACT
========================================= */

.vextra-faq-contact {
    background: #f5f7fa;
    color: #07101d;

    padding: 110px 0;

    border-top: 1px solid #dfe4e9;
}


.vextra-faq-contact-container {
    width: 88%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.05fr .95fr;

    gap: 70px;

    align-items: start;
}


/* =========================================
   FAQ LEFT
========================================= */

.vextra-faq-label {
    display: block;

    margin-bottom: 18px;

    color: #00aeea;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}


.vextra-faq-area h2 {
    margin: 0;

    font-family: Georgia, "Times New Roman", serif;

    font-size: clamp(42px, 5vw, 60px);

    line-height: 1.05;

    font-weight: 600;
}


.vextra-faq-area h2 span {
    color: #00aeea;

    font-style: italic;
}


.vextra-faq-intro {
    max-width: 560px;

    margin: 20px 0 40px;

    color: #718095;

    font-size: 15px;

    line-height: 1.8;
}


/* FAQ ITEM */

.vextra-faq-item {
    border-top: 1px solid #d5dbe1;
}


.vextra-faq-item:last-child {
    border-bottom: 1px solid #d5dbe1;
}


.vextra-faq-question {
    width: 100%;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    padding: 22px 0;

    background: transparent;

    border: 0;

    color: #07101d;

    text-align: left;

    cursor: pointer;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 16px;

    font-weight: 600;
}


.vextra-faq-icon {
    flex-shrink: 0;

    width: 25px;
    height: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #cbd3dc;

    color: #00aeea;

    font-family: Arial, sans-serif;

    font-size: 17px;

    font-weight: 400;

    transition: .3s ease;
}


.vextra-faq-item.active .vextra-faq-icon {
    background: #00aeea;

    color: #07101d;

    border-color: #00aeea;
}


.vextra-faq-answer {
    max-height: 0;

    overflow: hidden;

    transition: max-height .35s ease;
}


.vextra-faq-answer p {
    margin: 0;

    padding: 0 50px 22px 0;

    color: #718095;

    font-size: 11px;

    line-height: 1.8;
}


/* =========================================
   CONTACT RIGHT
========================================= */

.vextra-faq-contact-box {
    background: #07101d;

    padding: 45px;

    border: 1px solid rgba(0, 174, 234, .25);

    position: relative;

    overflow: hidden;
}


.vextra-faq-contact-box::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    right: -80px;
    top: -80px;

    border-radius: 50%;

    border: 1px solid rgba(0, 191, 255, .15);
}


.vextra-contact-label-small {
    display: block;

    margin-bottom: 18px;

    color: #00bfff;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}


.vextra-faq-contact-box h2 {
    margin: 0;

    color: #ffffff;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 38px;

    line-height: 1.1;

    font-weight: 600;
}


.vextra-faq-contact-box h2 span {
    display: block;

    color: #00bfff;

    font-style: italic;
}


.vextra-faq-contact-box > p {
    margin: 20px 0 30px;

    color: #91a0b2;

    font-size: 15px;

    line-height: 1.8;
}


/* FORM */

.vextra-mini-contact-form {
    display: flex;

    flex-direction: column;

    gap: 10px;
}


.vextra-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 10px;
}


.vextra-mini-contact-form input,
.vextra-mini-contact-form textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 14px 15px;

    background: #0c1929;

    border: 1px solid rgba(255,255,255,.10);

    outline: none;

    color: #ffffff;

    font-family: inherit;

    font-size: 11px;

    transition: .25s ease;
}


.vextra-mini-contact-form input::placeholder,
.vextra-mini-contact-form textarea::placeholder {
    color: #65758a;
}


.vextra-mini-contact-form input:focus,
.vextra-mini-contact-form textarea:focus {
    border-color: #00bfff;
}


.vextra-mini-contact-form textarea {
    resize: vertical;

    min-height: 120px;
}


.vextra-mini-contact-form button {
    margin-top: 5px;

    padding: 14px 20px;

    background: #00bfff;

    border: 1px solid #00bfff;

    color: #04101c;

    cursor: pointer;

    font-size: 11px;

    font-weight: 700;

    transition: .3s ease;
}


.vextra-mini-contact-form button:hover {
    background: transparent;

    color: #00bfff;
}


/* DIRECT CONTACT */

.vextra-contact-direct {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin-top: 30px;

    padding-top: 22px;

    border-top: 1px solid rgba(255,255,255,.10);
}


.vextra-contact-direct small {
    display: block;

    margin-bottom: 7px;

    color: #00bfff;

    font-size: 10px;

    letter-spacing: 1.5px;
}


.vextra-contact-direct a,
.vextra-contact-direct span {
    color: #aebaca;

    text-decoration: none;

    font-size: 13px;

    line-height: 1.5;
}


.vextra-contact-direct a:hover {
    color: #00bfff;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 900px) {

    .vextra-faq-contact-container {
        grid-template-columns: 1fr;

        gap: 60px;
    }

}


@media (max-width: 600px) {

    .vextra-faq-contact {
        padding: 75px 0;
    }

    .vextra-faq-contact-box {
        padding: 30px 25px;
    }

    .vextra-faq-contact-box h2 {
        font-size: 32px;
    }

    .vextra-form-row {
        grid-template-columns: 1fr;
    }

    .vextra-contact-direct {
        grid-template-columns: 1fr;
    }

}.vextra-form-group {
    width: 100%;
    margin-bottom: 15px;
}

.vextra-form-group label {
    display: block;
    margin-bottom: 8px;

    color: #07101d;

    font-size: 12px;
    font-weight: 600;
}

.vextra-form-group select {
    width: 100%;
    padding: 14px 15px;

    background: #ffffff;

   
    border: 1px solid #d9dee5;
    border-radius: 0;
    background: #0c1929;
    color: #7c838d;

    font-family: inherit;
    font-size: 12px;

    outline: none;

    cursor: pointer;
}

.vextra-form-group select:focus {
    border-color: #00bfff;
}
/* =========================================
   VEXTRA CONTACT FORM - NEW FIELDS
========================================= */

.vextra-form-group {
    width: 100%;
    margin-bottom: 16px;
}

.vextra-form-group label {
    display: block;
    margin-bottom: 8px;

    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #7b8490;
}

.vextra-form-group select {
    width: 100%;
    height: 52px;

    padding: 0 16px;

    border: 1px solid #d9dee5;
    border-radius: 0;

    background: #ffffff;
    color: #1b2430;

    font-family: inherit;
    font-size: 13px;

    outline: none;
    cursor: pointer;

    transition: 0.3s ease;
}

.vextra-form-group select:focus {
    border-color: #00c8ff;
}


/* =========================================
   PHONE FIELD
========================================= */

.vextra-mini-contact-form input[type="tel"] {
    width: 100%;
    box-sizing: border-box;
}


/* =========================================
   SUCCESS MESSAGE
========================================= */

.vextra-form-success {
    margin-bottom: 20px;
    padding: 14px 16px;

    border-left: 3px solid #00c8ff;

    background: #eefbff;
    color: #07556b;

    font-size: 12px;
    line-height: 1.6;
}


/* =========================================
   FORM FIELD CONSISTENCY
========================================= */

.vextra-mini-contact-form input,
.vextra-mini-contact-form select,
.vextra-mini-contact-form textarea {
    box-sizing: border-box;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .vextra-form-row {
        grid-template-columns: 1fr;
    }

    .vextra-form-group select {
        height: 50px;
    }

}
/* =========================================
   VEXTRA SHOP PAGE
========================================= */

.vextra-shop-page {
    width: 100%;
    background: #050b16;
    color: #ffffff;
    padding: 100px 0 120px;
    box-sizing: border-box;
}

.vextra-shop-container {
    width: min(1400px, 90%);
    margin: 0 auto;
    box-sizing: border-box;
}


/* =========================================
   SHOP HEADER
========================================= */

.vextra-shop-header {
    padding-bottom: 45px;
    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.vextra-shop-label {
    display: block;
    margin-bottom: 14px;

    color: #00c8ff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.vextra-shop-header h1 {
    margin: 0 0 15px;
    padding: 0;

    color: #ffffff;
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.05;
    font-weight: 700;
}

.vextra-shop-header h1 span {
    color: #00c8ff;
}

.vextra-shop-header p {
    max-width: 620px;
    margin: 0;

    color: #8c9aae;
    font-size: 14px;
    line-height: 1.8;
}


/* =========================================
   SHOP LAYOUT
========================================= */

.vextra-shop-layout {
    display: grid !important;

    grid-template-columns: 220px minmax(0, 1fr) !important;

    gap: 45px;

    width: 100%;
    margin-top: 45px;

    align-items: start;
}


/* =========================================
   SIDEBAR
========================================= */

.vextra-shop-sidebar {
    width: 100%;
    padding-right: 25px;

    border-right: 1px solid rgba(255,255,255,0.10);

    box-sizing: border-box;
}

.vextra-sidebar-heading {
    margin-bottom: 22px;

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.vextra-product-categories {
    list-style: none !important;

    margin: 0 !important;
    padding: 0 !important;
}

.vextra-product-categories li {
    list-style: none !important;

    margin: 0 !important;
    padding: 0 !important;

    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.vextra-product-categories li a {
    display: flex;

    justify-content: space-between;
    align-items: center;

    width: 100%;

    padding: 14px 0;

    color: #9aa8ba;
    text-decoration: none;

    font-size: 13px;

    box-sizing: border-box;

    transition: 0.3s ease;
}

.vextra-product-categories li a:hover {
    color: #00c8ff;
}

.category-arrow {
    color: #536174;
}

.vextra-all-products {
    display: inline-block;

    margin-top: 25px;

    color: #00c8ff;
    text-decoration: none;

    font-size: 12px;
    font-weight: 600;
}
/* =========================================
   VEXTRA SHOP FILTER SIDEBAR
========================================= */

.vextra-shop-sidebar {
    width: 220px;
    flex-shrink: 0;
    padding: 0 22px 30px 0;
    border-right: 1px solid rgba(255,255,255,0.12);
    color: #ffffff;
}

.vextra-filter-form {
    width: 100%;
}

.vextra-sidebar-heading {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 28px;
    color: #ffffff;
}

/* Filter sections */

.vextra-filter-section {
    margin-bottom: 30px;
}

.vextra-filter-section h4 {
    margin: 0 0 16px;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

/* Radio / checkbox options */

.vextra-filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    margin: 0 0 13px;
    padding: 0;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.4;
    color: #b9c5d6;
}

.vextra-filter-option:hover {
    color: #00c8ff;
}

/* Inputs */

.vextra-filter-option input[type="radio"],
.vextra-filter-option input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;

    width: 15px;
    height: 15px;

    min-width: 15px;
    margin: 0;

    border: 1px solid #66758a;
    border-radius: 50%;

    background: transparent;
    cursor: pointer;
    position: relative;
}

/* Selected radio */

.vextra-filter-option input[type="radio"]:checked {
    border-color: #00c8ff;
}

.vextra-filter-option input[type="radio"]:checked::after {
    content: "";

    position: absolute;
    width: 7px;
    height: 7px;

    top: 3px;
    left: 3px;

    border-radius: 50%;
    background: #00c8ff;
}

/* Price */

.vextra-price-fields {
    display: flex;
    align-items: center;
    gap: 7px;
    width: 100%;
}

.vextra-price-fields input {
    width: 90px;
    height: 38px;

    padding: 0 10px;

    box-sizing: border-box;

    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;

    background: #101a2b;
    color: #ffffff;

    font-size: 12px;
    outline: none;
}

.vextra-price-fields input::placeholder {
    color: #7f8da3;
}

.vextra-price-fields input:focus {
    border-color: #00c8ff;
}

.vextra-price-fields span {
    color: #6f7d91;
}

/* Sort */

.vextra-filter-section select {
    width: 100%;
    height: 40px;

    padding: 0 10px;

    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;

    background: #101a2b;
    color: #ffffff;

    font-size: 12px;
    cursor: pointer;
    outline: none;
}

.vextra-filter-section select:focus {
    border-color: #00c8ff;
}

/* Buttons */

.vextra-filter-button,
.vextra-reset-button {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 40px;

    box-sizing: border-box;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    border-radius: 4px;

    transition: all 0.25s ease;
}

.vextra-filter-button {
    border: 1px solid #00c8ff;
    background: #00c8ff;
    color: #06101d;
    cursor: pointer;
    margin-bottom: 10px;
}

.vextra-filter-button:hover {
    background: transparent;
    color: #00c8ff;
}

.vextra-reset-button {
    border: 1px solid rgba(255,255,255,0.18);
    background: transparent;
    color: #aeb9c9;
}

.vextra-reset-button:hover {
    border-color: #00c8ff;
    color: #00c8ff;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .vextra-shop-sidebar {
        width: 100%;
        padding: 0 0 30px;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.12);
        margin-bottom: 30px;
    }

    .vextra-price-fields {
        max-width: 300px;
    }

    .vextra-price-fields input {
        width: 130px;
    }

}
/* =========================================
   VEXTRA PAGINATION
========================================= */

.vextra-pagination {
    width: 100%;
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.vextra-pagination ul {
    list-style: none !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 !important;
    padding: 0 !important;
}

.vextra-pagination li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.vextra-pagination a,
.vextra-pagination span {
    display: flex !important;
    align-items: center;
    justify-content: center;

    min-width: 38px;
    height: 38px;

    padding: 0 12px;

    box-sizing: border-box;

    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;

    background: transparent;
    color: #aeb9c9;

    text-decoration: none !important;

    font-size: 13px;
    font-weight: 500;

    transition: all 0.25s ease;
}


/* HOVER */

.vextra-pagination a:hover {
    background: #00c8ff;
    border-color: #00c8ff;
    color: #06101d !important;
}


/* CURRENT PAGE */

.vextra-pagination .current {
    background: #00c8ff !important;
    border-color: #00c8ff !important;
    color: #06101d !important;
    font-weight: 700;
}


/* DOTS */

.vextra-pagination .dots {
    border: none !important;
    background: transparent !important;
    color: #7f8da3 !important;
    min-width: 25px;
}


/* NEXT / PREVIOUS */

.vextra-pagination .next,
.vextra-pagination .prev {
    padding: 0 15px;
}


/* =========================================
   PRODUCT GRID - KEEP CONSISTENT ON PAGES
========================================= */

.vextra-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
}

.vextra-product-card {
    min-width: 0;
    overflow: hidden;
}


/* =========================================
   SHOP PRODUCT LINKS
========================================= */

.vextra-product-card h3 a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.25s ease;
}

.vextra-product-card h3 a:hover {
    color: #00c8ff;
}


/* =========================================
   ADD TO CART HOVER
========================================= */

.vextra-add-cart {
    transition: all 0.25s ease;
}

.vextra-add-cart:hover {
    background: #00c8ff !important;
    border-color: #00c8ff !important;
    color: #06101d !important;
}


/* =========================================
   ACTIVE CATEGORY / FILTER COLOR
========================================= */

.vextra-filter-option:hover span {
    color: #00c8ff;
}

.vextra-filter-option input:checked + span {
    color: #00c8ff;
    font-weight: 600;
}


/* =========================================
   PAGINATION MOBILE
========================================= */

@media (max-width: 768px) {

    .vextra-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 15px;
    }

    .vextra-pagination {
        margin-top: 30px;
    }

    .vextra-pagination ul {
        gap: 5px;
        flex-wrap: wrap;
    }

    .vextra-pagination a,
    .vextra-pagination span {
        min-width: 34px;
        height: 34px;
        padding: 0 9px;
        font-size: 12px;
    }

}

@media (max-width: 480px) {

    .vextra-products-grid {
        grid-template-columns: 1fr;
    }

}
.vextra-results-count{
    padding-bottom: 12px;
}
/* =========================================
   VEXTRA PRODUCT SEARCH
========================================= */

.vextra-shop-search {
    width: 100%;
    margin: 0 0 35px;
}

.vextra-shop-search form {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
}

.vextra-shop-search input[type="search"] {
    flex: 1;
    height: 48px;
    padding: 0 18px;
    box-sizing: border-box;

    background: #0d1829;
    color: #ffffff;

    border: 1px solid #26364d;
    border-radius: 4px;

    outline: none;
    font-size: 14px;
}

.vextra-shop-search input[type="search"]::placeholder {
    color: #718096;
}

.vextra-shop-search input[type="search"]:focus {
    border-color: #00c8ff;
}

.vextra-shop-search button {
    height: 48px;
    padding: 0 26px;

    background: #00c8ff;
    color: #06101d;

    border: 1px solid #00c8ff;
    border-radius: 4px;

    font-weight: 700;
    cursor: pointer;
    transition: .25s ease;
}

.vextra-shop-search button:hover {
    background: transparent;
    color: #00c8ff;
}
/* =========================================
   PRODUCTS AREA
========================================= */

.vextra-products-area {
    width: 100%;
    min-width: 0;
}


/* =========================================
   PRODUCT GRID
========================================= */

.vextra-products-grid {
    display: grid !important;

    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;

    gap: 28px 22px;

    width: 100%;

    margin: 0 !important;
    padding: 0 !important;
}


/* =========================================
   PRODUCT CARD
========================================= */

.vextra-product-card {
    width: 100%;
    min-width: 0;

    margin: 0 !important;
    padding: 0 !important;

    background: #0a1423;

    border: 1px solid rgba(255,255,255,0.08);

    overflow: hidden;

    box-sizing: border-box;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.vextra-product-card:hover {
    transform: translateY(-5px);

    border-color: rgba(0,200,255,0.45);
}


/* =========================================
   PRODUCT IMAGE
========================================= */

.vextra-product-image {
    display: flex !important;

    justify-content: center;
    align-items: center;

    width: 100%;
    height: 280px;

    padding: 20px;

    background: #ffffff;

    overflow: hidden;

    box-sizing: border-box;
}

.vextra-product-image img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    max-width: 100% !important;
    max-height: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;

    transition: transform 0.35s ease;
}

.vextra-product-card:hover .vextra-product-image img {
    transform: scale(1.04);
}


/* =========================================
   PRODUCT INFO
========================================= */

.vextra-product-info {
    width: 100%;

    padding: 18px 18px 20px;

    box-sizing: border-box;
}

.vextra-product-info h3 {
    margin: 0 0 10px !important;
    padding: 0 !important;

    line-height: 1.4;
}

.vextra-product-info h3 a {
    color: #ffffff !important;

    text-decoration: none !important;

    font-size: 15px;
    font-weight: 600;
}

.vextra-product-info h3 a:hover {
    color: #00c8ff !important;
}


/* =========================================
   PRICE
========================================= */

.vextra-product-price {
    margin-bottom: 15px;

    color: #00c8ff;

    font-size: 15px;
    font-weight: 600;
}

.vextra-product-price del {
    margin-right: 6px;
    color: #657286;
}

.vextra-product-price ins {
    color: #00c8ff;
    text-decoration: none;
}


/* =========================================
   ADD TO CART
========================================= */

.vextra-add-cart {
    display: inline-flex !important;

    align-items: center;
    justify-content: center;

    min-height: 40px;

    padding: 0 16px;

    background: transparent;

    border: 1px solid #00c8ff;

    color: #00c8ff !important;

    text-decoration: none !important;

    font-size: 11px;
    font-weight: 600;

    transition: 0.3s ease;
}

.vextra-add-cart:hover {
    background: #00c8ff;

    color: #05101c !important;
}


/* =========================================
   NO PRODUCTS
========================================= */

.vextra-no-products {
    padding: 60px 30px;

    text-align: center;

    border: 1px solid rgba(255,255,255,0.08);
}

.vextra-no-products h2 {
    margin: 0 0 10px;
    color: #ffffff;
}

.vextra-no-products p {
    margin: 0;
    color: #8491a3;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .vextra-shop-layout {
        grid-template-columns: 190px minmax(0, 1fr) !important;
        gap: 30px;
    }

    .vextra-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .vextra-shop-page {
        padding: 70px 0 90px;
    }

    .vextra-shop-layout {
        grid-template-columns: 1fr !important;
        gap: 35px;
    }

    .vextra-shop-sidebar {
        padding-right: 0;

        padding-bottom: 25px;

        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.10);
    }

    .vextra-products-grid {
        grid-template-columns: 1fr !important;
    }

    .vextra-product-image {
        height: 300px;
    }

}






/* =========================================
   VEXTRA NORMAL PAGES
========================================= */

.vextra-page {
    width: 100%;
    min-height: 70vh;
    background: #050b16;
    color: #ffffff;
    padding: 100px 0 120px;
    box-sizing: border-box;
}

.vextra-page-container {
    width: min(1200px, 90%);
    margin: 0 auto;
}

.vextra-page-content {
    width: 100%;
}

.vextra-page-title {
    margin: 0 0 45px;
    padding-bottom: 20px;

    color: #ffffff;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.1;
    font-weight: 700;

    border-bottom: 1px solid rgba(255,255,255,0.10);
}

.vextra-page-body {
    width: 100%;
    color: #a7b3c4;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   WOOCOMMERCE CART / CHECKOUT
========================================= */

.vextra-page-body .woocommerce {
    color: #ffffff;
}

.vextra-page-body .woocommerce h1,
.vextra-page-body .woocommerce h2,
.vextra-page-body .woocommerce h3 {
    color: #ffffff;
}


/* TABLE */

.vextra-page-body .woocommerce table.shop_table {
    width: 100%;
    background: #0a1423;

    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0;

    color: #ffffff;
    border-collapse: collapse;
}

.vextra-page-body .woocommerce table.shop_table th {
    padding: 18px;

    background: #0d1b2d;

    color: #ffffff;

    border-bottom: 1px solid rgba(255,255,255,0.10);

    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vextra-page-body .woocommerce table.shop_table td {
    padding: 20px;

    color: #b8c3d1;

    border-bottom: 1px solid rgba(255,255,255,0.07);
}


/* PRODUCT NAME */

.vextra-page-body .woocommerce table.shop_table td a {
    color: #ffffff;
    text-decoration: none;
}

.vextra-page-body .woocommerce table.shop_table td a:hover {
    color: #00c8ff;
}


/* CART TOTALS */

.vextra-page-body .cart_totals {
    margin-top: 40px;

    padding: 30px;

    background: #0a1423;

    border: 1px solid rgba(255,255,255,0.08);
}

.vextra-page-body .cart_totals h2 {
    margin-top: 0;

    color: #ffffff;
    font-size: 24px;
}


/* CHECKOUT */

.vextra-page-body .woocommerce form.checkout {
    color: #ffffff;
}

.vextra-page-body .woocommerce form .form-row label {
    display: block;

    margin-bottom: 8px;

    color: #cbd5e1;

    font-size: 12px;
    font-weight: 600;
}

.vextra-page-body .woocommerce form .form-row input,
.vextra-page-body .woocommerce form .form-row select,
.vextra-page-body .woocommerce form .form-row textarea {
    width: 100%;

    padding: 14px 15px;

    box-sizing: border-box;

    background: #0a1423;

    border: 1px solid rgba(255,255,255,0.12);

    color: #ffffff;

    outline: none;

    border-radius: 0;
}

.vextra-page-body .woocommerce form .form-row input:focus,
.vextra-page-body .woocommerce form .form-row select:focus,
.vextra-page-body .woocommerce form .form-row textarea:focus {
    border-color: #00c8ff;
}


/* CHECKOUT ORDER */

.vextra-page-body #order_review {
    padding: 25px;

    background: #0a1423;

    border: 1px solid rgba(255,255,255,0.08);
}

.vextra-page-body #order_review_heading {
    margin-top: 45px;

    color: #ffffff;
}


/* =========================================
   BUTTONS
========================================= */

.vextra-page-body button,
.vextra-page-body .button,
.vextra-page-body a.button,
.vextra-page-body input.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 0 22px;

    background: transparent;

    border: 1px solid #00c8ff;

    color: #00c8ff;

    text-decoration: none;

    font-size: 12px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;
}

.vextra-page-body button:hover,
.vextra-page-body .button:hover,
.vextra-page-body a.button:hover,
.vextra-page-body input.button:hover {
    background: #00c8ff;

    color: #05101c;
}


/* =========================================
   MY ACCOUNT
========================================= */

.vextra-page-body .woocommerce-MyAccount-navigation {
    width: 230px;
}

.vextra-page-body .woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.vextra-page-body .woocommerce-MyAccount-navigation li {
    margin: 0;

    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.vextra-page-body .woocommerce-MyAccount-navigation li a {
    display: block;

    padding: 14px 16px;

    color: #a7b3c4;

    text-decoration: none;

    transition: 0.3s ease;
}

.vextra-page-body .woocommerce-MyAccount-navigation li a:hover {
    background: #0a1423;
    color: #00c8ff;
}

.vextra-page-body .woocommerce-MyAccount-content {
    color: #a7b3c4;
}


/* =========================================
   NOTICES
========================================= */

.vextra-page-body .woocommerce-message,
.vextra-page-body .woocommerce-info,
.vextra-page-body .woocommerce-error {
    margin-bottom: 25px;

    padding: 15px 18px;

    background: #0a1423;

    border: 1px solid rgba(0,200,255,0.25);

    color: #dce7f3;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .vextra-page {
        padding: 70px 0 80px;
    }

    .vextra-page-container {
        width: 92%;
    }

    .vextra-page-title {
        margin-bottom: 30px;
        font-size: 38px;
    }

    .vextra-page-body .woocommerce table.shop_table {
        font-size: 12px;
    }

    .vextra-page-body .woocommerce table.shop_table th,
    .vextra-page-body .woocommerce table.shop_table td {
        padding: 12px 8px;
    }

    .vextra-page-body .woocommerce-MyAccount-navigation {
        width: 100%;
        margin-bottom: 30px;
    }

}
/* =========================================
   VEXTRA NAV CART
========================================= */

.vextra-cart-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    position: relative;

    color: #ffffff !important;
    text-decoration: none !important;

    font-size: 13px;
    font-weight: 600;

    transition: 0.3s ease;
}

.vextra-cart-link:hover {
    color: #00c8ff !important;
}

.vextra-cart-icon {
    font-size: 16px;
    line-height: 1;
}

.vextra-cart-text {
    line-height: 1;
}

.vextra-cart-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 18px;
    height: 18px;

    padding: 0 5px;

    box-sizing: border-box;

    background: #00c8ff;
    color: #05101c;

    border-radius: 20px;

    font-size: 10px;
    font-weight: 700;
    line-height: 1;
}

/* =========================================
   VEXTRA PROJECT CONTACT SECTION
========================================= */

.vextra-project-contact {
    width: 100%;
    padding: 100px 0 110px;

    background: #ffffff;
    color: #111111;

    box-sizing: border-box;
}


.vextra-project-contact-container {
    width: min(1200px, 90%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;

    gap: 45px;

    align-items: start;
}


/* =========================================
   LEFT CONTENT
========================================= */

.vextra-project-contact-info {
    width: 100%;
}


.vextra-project-contact-label {
    display: block;

    margin-bottom: 15px;

    color: #e3262e;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}


.vextra-project-contact-info h2 {
    margin: 0 0 14px;

    color: #171717;

    font-size: clamp(38px, 4vw, 54px);
    line-height: 1.05;

    font-weight: 600;

    letter-spacing: -2px;
}


.vextra-project-contact-info h2 span {
    color: #00aeea;
    font-style: italic;
}


.vextra-project-contact-intro {
    margin: 0 0 28px;

    color: #777777;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   CONTACT DETAILS
========================================= */

.vextra-contact-detail {
    display: grid;

    grid-template-columns: 110px 1fr;

    gap: 12px;

    padding: 18px 0;

    border-top: 1px solid #dddddd;
}


.vextra-detail-label {
    padding-top: 3px;

    color:#00aeea;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2px;
    text-transform: uppercase;
}


.vextra-detail-content {
    color: #171717;

    font-size: 16px;
    font-weight: 600;

    line-height: 1.5;
}


.vextra-detail-content a {
    color: #171717;

    text-decoration: none;

    transition: 0.3s ease;
}


.vextra-detail-content a:hover {
    color: #e3262e;
}


/* =========================================
   BUTTONS
========================================= */

.vextra-contact-buttons {
    display: flex;

    gap: 9px;

    margin-top: 20px;
}


.vextra-contact-buttons a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 120px;
    min-height: 43px;

    padding: 0 18px;

    box-sizing: border-box;

    border: 1px solid #d5d5d5;

    background: #ffffff;

    color: #171717;

    text-decoration: none;

    font-size: 11px;
    font-weight: 600;

    transition: 0.3s ease;
}


.vextra-contact-buttons a:hover {
    background: #171717;

    border-color: #171717;

    color: #ffffff;
}


/* =========================================
   MAP
========================================= */

.vextra-project-map {
    width: 100%;
    height: 450px;

    overflow: hidden;

    background: #eeeeee;
}


.vextra-project-map iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .vextra-project-contact {
        padding: 80px 0;
    }

    .vextra-project-contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vextra-project-map {
        height: 400px;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .vextra-project-contact {
        padding: 65px 0;
    }

    .vextra-project-contact-container {
        width: 90%;
    }

    .vextra-project-contact-info h2 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .vextra-contact-detail {
        grid-template-columns: 90px 1fr;
    }

    .vextra-detail-content {
        font-size: 14px;
    }

    .vextra-contact-buttons {
        flex-wrap: wrap;
    }

    .vextra-contact-buttons a {
        min-width: 105px;
    }

    .vextra-project-map {
        height: 320px;
    }

}
/* =========================================
   VEXTRA SINGLE PRODUCT
========================================= */

.vextra-single-product {
    background: #07101f;
    color: #fff;
    padding: 60px 0 100px;
}

.vextra-single-container {
    width: min(1200px, 92%);
    margin: auto;
}

.vextra-product-breadcrumb {
    margin-bottom: 35px;
    font-size: 13px;
    color: #7f8da3;
}

.vextra-product-breadcrumb a {
    color: #00c8ff;
    text-decoration: none;
}

.vextra-product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.vextra-product-gallery {
    position: sticky;
    top: 30px;
}

.vextra-product-main-image {
    background: #0d1829;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 10px;
    padding: 35px;
    text-align: center;
}

.vextra-product-main-image img {
    width: 100%;
    height: 500px;
    object-fit: contain;
}

.vextra-product-thumbnails {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.vextra-product-thumb {
    width: 75px;
    height: 75px;
    padding: 7px;
    background: #0d1829;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 6px;
    cursor: pointer;
}

.vextra-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vextra-product-category {
    color: #00c8ff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.vextra-product-category a {
    color: #00c8ff;
}

.vextra-product-title {
    font-size: 42px;
    line-height: 1.15;
    margin: 0 0 18px;
    color: #fff;
}

.vextra-product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: #8795a8;
    font-size: 13px;
}

.vextra-stars .star-rating {
    margin: 0;
}

.vextra-single-price {
    font-size: 28px;
    font-weight: 700;
    color: #00c8ff;
    margin-bottom: 25px;
}

.vextra-single-price del {
    color: #718096;
    font-size: 17px;
    margin-right: 8px;
}

.vextra-short-description {
    color: #aeb9c9;
    line-height: 1.8;
    margin-bottom: 30px;
}

.vextra-product-form {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 25px;
}

.vextra-product-form form.cart {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.vextra-product-form .quantity input {
    height: 48px;
    width: 70px;
    background: #101b2c;
    color: #fff;
    border: 1px solid rgba(255,255,255,.15);
    padding: 0 10px;
}

.vextra-product-form .single_add_to_cart_button {
    height: 48px;
    padding: 0 28px;
    background: #00c8ff !important;
    color: #06101d !important;
    border: 1px solid #00c8ff !important;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
}

.vextra-product-form .single_add_to_cart_button:hover {
    background: transparent !important;
    color: #00c8ff !important;
}

.vextra-product-form .variations {
    width: 100%;
    border: 0;
}

.vextra-product-form .variations td {
    padding: 10px 0;
    border: 0;
}

.vextra-product-form .variations label {
    color: #fff;
    font-weight: 600;
}

.vextra-product-form select {
    background: #101b2c;
    color: #fff;
    border: 1px solid rgba(255,255,255,.15);
    padding: 12px;
    border-radius: 4px;
    min-width: 180px;
}

.vextra-product-meta {
    border-top: 1px solid rgba(255,255,255,.1);
    margin-top: 30px;
    padding-top: 22px;
    color: #8996a8;
    font-size: 13px;
    line-height: 2;
}

.vextra-product-meta strong {
    color: #fff;
}

.vextra-stock {
    color: #53d68a;
}

.vextra-out-stock {
    color: #ff7070;
}

.vextra-delivery-box {
    margin-top: 25px;
    background: #0d1829;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 7px;
    padding: 20px;
}

.vextra-delivery-item {
    display: flex;
    gap: 15px;
    padding: 12px 0;
}

.vextra-delivery-item + .vextra-delivery-item {
    border-top: 1px solid rgba(255,255,255,.07);
}

.vextra-delivery-icon {
    font-size: 20px;
    color: #00c8ff;
}

.vextra-delivery-item strong {
    display: block;
    color: #fff;
    margin-bottom: 4px;
}

.vextra-delivery-item p {
    margin: 0;
    color: #7f8da3;
    font-size: 12px;
}

.vextra-product-information {
    margin-top: 80px;
    border-top: 1px solid rgba(255,255,255,.1);
}

.vextra-product-tabs {
    display: flex;
    gap: 35px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.vextra-tab-button {
    position: relative;
    background: transparent;
    border: 0;
    padding: 22px 0;
    color: #7f8da3;
    cursor: pointer;
    font-size: 14px;
}

.vextra-tab-button:hover,
.vextra-tab-button.active {
    color: #00c8ff;
}

.vextra-tab-button.active::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00c8ff;
}

.vextra-product-tab-content {
    display: none;
    padding: 40px 0;
    color: #aeb9c9;
    line-height: 1.8;
}

.vextra-product-tab-content.active {
    display: block;
}

.vextra-product-tab-content h2 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 20px;
}

.vextra-specifications-table {
    max-width: 800px;
    border: 1px solid rgba(255,255,255,.08);
}

.vextra-spec-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,.07);
}

.vextra-spec-row:last-child {
    border-bottom: 0;
}

.vextra-spec-row strong {
    color: #fff;
}

.vextra-delivery-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.vextra-delivery-details div {
    background: #0d1829;
    padding: 20px;
    border: 1px solid rgba(255,255,255,.08);
}

.vextra-delivery-details strong,
.vextra-delivery-details span {
    display: block;
}

.vextra-delivery-details strong {
    color: #fff;
    margin-bottom: 8px;
}

.vextra-delivery-details span {
    color: #7f8da3;
}

.vextra-related-products {
    margin-top: 70px;
}

.vextra-related-heading span {
    color: #00c8ff;
    font-size: 11px;
    letter-spacing: 2px;
}

.vextra-related-heading h2 {
    color: #fff;
    margin-top: 8px;
}

.vextra-related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 25px;
}

.vextra-related-card {
    background: #0d1829;
    border: 1px solid rgba(255,255,255,.08);
    padding: 15px;
    transition: .25s ease;
}

.vextra-related-card:hover {
    border-color: #00c8ff;
    transform: translateY(-4px);
}

.vextra-related-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.vextra-related-card h3 {
    font-size: 14px;
    margin: 15px 0 8px;
}

.vextra-related-card h3 a {
    color: #fff;
    text-decoration: none;
}

.vextra-related-card h3 a:hover {
    color: #00c8ff;
}

.vextra-related-card > div {
    color: #00c8ff;
    font-weight: 700;
}


/* MOBILE */

@media (max-width: 768px) {

    .vextra-product-main {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .vextra-product-gallery {
        position: static;
    }

    .vextra-product-main-image img {
        height: 350px;
    }

    .vextra-product-title {
        font-size: 30px;
    }

    .vextra-product-tabs {
        gap: 18px;
        overflow-x: auto;
    }

    .vextra-tab-button {
        white-space: nowrap;
    }

    .vextra-delivery-details {
        grid-template-columns: 1fr;
    }

    .vextra-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 480px) {

    .vextra-related-grid {
        grid-template-columns: 1fr;
    }

}

/* =========================================================
   VEXTRA — OUR STORY PAGE
   Premium / Minimal / Animated
========================================================= */

.vextra-our-story {
    --vextra-navy: #081426;
    --vextra-navy-2: #0d1c31;
    --vextra-blue: #1597ff;
    --vextra-cyan: #35d8ff;
    --vextra-white: #ffffff;
    --vextra-text: #aebdce;
    --vextra-border: rgba(255,255,255,0.10);

    background: var(--vextra-navy);
    color: var(--vextra-white);
    overflow: hidden;
}


/* =========================================================
   GLOBAL CONTAINER
========================================================= */

.story-container {
    width: min(1180px, 90%);
    margin: 0 auto;
}


/* =========================================================
   LABEL
========================================================= */

.story-label {
    display: inline-block;
    margin-bottom: 18px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;

    color: var(--vextra-cyan);

    position: relative;
    padding-left: 30px;
}

.story-label::before {
    content: "";
    position: absolute;

    left: 0;
    top: 50%;

    width: 20px;
    height: 1px;

    background: var(--vextra-cyan);

    transform: translateY(-50%);
}


/* =========================================================
   HERO
========================================================= */

.story-hero {
    min-height: 620px;

    display: flex;
    align-items: center;

    position: relative;

    background:
        radial-gradient(
            circle at 75% 45%,
            rgba(21,151,255,0.16),
            transparent 35%
        ),
        linear-gradient(
            120deg,
            #071222 0%,
            #0a1729 55%,
            #071321 100%
        );

    border-bottom: 1px solid var(--vextra-border);
}


/* subtle grid */

.story-hero::after {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,0.025) 1px,
            transparent 1px
        );

    background-size: 60px 60px;

    mask-image: linear-gradient(
        to right,
        black,
        transparent
    );

    pointer-events: none;
}


/* glowing circle */

.story-hero::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: 8%;
    top: 50%;

    transform: translateY(-50%);

    border-radius: 50%;

    background: rgba(21,151,255,0.07);

    filter: blur(20px);

    animation: storyGlow 5s ease-in-out infinite;
}


@keyframes storyGlow {

    0%,
    100% {
        transform: translateY(-50%) scale(1);
        opacity: .6;
    }

    50% {
        transform: translateY(-50%) scale(1.12);
        opacity: 1;
    }

}


.story-hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(5,14,27,.95) 0%,
        rgba(5,14,27,.65) 55%,
        rgba(5,14,27,.25) 100%
    );
}


.story-hero-content {
    position: relative;
    z-index: 2;

    width: min(760px, 90%);

    margin-left: max(5%, calc((100% - 1180px) / 2));

    animation: storyHeroIn 1s ease forwards;
}


@keyframes storyHeroIn {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


.story-hero-content h1 {
    margin: 0 0 25px;

    max-width: 700px;

    font-size: clamp(48px, 6vw, 76px);

    line-height: 1.04;

    font-weight: 700;

    letter-spacing: -2px;
}


.story-hero-content p {
    max-width: 650px;

    margin: 0;

    color: var(--vextra-text);

    font-size: 17px;

    line-height: 1.8;
}


/* =========================================================
   ABOUT SECTION
========================================================= */

.story-about-section {
    padding: 120px 0;

    background: #091629;
}


.story-about-grid {
    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 90px;

    align-items: center;
}


.story-about-content h2,
.story-section-heading h2 {
    margin: 0 0 25px;

    font-size: clamp(34px, 4vw, 50px);

    line-height: 1.12;

    letter-spacing: -1px;
}


.story-about-content p {
    margin: 0 0 20px;

    color: var(--vextra-text);

    font-size: 16px;

    line-height: 1.85;
}


/* =========================================================
   ABOUT HIGHLIGHTS
========================================================= */

.story-about-highlight {
    display: flex;

    flex-direction: column;

    gap: 15px;
}


.story-highlight-box {
    position: relative;

    padding: 28px 30px;

    border: 1px solid var(--vextra-border);

    background: rgba(255,255,255,0.025);

    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease;

    overflow: hidden;
}


.story-highlight-box::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;
    bottom: 0;

    width: 2px;

    background: var(--vextra-cyan);

    transform: scaleY(0);

    transform-origin: bottom;

    transition: transform .35s ease;
}


.story-highlight-box:hover {
    transform: translateX(8px);

    border-color: rgba(53,216,255,.35);

    background: rgba(21,151,255,.06);
}


.story-highlight-box:hover::before {
    transform: scaleY(1);
}


.story-highlight-box > span {
    display: block;

    margin-bottom: 12px;

    font-size: 11px;

    letter-spacing: 2px;

    color: var(--vextra-cyan);
}


.story-highlight-box h3 {
    margin: 0 0 8px;

    font-size: 22px;

    font-weight: 600;
}


.story-highlight-box p {
    margin: 0;

    color: var(--vextra-text);

    line-height: 1.7;

    font-size: 14px;
}


/* =========================================================
   SERVICES
========================================================= */

.story-services-section {
    padding: 120px 0;

    background: #071321;
}


.story-section-heading {
    max-width: 700px;

    margin-bottom: 60px;
}


.story-section-heading p {
    margin: 0;

    color: var(--vextra-text);

    line-height: 1.8;

    font-size: 16px;
}


/* =========================================================
   SERVICES GRID
========================================================= */

.story-services-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}


.story-service-card {
    position: relative;

    padding: 38px 32px;

    min-height: 230px;

    border: 1px solid var(--vextra-border);

    background: rgba(255,255,255,.025);

    transition:
        transform .4s ease,
        border-color .4s ease,
        background .4s ease;

    overflow: hidden;
}


.story-service-card::after {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    right: -50px;
    bottom: -50px;

    border-radius: 50%;

    background: rgba(21,151,255,.12);

    filter: blur(10px);

    transition: transform .5s ease;
}


.story-service-card:hover {
    transform: translateY(-8px);

    border-color: rgba(53,216,255,.4);

    background: rgba(21,151,255,.045);
}


.story-service-card:hover::after {
    transform: scale(2);
}


.story-service-card > span {
    display: block;

    margin-bottom: 35px;

    font-size: 11px;

    letter-spacing: 2px;

    color: var(--vextra-cyan);
}


.story-service-card h3 {
    margin: 0 0 13px;

    font-size: 21px;

    font-weight: 600;
}


.story-service-card p {
    margin: 0;

    color: var(--vextra-text);

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   VEXTRA PROJECTS — PREMIUM MINIMAL STYLE
========================================================= */

.projects-list-section {
    position: relative;
    padding: 130px 0;
    background: #07111f;
    overflow: hidden;
}

/* subtle background glow */
.projects-list-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    top: 5%;
    left: -250px;
    background: rgba(0, 174, 255, 0.07);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.projects-list-section::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    bottom: 5%;
    right: -220px;
    background: rgba(80, 110, 255, 0.06);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.projects-page-container {
    width: min(1180px, 90%);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}


/* =========================================================
   PROJECT ITEM
========================================================= */

.project-story-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;

    margin-bottom: 150px;

    opacity: 0;
    transform: translateY(50px);

    animation: projectReveal 0.9s ease forwards;
}


/* stagger animation */

.project-story-item:nth-child(1) {
    animation-delay: 0.1s;
}

.project-story-item:nth-child(2) {
    animation-delay: 0.25s;
}

.project-story-item:nth-child(3) {
    animation-delay: 0.4s;
}

.project-story-item:nth-child(4) {
    animation-delay: 0.55s;
}

.project-story-item:nth-child(5) {
    animation-delay: 0.7s;
}

.project-story-item:nth-child(6) {
    animation-delay: 0.85s;
}

.project-story-item:nth-child(7) {
    animation-delay: 1s;
}

.project-story-item:nth-child(8) {
    animation-delay: 1.15s;
}

.project-story-item:nth-child(9) {
    animation-delay: 1.3s;
}


/* reverse layout */

.project-story-item.reverse {
    grid-template-columns: 1fr 1fr;
}

.project-story-item.reverse .project-story-image {
    order: 2;
}

.project-story-item.reverse .project-story-content {
    order: 1;
}


/* =========================================================
   IMAGE
========================================================= */

.project-story-image {
    position: relative;
    overflow: hidden;
    border-radius: 18px;

    background: #0b1a2d;

    border: 1px solid rgba(0, 190, 255, 0.14);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.35);

    transition:
        transform 0.6s ease,
        border-color 0.4s ease,
        box-shadow 0.5s ease;
}


/* blue accent line */

.project-story-image::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: #00c8ff;

    box-shadow: 0 0 15px rgba(0, 200, 255, 0.7);

    transition: width 0.6s ease;
}


/* image */

.project-story-image img {
    width: 100%;
    height: 360px;

    display: block;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(.2,.8,.2,1),
        filter 0.6s ease;
}


/* hover */

.project-story-item:hover .project-story-image {
    transform: translateY(-8px);

    border-color: rgba(0, 200, 255, 0.45);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.45),
        0 0 35px rgba(0, 180, 255, 0.08);
}

.project-story-item:hover .project-story-image::after {
    width: 100%;
}

.project-story-item:hover .project-story-image img {
    transform: scale(1.045);
    filter: brightness(1.06);
}


/* =========================================================
   CONTENT
========================================================= */

.project-story-content {
    position: relative;
    padding: 10px 0;
}


/* number */

.project-number {
    display: block;

    margin-bottom: 18px;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 3px;

    color: #00c8ff;

    opacity: 0.85;
}


/* category */

.project-category {
    display: inline-block;

    margin-bottom: 18px;

    padding: 7px 12px;

    border: 1px solid rgba(0, 200, 255, 0.2);

    border-radius: 30px;

    background: rgba(0, 170, 255, 0.05);

    color: #7edfff;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 2px;
}


/* heading */

.project-story-content h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: clamp(28px, 3vw, 42px);

    line-height: 1.15;

    font-weight: 500;

    letter-spacing: -0.8px;

    max-width: 500px;
}


/* paragraph */

.project-story-content p {
    margin: 0;

    max-width: 500px;

    color: #9aaabd;

    font-size: 15px;

    line-height: 1.9;

    font-weight: 400;
}


/* =========================================================
   SMALL ACCENT
========================================================= */

.project-story-content::before {
    content: "";

    position: absolute;

    left: -28px;
    top: 8px;

    width: 2px;
    height: 42px;

    background: #00c8ff;

    box-shadow: 0 0 15px rgba(0, 200, 255, 0.5);

    opacity: 0.7;
}


/* =========================================================
   ANIMATION
========================================================= */

@keyframes projectReveal {

    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* floating image effect */

@keyframes softFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .projects-list-section {
        padding: 90px 0;
    }

    .project-story-item,
    .project-story-item.reverse {
        grid-template-columns: 1fr;

        gap: 45px;

        margin-bottom: 100px;
    }

    .project-story-item.reverse .project-story-image,
    .project-story-item.reverse .project-story-content {
        order: unset;
    }

    .project-story-image img {
        height: 340px;
    }

    .project-story-content h2 {
        max-width: 650px;
    }

    .project-story-content p {
        max-width: 650px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .projects-list-section {
        padding: 70px 0;
    }

    .projects-page-container {
        width: 88%;
    }

    .project-story-item,
    .project-story-item.reverse {
        gap: 30px;
        margin-bottom: 80px;
    }

    .project-story-image {
        border-radius: 14px;
    }

    .project-story-image img {
        height: 230px;
    }

    .project-story-content {
        padding-left: 12px;
    }

    .project-story-content::before {
        left: 0;
        top: 5px;
        height: 35px;
    }

    .project-number {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .project-category {
        font-size: 9px;
        padding: 6px 10px;
    }

    .project-story-content h2 {
        font-size: 27px;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .project-story-content p {
        font-size: 14px;
        line-height: 1.8;
    }

}
/* =========================================
   VEXTRA PROJECTS INTRO
========================================= */

.projects-intro {
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 30px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Small Label */

.projects-intro-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #35bfff;
    margin-bottom: 22px;
    opacity: 0;
    animation: projectFadeUp 0.8s ease forwards;
}

/* Main Heading */

.projects-intro h1 {
    margin: 0;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.08;
    font-weight: 600;
    letter-spacing: -2px;
    color: #ffffff;
    opacity: 0;
    animation: projectFadeUp 0.9s ease 0.15s forwards;
}

.projects-intro h1 span {
    color: #35bfff;
}

/* Description */

.projects-intro p {
    max-width: 720px;
    margin: 28px auto 0;
    color: rgba(255,255,255,0.65);
    font-size: 16px;
    line-height: 1.8;
    font-weight: 400;
    opacity: 0;
    animation: projectFadeUp 0.9s ease 0.3s forwards;
}

/* Bottom Line */

.projects-intro-line {
    width: 70px;
    height: 2px;
    margin: 38px auto 0;
    background: #35bfff;
    position: relative;
    opacity: 0;
    animation:
        projectLine 0.8s ease 0.5s forwards,
        projectGlow 2.5s ease-in-out 1.3s infinite;
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes projectFadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes projectLine {

    from {
        opacity: 0;
        width: 0;
    }

    to {
        opacity: 1;
        width: 70px;
    }

}


@keyframes projectGlow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(53,191,255,0.25);
    }

    50% {
        box-shadow:
            0 0 14px rgba(53,191,255,0.55),
            0 0 28px rgba(53,191,255,0.15);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .projects-intro {
        padding: 90px 22px 55px;
    }

    .projects-intro h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .projects-intro p {
        font-size: 14px;
        line-height: 1.7;
    }

}

/* =========================================================
   CTA
========================================================= */

.story-cta {
    padding: 110px 0;

    position: relative;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(21,151,255,.13),
            transparent 45%
        ),
        #06111f;

    border-top: 1px solid var(--vextra-border);
}


.story-cta-content {
    max-width: 700px;

    margin: 0 auto;

    text-align: center;
}


.story-cta-content .story-label {
    padding-left: 0;
}


.story-cta-content .story-label::before {
    display: none;
}


.story-cta-content h2 {
    margin: 0 0 20px;

    font-size: clamp(34px, 4vw, 52px);

    letter-spacing: -1px;
}


.story-cta-content p {
    max-width: 600px;

    margin: 0 auto 32px;

    color: var(--vextra-text);

    line-height: 1.8;
}


.story-cta-button {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 14px 25px;

    color: #fff;

    background: var(--vextra-blue);

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    border: 1px solid rgba(255,255,255,.12);

    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}


.story-cta-button span {
    font-size: 18px;

    transition: transform .3s ease;
}


.story-cta-button:hover {
    color: #fff;

    background: #087fdc;

    transform: translateY(-3px);

    box-shadow: 0 12px 35px rgba(21,151,255,.25);
}


.story-cta-button:hover span {
    transform: translateX(5px);
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.story-about-content,
.story-about-highlight,
.story-section-heading,
.story-service-card,
.story-project-card,
.story-cta-content {
    animation: storyReveal .8s ease both;
}


@keyframes storyReveal {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 900px) {

    .story-about-grid {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .story-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .story-projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }


    .story-hero {
        min-height: 560px;
    }


    .story-hero-content {
        margin-left: 5%;
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 600px) {

    .story-container {
        width: 88%;
    }


    .story-hero {
        min-height: 520px;
    }


    .story-hero-content {
        width: 88%;

        margin: 0 auto;
    }


    .story-hero-content h1 {
        font-size: 43px;

        letter-spacing: -1.5px;
    }


    .story-hero-content p {
        font-size: 15px;

        line-height: 1.7;
    }


    .story-about-section,
    .story-services-section,
    .story-projects-section {
        padding: 80px 0;
    }


    .story-about-content h2,
    .story-section-heading h2 {
        font-size: 34px;
    }


    .story-about-content p {
        font-size: 15px;
    }


    .story-services-grid {
        grid-template-columns: 1fr;
    }


    .story-projects-grid {
        grid-template-columns: 1fr;
    }


    .story-service-card {
        min-height: auto;

        padding: 30px;
    }


    .story-highlight-box {
        padding: 25px;
    }


    .project-image {
        height: 230px;
    }


    .story-cta {
        padding: 80px 0;
    }


    .story-cta-content h2 {
        font-size: 35px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .vextra-our-story *,
    .vextra-our-story *::before,
    .vextra-our-story *::after {
        animation: none !important;
        transition: none !important;
    }

}
 /* =========================
    VEXTRA FOOTER
 ========================= */

.site-footer {
    background: #030914;
    color: #ffffff;
}


/* MAIN FOOTER */

.footer-main {
    padding: 80px 0 70px;

    border-top: 1px solid rgba(0, 200, 255, 0.15);
}


.footer-container {
    width: 90%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr;

    gap: 60px;
}


/* BRAND */

.footer-logo {
    display: inline-block;

    margin-bottom: 22px;
}


.footer-logo img {
    width: 125px;
    height: auto;

    display: block;
}


.footer-brand p {
    max-width: 330px;

    margin: 0 0 25px;

    font-size: 13px;
    line-height: 1.8;

    color: #8197b1;
}


.footer-cta {
    display: inline-flex;
    align-items: center;

    padding: 11px 17px;

    border: 1px solid #00c8ff;
    border-radius: 5px;

    color: #00c8ff;

    font-size: 11px;
    font-weight: 700;

    text-decoration: none;

    transition: 0.3s ease;
}


.footer-cta:hover {
    background: #00c8ff;
    color: #03101d;
}


/* COLUMNS */

.footer-heading {
    display: block;

    margin-bottom: 10px;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;

    color: #00c8ff;
}


.footer-column h3 {
    margin: 0 0 22px;

    font-family: Georgia, "Times New Roman", serif;

    font-size: 20px;

    color: #ffffff;
}


/* LINKS */

.footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}


.footer-column li {
    margin-bottom: 13px;
}


.footer-column li a {
    font-size: 12px;

    color: #8197b1;

    text-decoration: none;

    transition: 0.3s ease;
}


.footer-column li a:hover {
    padding-left: 5px;

    color: #00c8ff;
}


/* CONTACT */

.contact-item {
    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 20px;
}


.contact-icon {
    width: 30px;
    height: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: 1px solid rgba(0, 200, 255, 0.25);
    border-radius: 6px;

    color: #00c8ff;

    font-size: 13px;
}


.contact-item small {
    display: block;

    margin-bottom: 4px;

    font-size: 9px;

    color: #536b84;
}


.contact-item a,
.contact-item p {
    margin: 0;

    font-size: 11px;
    line-height: 1.5;

    color: #9aafc3;

    text-decoration: none;
}


.contact-item a:hover {
    color: #00c8ff;
}


/* BOTTOM */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);

    padding: 22px 0;
}


.footer-bottom-container {
    width: 90%;
    max-width: 1200px;

    margin: 0 auto;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p {
    margin: 0;

    font-size: 10px;

    color: #536b84;
}


.footer-bottom-links {
    display: flex;

    align-items: center;

    gap: 12px;
}


.footer-bottom-links a {
    font-size: 10px;

    color: #536b84;

    text-decoration: none;
}


.footer-bottom-links a:hover {
    color: #00c8ff;
}


.footer-bottom-links span {
    font-size: 8px;

    color: #34485d;
}


/* =========================
   RESPONSIVE
 ========================= */

@media (max-width: 1000px) {

    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr;

        gap: 45px;
    }

    .footer-contact {
        grid-column: span 3;
    }

}


@media (max-width: 700px) {

    .footer-main {
        padding: 60px 0 45px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 40px 25px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-contact {
        grid-column: span 2;
    }

    .footer-bottom-container {
        flex-direction: column;

        align-items: flex-start;
    }

}


@media (max-width: 480px) {

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-brand,
    .footer-contact {
        grid-column: span 1;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
    }

}
/* =========================================
   VEXTRA FAST PAGE LOADER
========================================= */

#vextra-loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;

    background: #07111f;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 999999;

    opacity: 1;
    visibility: visible;

    transition:
        opacity 0.45s ease,
        visibility 0.45s ease;
}

.vextra-loader-content {
    text-align: center;
}

.vextra-loader-logo {
    color: #fff;

    font-size: clamp(42px, 7vw, 78px);
    font-weight: 600;
    letter-spacing: 10px;

    opacity: 0;
    transform: translateY(10px);

    animation: vextraLogoIn 0.55s ease forwards;
}

.vextra-loader-line {
    width: 100px;
    height: 1px;

    background: rgba(255,255,255,0.15);

    margin: 20px auto 0;

    overflow: hidden;

    opacity: 0;

    animation: vextraLineShow 0.3s ease 0.15s forwards;
}

.vextra-loader-line span {
    display: block;

    width: 0;
    height: 100%;

    background: #35bfff;

    box-shadow: 0 0 12px rgba(53,191,255,0.7);

    animation: vextraLoading 0.5s ease 0.2s forwards;
}


/* LOGO */

@keyframes vextraLogoIn {

    from {
        opacity: 0;
        transform: translateY(10px);
        letter-spacing: 18px;
    }

    to {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 10px;
    }

}


/* LINE */

@keyframes vextraLineShow {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}


@keyframes vextraLoading {

    from {
        width: 0;
    }

    to {
        width: 100%;
    }

}


/* HIDE */

#vextra-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}