@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/inter/v20/UcC73FwrK3iLTeHuS_nVMrMxCp50SjIa2JL7SUc.woff2) format('woff2');
    unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

:root {
    --vesta-blue: #3FA9E0;
    --vesta-dark: #17324D;
    --vesta-deep: #0D2438;
    --vesta-light-blue: #EAF6FC;
    --vesta-pale-blue: #F5F9FC;
    --vesta-border: #D7E4EC;
    --vesta-white: #FFFFFF;
    --vesta-text: #0D2438;
    --vesta-muted: #4B677F;
    --primary-navy: #17324D;
    --secondary-navy: #0D2438;
    --accent-blue: #3FA9E0;
    --off-white: #F5F9FC;
    --white: #FFFFFF;
    --text-dark: #0D2438;
    --text-gray: #4B677F;
    --border-light: #D7E4EC;
    --shadow-sm: 0 4px 12px rgba(23, 50, 77, 0.08);
    --shadow-md: 0 10px 25px rgba(23, 50, 77, 0.12);
    --shadow-lg: 0 20px 45px rgba(23, 50, 77, 0.18);
    --max-width: 1240px;
    --font-primary: "Times New Roman", Times, serif;
    --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-premium: transform 0.35s cubic-bezier(.2, .8, .2, 1),
        opacity 0.35s ease,
        box-shadow 0.35s ease,
        color 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease;
}

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

html,
body,
button,
a,
input,
textarea,
select,
.btn,
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div {
    font-family: var(--font-primary);
}

body {
    background: linear-gradient(180deg, var(--vesta-pale-blue) 0%, var(--vesta-white) 100%);
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

button,
a,
input,
textarea,
select,
.btn {
    font-family: var(--font-primary);
}

a,
button,
.btn,
.card,
.industries-card,
.product-applications-card,
.gallery-preview-card,
.stats-3d-card,
.dark-card,
.faq-section-item,
.logo-image {
    transition: var(--transition-premium);
}

.faq-section-item,
.logo-image {
    transition: transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        background-color 0.35s ease,
        color 0.35s ease,
        filter 0.35s ease;
}

.top-bar {
    background: linear-gradient(90deg, #3B89BA 0%, #469DD3 100%);
    color: var(--white);
    font-size: 13px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.top-info-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #FFFFFF;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    border-bottom: 1px solid transparent;
    opacity: 0;
    transform: translateY(-15px);
    transition: background-color 0.35s ease,
        backdrop-filter 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease,
        opacity 0.6s ease,
        transform 0.6s ease;
}

.navbar.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.navbar.scrolled,
.navbar.navbar-scrolled {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(52, 56, 61, 0.10);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    min-width: 0;
    height: 100%;
}

.logo-image {
    display: block;
    width: 155px;
    height: auto;
    max-width: none;
    max-height: none;
    object-fit: contain;
    image-rendering: auto;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .logo-image {
        width: 145px;
    }
}

@media (max-width: 768px) {
    .logo-image {
        width: 135px;
    }
}

@media (max-width: 576px) {
    .logo-image {
        width: 120px;
    }
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: #34383D;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-primary);
    padding: 6px 0;
    position: relative;
    transition: color 0.25s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: #469DD3;
    transition: width 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #469DD3;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.btn-quote {
    background: #469DD3;
    color: #FFFFFF;
    padding: 11px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    box-shadow: 0 6px 16px rgba(70, 157, 211, 0.25);
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-quote:hover {
    background: #3B89BA;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(70, 157, 211, 0.3);
}

.btn-quote:active {
    transform: translateY(0);
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    overflow: hidden;
    padding-top: 70px;
    isolation: isolate;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: -2%;
    background: inherit;
    background-size: 105% !important;
    background-position: center;
    transform: scale(1.01);
    z-index: 0;
    animation: heroBgIn 1.5s ease forwards;
}

@keyframes heroBgIn {
    from {
        background-size: 105% !important;
    }
    to {
        background-size: 100% !important;
    }
}

.hero-section > .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    animation: heroTextIn 0.8s ease both;
    animation-delay: 0.04s;
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.hero-section p {
    animation: heroTextIn 0.8s ease both;
    animation-delay: 0.15s;
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons .btn {
    animation: heroTextIn 0.8s ease both;
    animation-delay: 0.3s;
}

@keyframes heroSlowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.03);
    }
}

@keyframes heroTextIn {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    padding: 80px 0;
}

.section-shell {
    background: linear-gradient(135deg, var(--white) 0%, var(--vesta-pale-blue) 100%);
    border: 1px solid var(--vesta-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 18px 45px rgba(52, 56, 61, 0.06);
}

.section-shell--dark {
    background: linear-gradient(135deg, var(--vesta-blue), #3D8FC7);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.16);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 32px;
}

.section-heading.text-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading h2 {
    display: inline-block;
    position: relative;
}

.section-heading h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 3px;
    background: var(--vesta-blue);
    transition: width 0.5s ease;
}

.section-heading.is-visible h2::after,
.motion-reveal.is-visible .section-heading h2::after {
    width: 40px;
}

.section-heading h2 {
    font-size: 34px;
    margin-bottom: 12px;
    line-height: 1.25;
}

.section-heading p {
    font-size: 16px;
    color: var(--grey);
}

.section-shell--dark .section-heading h2,
.section-shell--dark .section-heading p {
    color: var(--white);
}

.section-shell--dark .section-heading p {
    color: rgba(255, 255, 255, 0.82);
}

.about-section {
    background-color: var(--white);
}

.bg-light {
    background-color: var(--light-grey);
}

.product-applications-section {
    position: relative;
    background: linear-gradient(180deg, #EAF5FF 0%, #FFFFFF 100%);
    padding: 100px 0 112px;
    overflow: hidden;
}

.product-applications-section::before {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    top: 16%;
    right: 8%;
    background: radial-gradient(circle, rgba(20, 121, 209, 0.14) 0%, transparent 60%);
    pointer-events: none;
}

.product-applications-section::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    left: 10%;
    bottom: 18%;
    background: radial-gradient(circle, rgba(234, 245, 255, 0.7) 0%, transparent 68%);
    pointer-events: none;
}

.product-applications-container {
    max-width: 1180px;
}

.product-applications-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 44px;
    opacity: 0;
    transform: translateY(18px);
    animation: sectionFadeUp 0.85s ease-out forwards;
    animation-delay: 0.12s;
}

.product-applications-eyebrow {
    color: #1479D1;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.product-applications-title {
    color: #172B4D;
    font-size: clamp(34px, 4vw, 46px);
    font-weight: 800;
    line-height: 1.05;
    margin: 0;
}

.product-applications-divider {
    display: block;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #1479D1, rgba(20, 121, 209, 0.65));
    margin-top: 18px;
    border-radius: 999px;
    animation: dividerExpand 0.9s ease-out forwards 0.3s;
}

.product-applications-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.product-applications-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 190px;
    padding: 30px 24px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid #D8E7F5;
    border-radius: 18px;
    color: #172B4D;
    text-align: center;
    box-shadow: 0 22px 50px rgba(20, 121, 209, 0.08);
    overflow: hidden;
    transition: transform 0.45s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.product-applications-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 18px;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0));
    opacity: 0;
    transform: translateX(-120%) skewX(-18deg);
    transition: opacity 0.45s ease, transform 0.45s ease;
    pointer-events: none;
    z-index: 1;
}

.product-applications-card::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    background: linear-gradient(90deg, transparent 0%, transparent 48%, rgba(20, 121, 209, 0.25) 50%, transparent 52%, transparent 100%);
    background-size: 200% 100%;
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
    z-index: 0;
}

.product-applications-card:hover {
    transform: translateY(-10px);
    border-color: #1479D1;
    box-shadow: 0 28px 68px rgba(20, 121, 209, 0.14);
}

.product-applications-card:hover::before {
    opacity: 0.75;
    transform: translateX(120%) skewX(-18deg);
}

.product-applications-card:hover::after {
    opacity: 1;
    animation: borderTrace 1.8s linear infinite;
}

.product-applications-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    border-radius: 50%;
    background: radial-gradient(circle at top left, rgba(234, 245, 255, 0.95), rgba(20, 121, 209, 0.16));
    box-shadow: 0 16px 35px rgba(20, 121, 209, 0.12);
    font-size: 30px;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    position: relative;
    z-index: 2;
}

.product-applications-card:hover .product-applications-icon {
    transform: translateY(-3px) rotate(10deg) scale(1.08);
    box-shadow: 0 20px 48px rgba(20, 121, 209, 0.18);
}

.product-applications-title-text {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(14px, 1.25vw, 16px);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.01em;
    margin: 0;
    color: #172B4D;
    padding-bottom: 16px;
    z-index: 2;
}

.product-applications-title-text::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 48px;
    height: 3px;
    background: #1479D1;
    border-radius: 999px;
    transition: transform 0.35s ease;
}

.product-applications-card:hover .product-applications-title-text::after {
    transform: translateX(-50%) scaleX(1);
}

@keyframes dividerExpand {
    from { width: 0; }
    to { width: 72px; }
}

@keyframes sectionFadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes borderTrace {
    0% { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}

@media (max-width: 900px) {
    .product-applications-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .product-applications-section {
        padding: 28px 0 52px;
    }

    .product-applications-grid {
        grid-template-columns: 1fr;
    }

    .product-applications-card {
        min-height: 96px;
    }
}

.gallery-preview-section {
    background-color: var(--vesta-pale-blue);
    padding: 55px 0 55px;
}

.gallery-preview-container {
    max-width: 840px;
}

.gallery-preview-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 32px;
}

.gallery-preview-eyebrow {
    color: var(--vesta-blue);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.gallery-preview-title {
    color: var(--vesta-dark);
    font-size: clamp(24px, 2.8vw, 30px);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.gallery-preview-line {
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--vesta-blue);
    margin-top: 14px;
}

.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

.gallery-preview-card {
    background-color: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(8, 7, 92, 0.05);
}

.gallery-preview-image {
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: contain;
    display: block;
    background-color: #f8fafc;
}

.gallery-preview-content {
    display: flex;
    align-items: center;
    min-height: 47px;
    padding: 0 14px;
}

.gallery-preview-card-title {
    color: var(--vesta-dark);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    margin: 0;
}

.gallery-preview-button-wrap {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.gallery-preview-button {
    display: inline-block;
    background-color: var(--vesta-blue);
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 12px 20px;
    border-radius: 2px;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 18px rgba(52, 56, 61, 0.12);
}

.gallery-preview-button:hover {
    background-color: #3E90C9;
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(70, 157, 211, 0.25);
}

.our-vision-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    padding: 80px 24px;
    background: linear-gradient(180deg, rgba(31, 84, 142, 0.92) 0%, rgba(70, 157, 211, 0.85) 56%, rgba(255, 255, 255, 0.08) 100%), url('back.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    animation: visionBackground 14s ease-in-out infinite;
}

.our-vision-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 36%), radial-gradient(circle at bottom left, rgba(70, 157, 211, 0.22), transparent 28%);
    pointer-events: none;
    z-index: 0;
}

.our-vision-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 34, 68, 0.55), rgba(4, 34, 68, 0.35));
    z-index: 0;
}

.our-vision-container {
    position: relative;
    z-index: 1;
    max-width: 760px;
    width: 100%;
    text-align: center;
    color: var(--white);
    animation: visionContentFade 1.1s ease forwards;
}

.our-vision-eyebrow {
    color: #D6EDFF;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 14px;
}

.our-vision-title {
    color: #FFFFFF;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.03em;
    line-height: 1.05;
    text-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.our-vision-line {
    display: block;
    width: 56px;
    height: 3px;
    background: linear-gradient(90deg, #9EE4FF, #ffffff);
    margin: 18px auto 0;
    border-radius: 999px;
    animation: linePulse 2.4s ease-in-out infinite;
}

.our-vision-text {
    color: rgba(245, 250, 255, 0.95);
    font-size: clamp(17px, 1.5vw, 20px);
    font-weight: 400;
    line-height: 1.75;
    margin: 24px auto 0;
    max-width: 720px;
    letter-spacing: 0.01em;
}

@keyframes visionBackground {
    0%, 100% {
        background-position: center top;
    }
    50% {
        background-position: center 20%;
    }
}

@keyframes visionContentFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes linePulse {
    0%, 100% {
        opacity: 0.8;
        transform: scaleX(1);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.14);
    }
}

.faq-section {
    background-color: #ffffff;
    padding: 55px 20px 55px;
}

.faq-section-container {
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
}

.faq-section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 28px;
}

.faq-section-eyebrow {
    color: var(--vesta-blue);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.faq-section-title {
    color: var(--vesta-dark);
    font-size: clamp(24px, 2.9vw, 30px);
    font-weight: 700;
    margin: 0;
}

.faq-section-line {
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--vesta-blue);
    margin-top: 14px;
}

.faq-section-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-section-item {
    border: 1px solid rgba(63, 169, 224, 0.18);
    border-radius: 12px;
    background-color: var(--white);
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background-color 0.35s ease;
}

.faq-section-item:hover {
    border-color: rgba(63, 169, 224, 0.28);
}

@media (hover: hover) {
    .faq-section-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 30px rgba(63, 169, 224, 0.08);
        background-color: rgba(63, 169, 224, 0.02);
    }
}

.faq-section-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px;
    border: 0;
    background: transparent;
    color: var(--vesta-dark);
    font-size: 14px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: color 0.3s ease;
}

.faq-section-question:focus-visible {
    outline: 2px solid rgba(63, 169, 224, 0.45);
    outline-offset: 3px;
}

.faq-section-icon {
    color: var(--vesta-blue);
    font-size: 22px;
    font-weight: 600;
    line-height: 1;
    transition: transform 0.35s ease, color 0.35s ease;
    transform-origin: center;
}

.faq-section-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.4s ease, opacity 0.35s ease, padding 0.35s ease, transform 0.35s ease;
    padding: 0 18px;
}

.faq-section-answer p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.75;
    margin: 0 0 16px;
}

.faq-section-item.is-open .faq-section-answer {
    max-height: 320px;
    opacity: 1;
    transform: translateY(0);
    padding: 0 18px 18px;
}

.faq-section-item.is-open .faq-section-icon {
    transform: rotate(45deg);
}

.faq-section-item.is-open {
    border-color: rgba(63, 169, 224, 0.35);
    box-shadow: 0 18px 36px rgba(63, 169, 224, 0.1);
}

@media (max-width: 900px) {
    .gallery-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (hover: none) {
    .motion-tilt:hover,
    .motion-tilt.is-tilting {
        transform: translateY(-4px);
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .motion-reveal,
    .motion-reveal.is-visible,
    .motion-reveal .card,
    .motion-reveal .gallery-preview-card,
    .motion-reveal .industries-card,
    .motion-reveal .product-applications-card,
    .motion-reveal .stats-3d-card,
    .motion-reveal .dark-card,
    .motion-reveal .faq-section-item,
    .navbar,
    .hero-section h1,
    .hero-section p,
    .hero-buttons .btn {
        transition: none !important;
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
}

@media (max-width: 600px) {
    .gallery-preview-section {
        padding: 48px 0 52px;
    }

    .gallery-preview-grid {
        grid-template-columns: 1fr;
    }

    .gallery-preview-image {
        height: 200px;
    }

    .our-vision-section {
        min-height: 280px;
        padding: 48px 16px;
    }

    .our-vision-text {
        font-size: 15px;
    }

    .faq-section {
        padding: 48px 16px 52px;
    }

    .faq-section-container {
        width: calc(100% - 0px);
    }

    .faq-section-title {
        font-size: 25px;
    }
}

.industries-section {
    width: 100%;
    padding: 70px 0 90px;
    background: linear-gradient(180deg, #ffffff 0%, #F7FBFE 100%);
}

.industries-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.industries-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.industries-label {
    color: #3FA9E0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.industries-title {
    color: #17324D;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 750;
    line-height: 1.05;
    margin: 0;
}

.industries-divider {
    display: block;
    width: 48px;
    height: 3px;
    background-color: #3FA9E0;
    margin: 18px 0 36px;
    border-radius: 99px;
}

.industries-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin: 0 auto;
}

.industries-card {
    position: relative;
    overflow: hidden;
    height: 320px;
    border-radius: 22px;
    background-color: #ffffff;
    border: 1px solid rgba(63, 169, 224, 0.35);
    box-shadow: 0 12px 35px rgba(23, 50, 77, 0.12);
    transform-style: preserve-3d;
    transition: transform 0.45s cubic-bezier(.2, .8, .2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
    --card-rx: 0deg;
    --card-ry: 0deg;
    --card-ty: 0px;
    --card-scale: 1;
    transform: perspective(1000px) translateY(var(--card-ty)) rotateX(var(--card-rx)) rotateY(var(--card-ry)) scale(var(--card-scale));
}

.industries-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.08) 30%, rgba(255, 255, 255, 0) 70%);
    transform: translateX(-110%) skewX(-18deg);
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
    z-index: 1;
}

.industries-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    z-index: 0;
    transition: transform 0.7s cubic-bezier(.2, .8, .2, 1), filter 0.7s cubic-bezier(.2, .8, .2, 1);
}

.industries-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 25, 40, 0.82) 0%, rgba(7, 25, 40, 0.35) 35%, rgba(7, 25, 40, 0) 70%);
    pointer-events: none;
    z-index: 5;
}

.industries-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0;
    z-index: 999;
    min-height: 90px;
    overflow: visible;
    background: linear-gradient(to top, rgba(23, 50, 77, 0.95) 0%, rgba(23, 50, 77, 0.65) 45%, rgba(23, 50, 77, 0) 100%);
    transition: background 0.35s ease;
}

.industries-card-line {
    position: absolute;
    left: 20px;
    bottom: 52px;
    z-index: 999;
    width: 35px;
    height: 3px;
    background-color: #3FA9E0;
    border-radius: 10px;
    opacity: 0.95;
    transition: width 0.35s ease;
}

.industries-card-label {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 18px;
    z-index: 999;
    display: block;
    color: #FFFFFF !important;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 1.3;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    transition: transform 0.35s ease, text-shadow 0.35s ease;
    white-space: normal;
    overflow: visible;
    word-break: break-word;
}

.industries-card-content,
.industries-card-label,
.industries-card-line {
    opacity: 1 !important;
    visibility: visible !important;
}

.industries-card-action {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 24px;
    line-height: 1;
    z-index: 2;
    transition: transform 0.35s ease, color 0.35s ease;
}

.industries-card:hover {
    --card-ty: -12px;
    --card-scale: 1.025;
    border-color: rgba(63, 169, 224, 0.65);
    box-shadow: 0 25px 55px rgba(23, 50, 77, 0.25), 0 0 30px rgba(63, 169, 224, 0.2);
}

.industries-card:hover .industries-card-image {
    transform: scale(1.06);
    filter: brightness(1.05) saturate(1.05);
}

.industries-card:hover .industries-card-label {
    transform: translateY(-5px);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.industries-card:hover .industries-card-content {
    background: linear-gradient(to top, rgba(23, 50, 77, 0.98) 0%, rgba(23, 50, 77, 0.78) 55%, rgba(23, 50, 77, 0) 100%);
}

.industries-card:hover .industries-card-line {
    width: 60px;
}

.industries-card:hover::after {
    opacity: 1;
    transform: translateX(110%) skewX(-18deg);
}

.industries-card:hover .industries-card-action {
    transform: translateX(6px);
    color: #ffffff;
}

.motion-reveal .industries-card {
    opacity: 0;
    transform: translateY(35px) scale(0.96);
    transition: opacity 0.7s cubic-bezier(.2, .8, .2, 1), transform 0.7s cubic-bezier(.2, .8, .2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.motion-reveal.is-visible .industries-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.motion-reveal .industries-card:nth-child(1) {
    transition-delay: 0ms;
}

.motion-reveal .industries-card:nth-child(2) {
    transition-delay: 80ms;
}

.motion-reveal .industries-card:nth-child(3) {
    transition-delay: 160ms;
}

.motion-reveal .industries-card:nth-child(4) {
    transition-delay: 240ms;
}

.motion-reveal .industries-card:nth-child(5) {
    transition-delay: 320ms;
}

.motion-reveal .industries-card:nth-child(6) {
    transition-delay: 400ms;
}

.motion-reveal .industries-card:nth-child(7) {
    transition-delay: 480ms;
}

.motion-reveal .industries-card:nth-child(8) {
    transition-delay: 560ms;
}

@media (max-width: 900px) {
    .industries-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .industries-card {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .industries-section {
        padding: 48px 0 60px;
    }

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

    .industries-card {
        height: 280px;
    }
}
@media (max-width: 600px) {
    .industries-section {
        padding: 52px 0 60px;
    }

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

    .industries-card {
        min-height: 240px;
    }

    .industries-card-content {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .industries-card-action {
        top: 20px;
        right: 20px;
        font-size: 22px;
    }
}

.why-choose-section {
    background: #4BA3D3;
    color: #ffffff;
    padding: 72px 0 60px;
}

.why-choose-section .container {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-choose-section .section-shell {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.why-choose-section .section-heading {
    max-width: 860px;
    margin: 0 auto 34px;
    text-align: center;
}

.why-choose-section .section-label {
    color: rgba(255, 255, 255, 0.78);
    letter-spacing: 2px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.why-choose-section h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.18;
    margin: 0;
}

.why-choose-section .section-heading p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.6;
    max-width: 760px;
    margin: 0 auto;
}

.why-choose-section .section-heading::after {
    content: '';
    display: block;
    width: 36px;
    height: 3px;
    background: rgba(255, 255, 255, 0.32);
    border-radius: 99px;
    margin: 18px auto 0;
}

.dark-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding: 0;
}

.dark-card {
    position: relative;
    min-height: 200px;
    padding: 24px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 0 rgba(255, 255, 255, 0);
    overflow: hidden;
    transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, transform 0.45s cubic-bezier(.2,.8,.2,1);
    opacity: 0;
    transform: translate3d(var(--move-x, 0px), var(--move-y, 0px), 0) translateY(0) scale(1) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg));
    --move-x: 0px;
    --move-y: 0px;
    --rotate-x: 0deg;
    --rotate-y: 0deg;
}

.motion-reveal.is-visible .dark-card {
    opacity: 1;
    transform: translate3d(var(--move-x, 0px), var(--move-y, 0px), 0) translateY(0) scale(1) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg));
}

.dark-card:nth-child(1) {
    transition-delay: 0ms;
}

.dark-card:nth-child(2) {
    transition-delay: 70ms;
}

.dark-card:nth-child(3) {
    transition-delay: 140ms;
}

.dark-card:nth-child(4) {
    transition-delay: 210ms;
}

.dark-card:nth-child(5) {
    transition-delay: 280ms;
}

.dark-card:nth-child(6) {
    transition-delay: 350ms;
}

.dark-card:hover {
    background: #ffffff;
    border-color: #3FA9E0;
    box-shadow: 0 18px 40px rgba(63, 169, 224, 0.25);
    transform: translate3d(var(--move-x, 0px), var(--move-y, 0px), 0) translateY(-10px) scale(1.025) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg));
}

.dark-card-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 16px;
    transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease, color 0.35s ease;
}

.dark-card:hover .dark-card-icon {
    background: #EAF6FC;
    border-color: rgba(63, 169, 224, 0.25);
    color: #17324D;
    transform: translateZ(10px) scale(1.06);
}

.dark-card-title {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px;
    transition: color 0.4s ease, transform 0.4s ease;
}

.dark-card:hover .dark-card-title {
    color: #3FA9E0;
    transform: translateY(-2px);
}

.dark-card-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
    transition: color 0.4s ease;
}

.dark-card:hover .dark-card-text {
    color: #5B7A90;
}

@media (max-width: 1024px) {
    .dark-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .why-choose-section {
        padding: 60px 0 50px;
    }

    .dark-cards {
        grid-template-columns: 1fr;
    }

    .dark-card {
        min-height: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dark-card,
    .dark-card:hover,
    .dark-card::after,
    .dark-card-icon,
    .why-choose-section::before,
    .why-choose-section::after,
    .why-choose-section .section-heading::after {
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }
}

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

.text-center {
    text-align: center;
}

.cta-banner {
    background-color: var(--vesta-blue);
    color: var(--white);
    padding: 80px 0;
}

.footer {
    background-color: var(--vesta-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 80px 0 0;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99;
}

.floating-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    color: #FFFFFF;
    font-size: 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.floating-btn:hover {
    transform: scale(1.08);
}

.floating-btn:active {
    transform: scale(0.95);
}

/* Container & Layout */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.col {
    display: flex;
    flex-direction: column;
}

/* Typography */
.section-label {
    color: var(--vesta-blue);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--vesta-dark);
    line-height: 1.2;
    margin-bottom: 30px;
}

.section-title.white {
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--grey);
    line-height: 1.7;
    margin-bottom: 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    color: var(--vesta-dark);
    font-weight: 700;
    line-height: 1.15;
}

h1 {
    font-size: 42px;
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 20px;
}

p {
    color: #34383D;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background-color 0.35s ease, color 0.35s ease;
    border-radius: 4px;
    letter-spacing: 1px;
    box-shadow: 0 6px 16px rgba(52, 56, 61, 0.12);
    transform: translateY(0);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    background-color: var(--vesta-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #3E90C9;
}

.btn-secondary {
    background-color: var(--vesta-blue);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(52, 56, 61, 0.18);
}

.btn-secondary:hover {
    background-color: #3B89BA;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--vesta-dark);
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid .card {
    height: 100%;
}

.gallery-grid .card-image {
    height: 220px;
}

.card {
    background-color: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition-smooth);
    padding: 0;
    box-shadow: 0 8px 18px rgba(8, 7, 92, 0.05);
    position: relative;
}

.card::before,
.gallery-preview-card::before,
.industries-card::before,
.product-applications-card::before,
.stats-3d-card::before,
.faq-section-item::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.28) 45%, transparent 100%);
    transform: translateX(-140%) skewX(-18deg);
    transition: transform 0.6s ease;
    z-index: 0;
}

.card:hover::before,
.gallery-preview-card:hover::before,
.industries-card:hover::before,
.product-applications-card:hover::before,
.stats-3d-card:hover::before,
.faq-section-item:hover::before {
    transform: translateX(140%) skewX(-18deg);
}

.card > *,
.gallery-preview-card > *,
.industries-card > *,
.product-applications-card > *,
.stats-3d-card > *,
.faq-section-item > * {
    position: relative;
    z-index: 1;
}

.industries-card > .industries-card-content,
.industries-card > .industries-card-line,
.industries-card > .industries-card-label,
.industries-card > .industries-card-action {
    position: absolute;
    z-index: 20;
}

.industries-card-content {
    position: absolute;
}

.card:hover,
.gallery-preview-card:hover,
.product-applications-card:hover,
.stats-3d-card:hover,
.faq-section-item:hover {
    box-shadow: 0 14px 28px rgba(52, 56, 61, 0.08);
    transform: perspective(1000px) translateY(-8px) rotateX(1deg) rotateY(-1deg);
    border-color: var(--vesta-blue);
}

.industries-section .industries-card:hover {
    --card-ty: -12px;
    --card-scale: 1.025;
    border-color: rgba(63, 169, 224, 0.65);
    box-shadow: 0 25px 55px rgba(23, 50, 77, 0.25), 0 0 30px rgba(63, 169, 224, 0.2);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card:hover .card-image,
.gallery-preview-card:hover .gallery-preview-image {
    transform: scale(1.04);
}

.gallery-preview-card {
    position: relative;
    overflow: hidden;
}

.gallery-preview-image {
    width: 100%;
    height: auto !important;
    max-height: 260px;
    object-fit: contain !important;
    transition: transform 0.5s ease;
    display: block;
    background-color: #f8fafc;
}

.product-applications-card:hover .product-applications-icon {
    transform: translateY(-3px) scale(1.05);
    color: #3B89BA;
}

.stats-3d-card {
    box-shadow: 0 8px 20px rgba(52, 56, 61, 0.14);
}

.stats-3d-card:hover {
    box-shadow: 0 16px 32px rgba(52, 56, 61, 0.18);
}

.faq-section-item.is-open {
    border-color: var(--vesta-blue);
    box-shadow: 0 8px 18px rgba(70, 157, 211, 0.12);
}

.motion-reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.motion-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.motion-reveal .card,
.motion-reveal .gallery-preview-card,
.motion-reveal .industries-card,
.motion-reveal .product-applications-card,
.motion-reveal .stats-3d-card,
.motion-reveal .dark-card,
.motion-reveal .faq-section-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.35s ease, border-color 0.35s ease, background-color 0.35s ease;
}

.motion-reveal.is-visible .card,
.motion-reveal.is-visible .gallery-preview-card,
.motion-reveal.is-visible .industries-card,
.motion-reveal.is-visible .product-applications-card,
.motion-reveal.is-visible .stats-3d-card,
.motion-reveal.is-visible .dark-card,
.motion-reveal.is-visible .faq-section-item {
    opacity: 1;
    transform: translateY(0);
}

.motion-reveal .card:nth-child(2),
.motion-reveal .gallery-preview-card:nth-child(2),
.motion-reveal .industries-card:nth-child(2),
.motion-reveal .product-applications-card:nth-child(2),
.motion-reveal .stats-3d-card:nth-child(2),
.motion-reveal .dark-card:nth-child(2),
.motion-reveal .faq-section-item:nth-child(2) {
    transition-delay: 80ms;
}

.motion-reveal .card:nth-child(3),
.motion-reveal .gallery-preview-card:nth-child(3),
.motion-reveal .industries-card:nth-child(3),
.motion-reveal .product-applications-card:nth-child(3),
.motion-reveal .stats-3d-card:nth-child(3),
.motion-reveal .dark-card:nth-child(3),
.motion-reveal .faq-section-item:nth-child(3) {
    transition-delay: 160ms;
}

.motion-reveal .card:nth-child(4),
.motion-reveal .gallery-preview-card:nth-child(4),
.motion-reveal .industries-card:nth-child(4),
.motion-reveal .product-applications-card:nth-child(4),
.motion-reveal .stats-3d-card:nth-child(4),
.motion-reveal .dark-card:nth-child(4),
.motion-reveal .faq-section-item:nth-child(4) {
    transition-delay: 240ms;
}

.motion-tilt {
    transform-style: preserve-3d;
}

.motion-tilt:hover {
    transform: perspective(1000px) translateY(-8px) rotateX(1deg) rotateY(-1deg);
}

.motion-tilt.is-tilting {
    transform: perspective(1000px) translateY(-6px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
}

.card-body {
    padding: 25px;
}

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--vesta-dark);
    margin-bottom: 15px;
}

.card-text {
    font-size: 14px;
    color: #34383D;
    line-height: 1.6;
}

/* Feature Cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(8, 7, 92, 0.04), rgba(217, 154, 0, 0.06));
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: var(--transition-smooth);
}

.feature-card:hover {
    border-color: var(--vesta-blue);
    box-shadow: 0 10px 30px rgba(52, 56, 61, 0.08);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
    color: var(--vesta-blue);
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--vesta-dark);
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Stats */
.stats-section {
    background: linear-gradient(135deg, #469DD3 0%, #3F91C5 100%);
    color: var(--white);
    padding: 45px 20px;
    position: relative;
    overflow: hidden;
}

.stats-section::before,
.stats-section::after {
    content: none;
}

.stats-3d-container {
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stats-grid.stats-3d-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    text-align: center;
    margin: 0 auto;
    align-items: stretch;
}

.stat-item.stats-3d-card {
    position: relative;
    background: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 12px;
    padding: 24px 18px;
    min-height: 145px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(52,56,61,0.14);
    overflow: hidden;
    isolation: isolate;
    opacity: 1;
    transform: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.stat-item.stats-3d-card::before,
.stat-item.stats-3d-card::after {
    content: none;
}

.stat-item.stats-3d-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(52,56,61,0.18);
    border-color: #469DD3;
}

.stats-3d-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.stats-3d-number {
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    color: #469DD3;
    margin: 0 0 10px;
    transition: transform 0.3s ease;
}

.stat-item.stats-3d-card:hover .stats-3d-number {
    transform: translateY(-2px);
}

.stats-3d-number--pan {
    font-size: 34px;
    line-height: 1.05;
}

.stats-3d-label {
    margin: 0;
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #34383D;
    font-weight: 600;
}

@media (max-width: 992px) {
    .stats-grid.stats-3d-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 40px 16px;
    }

    .stats-grid.stats-3d-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .stat-item.stats-3d-card {
        min-height: 130px;
        padding: 20px 16px;
    }

    .stats-3d-number {
        font-size: 38px;
    }

    .stats-3d-number--pan {
        font-size: 34px;
    }
}

/* Tables */
.table-responsive {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
}

thead {
    background-color: var(--vesta-blue);
    color: var(--white);
}

th {
    padding: 18px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
    color: var(--text-dark);
}

tbody tr:hover {
    background-color: var(--light-grey);
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.process-card {
    background: linear-gradient(135deg, var(--white) 0%, #f8faff 100%);
    border: 1px solid var(--border-light);
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 24px rgba(8, 7, 92, 0.05);
}

.process-number {
    display: inline-block;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(70, 157, 211, 0.14);
    color: var(--vesta-blue);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
}

.process-card h3 {
    color: var(--vesta-dark);
    margin-bottom: 10px;
}

.process-card p {
    margin: 0;
    color: #34383D;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 30px;
    align-items: start;
}

.contact-card {
    background: linear-gradient(135deg, rgba(70, 157, 211, 0.06), rgba(234, 245, 252, 0.9));
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 30px;
}

.contact-list {
    list-style: none;
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    color: var(--grey);
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 12px 28px rgba(8, 7, 92, 0.06);
}

.contact-form .btn {
    width: 100%;
    border: none;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-charcoal);
    margin-bottom: 8px;
}

.required {
    color: #dc2626;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 14px;
    font-family: var(--font-primary);
    background-color: var(--white);
    transition: var(--transition-smooth);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--vesta-blue);
    box-shadow: 0 0 0 3px rgba(70, 157, 211, 0.12);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Accordions */
.accordion-item {
    border: 1px solid var(--border-light);
    border-radius: 4px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    background-color: var(--white);
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    color: var(--vesta-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

.accordion-header:hover {
    background-color: var(--light-grey);
}

.accordion-content {
    padding: 18px 20px;
    background-color: var(--white);
    display: none;
    font-size: 14px;
    color: var(--grey);
    line-height: 1.7;
}

.accordion-item.active .accordion-content {
    display: block;
}

.accordion-icon {
    font-size: 20px;
    transition: var(--transition-smooth);
}

.accordion-item.active .accordion-icon {
    transform: rotate(45deg);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.img-rounded {
    border-radius: 8px;
    overflow: hidden;
}

/* Light Blue Color Class */
.light-blue {
    color: #87CEEB;
}

.bg-light-blue {
    background-color: rgba(135, 206, 235, 0.1);
}

/* Utilities */
.text-center {
    text-align: center;
}

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

.text-gold {
    color: var(--vesta-blue);
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

/* Extra section utilities */
.info-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
    margin-top: 24px;
}

.info-pill {
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 18px;
    background: #EEF3F9;
    border: 1px solid rgba(63, 169, 224, 0.08);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.45s cubic-bezier(.2,.8,.2,1), box-shadow 0.45s ease, border-color 0.45s ease;
    transform: translate3d(var(--info-move-x, 0px), var(--info-move-y, 0px), 0) translateY(0) scale(1) rotateX(var(--info-rotate-x, 0deg)) rotateY(var(--info-rotate-y, 0deg));
    --info-rotate-x: 0deg;
    --info-rotate-y: 0deg;
    --info-move-x: 0px;
    --info-move-y: 0px;
}

.info-pill::before {
    content: '';
    position: absolute;
    width: 220%;
    height: 220%;
    left: -100%;
    top: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at bottom left, rgba(63, 169, 224, 0.16), rgba(63, 169, 224, 0.06) 25%, transparent 55%);
    transform-origin: bottom left;
    transform: scale(0);
    transition: transform 0.65s cubic-bezier(.16,1,.3,1), opacity 0.45s ease;
    z-index: 0;
}

.info-pill::after {
    content: '';
    position: absolute;
    left: 8px;
    bottom: 8px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(63, 169, 224, 0.18);
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.45s ease, transform 0.45s ease;
    z-index: 0;
}

.info-pill > * {
    position: relative;
    z-index: 2;
}

.info-pill > span {
    color: #3FA9E0;
    font-size: 18px;
    transition: transform 0.45s ease;
}

.info-pill strong {
    display: block;
    color: #17324D;
    margin-bottom: 4px;
    transition: transform 0.45s ease;
}

.info-pill div > span {
    display: block;
    color: #5B6470;
}

.info-pill:hover {
    border-color: #3FA9E0;
    box-shadow: 0 18px 40px rgba(23, 50, 77, 0.18), 0 0 22px rgba(63, 169, 224, 0.16);
    transform: translate3d(var(--info-move-x, 0px), var(--info-move-y, 0px), 0) translateY(-7px) scale(1.02) rotateX(var(--info-rotate-x, 0deg)) rotateY(var(--info-rotate-y, 0deg));
}

.info-pill:hover::before {
    transform: scale(1);
    opacity: 1;
}

.info-pill:hover::after {
    opacity: 1;
    transform: translate(-4px, 4px);
}

/* Responsive */
@media (max-width: 768px) {
    .top-bar-inner {
        justify-content: center;
        text-align: center;
    }

    .navbar-content {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-menu ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px 16px;
    }

    .btn-quote {
        width: 100%;
        text-align: center;
    }

    .row {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cards-grid,
    .feature-cards,
    .dark-cards {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

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

    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section {
        padding: 50px 0;
    }

    .section-shell {
        padding: 24px;
    }

    .info-list {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 12px;
    }
}

/* Page-specific sections */
.page-hero {
    padding: 120px 0 70px;
    position: relative;
    background: var(--vesta-pale-blue);
}

.page-hero--blue {
    background: linear-gradient(180deg, rgba(63, 169, 224, 0.14) 0%, rgba(234, 246, 252, 0.68) 100%);
}

.page-hero--light {
    background: rgba(234, 246, 252, 0.95);
}

.page-hero .container {
    max-width: 960px;
}

.page-hero h1 {
    font-size: 46px;
    line-height: 1.08;
    margin-bottom: 18px;
    color: var(--vesta-dark);
}

.page-hero p.page-intro {
    max-width: 720px;
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.8;
    margin-top: 10px;
}

.section-underline {
    width: 72px;
    height: 4px;
    border-radius: 4px;
    background: var(--vesta-blue);
    margin: 18px 0 24px;
}

.section--wide {
    padding: 80px 0;
}

.page-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 36px;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid rgba(63, 169, 224, 0.22);
    background: var(--white);
    color: var(--vesta-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.6px;
    cursor: pointer;
    transition: var(--transition-premium);
}

.filter-pill.active,
.filter-pill:hover {
    background: rgba(63, 169, 224, 0.12);
    border-color: rgba(63, 169, 224, 0.4);
    color: var(--vesta-blue);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.blog-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(23, 50, 77, 0.08);
    box-shadow: 0 10px 30px rgba(23, 50, 77, 0.08);
    transition: var(--transition-premium);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(23, 50, 77, 0.16);
    border-color: rgba(63, 169, 224, 0.18);
}

.blog-card-media {
    overflow: hidden;
    position: relative;
}

.blog-card-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.06);
}

.blog-card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.blog-card-category {
    color: var(--vesta-blue);
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 12px;
    text-transform: uppercase;
}

.blog-card h2 {
    font-size: 24px;
    margin: 0;
    line-height: 1.25;
    color: var(--vesta-dark);
}

.blog-card p {
    margin: 0;
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.75;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: auto;
}

.btn-readmore {
    padding: 12px 20px;
    border-radius: 10px;
    letter-spacing: 0.8px;
    box-shadow: 0 10px 24px rgba(63, 169, 224, 0.14);
    text-transform: uppercase;
}

.blog-card:hover .btn-readmore {
    background-color: #17324D;
    color: #FFFFFF;
}

.gallery-grid--masonry {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    grid-auto-rows: 250px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    min-height: 260px;
    cursor: pointer;
    transition: var(--transition-premium);
}

.gallery-card--large {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 520px;
}

.gallery-card--wide {
    grid-column: span 2;
    min-height: 340px;
}

.gallery-card--tall {
    grid-row: span 2;
    min-height: 520px;
}

.gallery-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-card:hover .gallery-card-image {
    transform: scale(1.07);
}

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(23, 50, 77, 0) 0%, rgba(23, 50, 77, 0.72) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 22px;
    gap: 14px;
}

.gallery-card-overlay span {
    color: #FFFFFF;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 13px;
    text-transform: uppercase;
}

.gallery-card-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--vesta-dark);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: var(--transition-premium);
}

.gallery-card:hover .gallery-card-button {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(23, 50, 77, 0.18);
}

.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(23, 50, 77, 0.88);
    z-index: 2000;
    padding: 24px;
}

.lightbox.is-open {
    display: flex;
}

.lightbox-content {
    width: 100%;
    max-width: 1100px;
    max-height: 92vh;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    background: #0f172a;
    position: relative;
}

.lightbox-image {
    width: 100%;
    height: auto;
    display: block;
    max-height: 92vh;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--vesta-dark);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.lightbox-close {
    top: 18px;
    right: 18px;
}

.lightbox-prev {
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
}

.contact-panel {
    display: grid;
    gap: 20px;
}

.contact-card {
    background: linear-gradient(135deg, rgba(234, 246, 252, 0.95), rgba(255, 255, 255, 0.98));
    border: 1px solid rgba(63, 169, 224, 0.18);
    border-radius: 20px;
    padding: 30px;
}

.contact-card-title {
    display: block;
    margin-bottom: 14px;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--vesta-blue);
    font-weight: 700;
}

.contact-form-shell {
    display: flex;
}

.contact-form-card {
    background: var(--white);
    border: 1px solid rgba(63, 169, 224, 0.12);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 18px 40px rgba(23, 50, 77, 0.08);
}

.contact-form-card form {
    display: grid;
    gap: 20px;
}

.form-row {
    grid-template-columns: 1fr;
    gap: 20px;
}

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

.contact-map-section .map-placeholder {
    min-height: 320px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #eef6fb 100%);
    border: 1px solid rgba(70, 157, 211, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    color: var(--vesta-dark);
    box-shadow: 0 18px 40px rgba(23, 50, 77, 0.08);
}

.contact-map-section h2 {
    margin-bottom: 12px;
    font-size: 28px;
}

.contact-cta {
    padding: 60px 0;
    background-color: rgba(63, 169, 224, 0.08);
}

.cta-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 36px 42px;
    background: #ffffff;
    border: 1px solid rgba(70, 157, 211, 0.16);
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(23, 50, 77, 0.08);
}

.btn-quote-alt {
    background: #17324D;
    color: #ffffff;
}

.btn-quote-alt:hover {
    background: #0f2436;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 32px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
}

.footer-links li a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding: 24px 0 16px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
}

@media (max-width: 1024px) {
    .blog-grid,
    .gallery-grid--masonry {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-card--large,
    .gallery-card--wide,
    .gallery-card--tall {
        grid-column: span 2;
        grid-row: auto;
    }

    .cta-shell {
        padding: 28px 22px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 80px 0 50px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .page-actions {
        justify-content: center;
    }

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

    .gallery-grid--masonry {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-card--large,
    .gallery-card--wide,
    .gallery-card--tall {
        grid-column: auto;
        grid-row: auto;
    }

    .page-intro {
        max-width: 100%;
    }

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