@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;
    --card-img-height: 320px;
}

*, *::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);
}

html {
    overflow-x: hidden;
    max-width: 100%;
    -ms-overflow-style: none;
}

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;
    max-width: 100%;
    -ms-overflow-style: none;
    -webkit-font-smoothing: antialiased;
    scroll-behavior: smooth;
}

.container,
.section,
.section-shell,
.industries-container,
.product-applications-container,
.gallery-preview-container,
.why-choose-section .container {
    max-width: 100%;
    overflow-x: clip;
}

body.nav-open {
    overflow: hidden;
}

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: 1;
    transform: translateY(0);
    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-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 16px 0;
    position: relative;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(63, 169, 224, 0.1);
    cursor: pointer;
    padding: 0;
    color: var(--vesta-dark);
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
    position: relative;
    z-index: 1001;
}

.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;
    }
}

.navbar-content {
    min-height: 82px;
    padding-top: 18px;
    padding-bottom: 18px;
}

.quality-assurance-row {
    display: block;
}

.quality-assurance-section .quality-image {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin-bottom: 34px;
    object-fit: contain;
}

.logo-image {
    width: 175px;
}

@media (max-width: 900px) {
    .navbar-content {
        min-height: 74px;
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .logo,
    .page-blogs .logo {
        width: 128px !important;
        min-width: 128px !important;
        flex: 0 0 128px !important;
    }

    .logo-image,
    .page-blogs .logo-image,
    body.page-gallery .logo-image {
        width: 128px !important;
        max-width: 128px !important;
        height: auto;
    }
}

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

/* Responsive layout helpers */
img,
iframe,
video,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
.btn,
input,
textarea,
select {
    min-width: 0;
}

.btn {
    white-space: normal;
    word-break: break-word;
}

footer .container,
footer .container > div {
    min-width: 0;
    max-width: 100%;
}

footer .container > div > * {
    min-width: 0;
}

.btn-block {
    width: 100%;
}

.hero-section,
.page-hero,
.gallery-preview-section,
.section,
.contact-map-section,
.cta-shell,
.footer {
    overflow: hidden;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
    overflow: hidden !important;
    scrollbar-width: none;
}

.nav-menu {
    overflow: hidden;
}

@media (max-width: 1200px) and (min-width: 901px) {
    .nav-menu ul {
        gap: 12px;
    }

    .logo-image {
        width: 135px;
    }

    .btn-quote {
        padding-left: 16px;
        padding-right: 16px;
    }
}

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

.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;
    background: linear-gradient(90deg, rgba(52, 56, 61, 0.78) 0%, rgba(52, 56, 61, 0.48) 45%, rgba(70, 157, 211, 0.18) 100%), url('image/image_a8444c18.png');
    background-size: cover;
    background-position: center;
}

.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;
    pointer-events: none;
    display: none;
}

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

.hero-section > .container {
    position: relative;
    z-index: 1;
    width: min(100%, var(--max-width));
}

.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;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    max-width: 100%;
    color: var(--white);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.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;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.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%, #f3f9fd 100%);
    border: 1px solid #dce8f2;
    border-radius: 18px;
    padding: 55px 40px;
    box-shadow: 0 12px 28px rgba(23, 50, 77, 0.06);
    max-width: 1200px;
    margin: 0 auto;
}

.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: 900px;
    margin-bottom: 30px;
}

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

.section-heading h2 {
    display: block;
    position: relative;
    font-size: 42px;
    margin-bottom: 14px;
    line-height: 1.15;
}

.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 p {
    font-size: 16px;
    color: #4b5f6f;
    max-width: 900px;
    line-height: 1.75;
    overflow-wrap: break-word;
    word-break: normal;
    white-space: normal;
    margin-bottom: 0;
}

.section-heading p + p {
    margin-top: 14px;
}

.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);
}

.who-we-are-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 30px;
    align-items: center;
    width: 100%;
}

.who-we-are-image {
    width: 100%;
    min-width: 0;
}

.who-we-are-img {
    width: 100%;
    height: 420px;
    display: block;
    object-fit: cover;
    border-radius: 14px;
    border: 4px solid rgba(70, 157, 211, 0.18);
    box-shadow: 0 18px 32px rgba(23, 50, 77, 0.12);
}

.who-we-are-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    gap: 18px;
}

.who-we-are-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
    min-width: 0;
}

.info-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    width: 100%;
    background: #f4f9fc;
    border: 1px solid #d6e8f3;
    border-radius: 14px;
    padding: 20px 22px;
    box-shadow: 0 8px 18px rgba(20, 60, 90, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    min-width: 0;
}

.info-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), transparent 55%);
    pointer-events: none;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(20, 60, 90, 0.10);
    border-color: rgba(63, 169, 224, 0.38);
}

.info-card-icon {
    position: relative;
    z-index: 1;
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(63, 169, 224, 0.12);
    color: var(--vesta-blue);
    font-size: 20px;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(63, 169, 224, 0.18);
}

.info-card-body {
    position: relative;
    z-index: 1;
    min-width: 0;
    width: 100%;
}

.info-card-body h3 {
    color: var(--vesta-dark);
    font-size: 18px;
    margin-bottom: 6px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.info-card-body p {
    color: #4d6070;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    width: 100%;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.more-about-btn {
    display: inline-flex;
    align-self: flex-start;
    margin-top: 4px;
    padding: 13px 24px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(23, 50, 77, 0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.more-about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(23, 50, 77, 0.18);
}

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

@media (max-width: 768px) {
    .who-we-are-section {
        padding: 35px 16px;
    }

    .who-we-are-top h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .who-we-are-top p {
        font-size: 15px;
        line-height: 1.7;
    }

    .who-we-are-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .who-we-are-image,
    .who-we-are-content,
    .who-we-are-cards {
        width: 100%;
        min-width: 0;
    }

    .who-we-are-img {
        height: 260px;
        width: 100%;
        object-fit: cover;
    }

    .who-we-are-cards {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .info-card {
        width: 100%;
        min-width: 0;
        padding: 18px 18px;
        box-sizing: border-box;
    }

    .info-card-body p {
        width: 100%;
        max-width: 100%;
        white-space: normal;
        overflow-wrap: break-word;
        word-break: normal;
        line-height: 1.6;
    }

    .more-about-btn {
        width: fit-content;
        max-width: 100%;
    }
}

.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;
}

.industries-grid,
.dark-cards,
.material-card-grid,
.gallery-preview-grid {
    grid-template-columns: 1fr;
}

@media (max-width: 900px) {
    .industries-grid,
    .product-applications-grid,
    .dark-cards,
    .material-card-grid,
    .gallery-preview-grid {
        grid-template-columns: 1fr !important;
    }
}

.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: 18px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(8, 7, 92, 0.05);
}

.gallery-preview-image {
    width: 100%;
    height: var(--card-img-height, 260px);
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(.2, .8, .2, 1);
    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;
}

.cards-grid > .gallery-preview-button-wrap {
    grid-column: 1 / -1;
    width: 100%;
    margin: 34px 0 4px;
}

.material-supply-preview > .container > .gallery-preview-button-wrap {
    margin-top: 32px;
}

.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: 14px 28px;
    border-radius: 6px;
    min-width: 240px;
    text-align: center;
    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);
}

.gallery-preview-intro {
    max-width: 720px;
    margin: 16px auto 0;
    color: rgba(13, 36, 56, 0.78);
    font-size: 0.95rem;
    line-height: 1.8;
}

.industry-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.industry-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(240,247,252,0.96));
    border-radius: 18px;
    border: 1px solid rgba(53, 169, 223, 0.28);
    overflow: hidden;
    box-shadow: 0 12px 22px rgba(23, 50, 77, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    min-height: 100%;
    position: relative;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 36px rgba(23, 50, 77, 0.16);
    border-color: rgba(53, 169, 223, 0.42);
}

.industry-card-image {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.industry-card:hover .industry-card-image {
    transform: scale(1.04);
}

.industry-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    padding: 20px 20px 18px;
    background: #fff;
}

.industry-card-title {
    color: var(--vesta-dark);
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.35;
}

.industry-card-description {
    color: var(--vesta-muted);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
    min-height: 72px;
}

.industry-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 4px;
}

.industry-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(145deg, #4bb3e4, #36a0da);
    box-shadow: 0 7px 16px rgba(24, 92, 139, 0.18), 0 2px 0 rgba(22, 62, 93, 0.18);
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
    position: relative;
    overflow: hidden;
}

.industry-view-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.18), rgba(255,255,255,0.04), rgba(255,255,255,0.18));
    transform: translateX(-120%);
    transition: transform 0.5s ease;
}

.industry-view-btn:hover::before {
    transform: translateX(120%);
}

.industry-view-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(24, 92, 139, 0.24), 0 3px 0 rgba(22, 62, 93, 0.22);
    background: linear-gradient(145deg, #173B5F, #234f7a);
}

.industry-view-btn span {
    display: inline-block;
    transition: transform 0.25s ease;
}

.industry-view-btn:hover span {
    transform: translateX(4px);
}

.industry-whatsapp-btn {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #25d366, #18b95b);
    color: #fff;
    box-shadow: 0 4px 0 #109447, 0 8px 16px rgba(20, 100, 60, 0.22);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.industry-whatsapp-btn:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 7px 0 #109447, 0 13px 22px rgba(20, 100, 60, 0.25);
}

.industry-whatsapp-btn svg {
    width: 18px;
    height: 18px;
    display: block;
}

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

@media (max-width: 768px) {
    .industry-card-grid {
        grid-template-columns: 1fr;
    }

    .industry-card-image {
        height: 210px;
    }

    .industry-card-body {
        padding: 18px 18px 16px;
    }

    .industry-card-actions {
        gap: 8px;
    }

    .industry-view-btn {
        flex: 1;
        width: 100%;
    }

    .industry-whatsapp-btn {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }
}

@media (max-width: 480px) {
    .industry-card-image {
        height: 200px;
    }

    .industry-card-description {
        min-height: auto;
    }

    .industry-card-actions {
        align-items: stretch;
    }

    .industry-view-btn {
        min-width: 0;
        padding: 11px 14px;
        font-size: 0.75rem;
    }
}

.material-card-highlight {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(63, 169, 224, 0.08);
    color: var(--vesta-dark);
    font-size: 0.92rem;
    font-weight: 600;
}

.material-card-button {
    align-self: flex-start;
    margin-top: auto;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 170px;
    height: 44px;
    padding: 0 22px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    white-space: nowrap;
    border-radius: 6px;
    box-sizing: border-box;
    box-shadow: 0 8px 16px rgba(23, 50, 77, 0.14), 0 2px 0 rgba(12, 38, 61, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    transform: translateY(0);
}

.material-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(23, 50, 77, 0.18), 0 3px 0 rgba(12, 38, 61, 0.12);
}

.material-card-button:active {
    transform: translateY(1px);
    box-shadow: 0 6px 12px rgba(23, 50, 77, 0.12), 0 2px 0 rgba(12, 38, 61, 0.12);
}

.material-button-arrow {
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.25s ease;
    line-height: 1;
    vertical-align: middle;
}

.material-card-button:hover .material-button-arrow {
    transform: translateX(3px);
}

.material-detail-hero {
    padding: 70px 0 90px;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: rgba(13, 36, 56, 0.65);
    margin-bottom: 34px;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: var(--vesta-blue);
    text-decoration: none;
}

.material-detail-panel {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 52px;
}

.material-detail-image-shell {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(23, 50, 77, 0.12);
}

.material-detail-image {
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.material-detail-image-shell:hover .material-detail-image {
    transform: scale(1.03);
}

.material-detail-copy {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.material-detail-summary {
    color: var(--vesta-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
    max-width: 98%;
}

.material-detail-highlights {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.material-detail-highlights h4 {
    margin-bottom: 10px;
    color: var(--vesta-dark);
    font-size: 16px;
}

.material-detail-highlights p {
    color: var(--vesta-muted);
    line-height: 1.8;
    margin: 0;
}

.material-detail-specs {
    display: grid;
    gap: 32px;
}

.material-detail-section {
    background: var(--white);
    border: 1px solid rgba(23, 50, 77, 0.08);
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 14px 40px rgba(23, 50, 77, 0.06);
}

.material-detail-section h3 {
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 24px;
}

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

.material-spec-item {
    background: rgba(63, 169, 224, 0.08);
    border-radius: 16px;
    padding: 18px;
    display: grid;
    gap: 8px;
}

.material-spec-item span {
    color: var(--vesta-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.material-spec-item strong {
    color: var(--vesta-dark);
    font-size: 1rem;
}

.material-detail-quote {
    background: rgba(63, 169, 224, 0.08);
    border-color: rgba(63, 169, 224, 0.18);
}

.material-detail-quote p {
    color: var(--vesta-dark);
    font-size: 1rem;
    line-height: 1.9;
    margin: 0;
}

.material-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.material-detail-actions .btn {
    min-width: 200px;
}

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

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

    .material-detail-panel {
        grid-template-columns: 1fr;
    }

    .material-detail-highlights {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .material-card-grid,
    .gallery-preview-grid {
        grid-template-columns: 1fr;
    }

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

    .material-card {
        margin-bottom: 0;
    }

    .material-detail-hero {
        padding: 50px 0 60px;
    }

    .material-detail-actions {
        flex-direction: column;
    }

    .material-detail-section {
        padding: 24px;
    }

    .material-spec-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        font-size: 0.9rem;
    }

    .material-detail-summary {
        font-size: 0.98rem;
    }

    .material-card-description {
        font-size: 0.92rem;
    }
}

.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('image/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: var(--card-img-height);
    border-radius: 18px;
    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.6s cubic-bezier(.2, .8, .2, 1), filter 0.6s 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;
}

.industry-arrow {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #43afe0, #329bd0);
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 0 #237ca9, 0 8px 16px rgba(20, 60, 90, 0.18);
    transition: all 0.3s ease;
    z-index: 20;
}

.industry-arrow:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 0 #237ca9, 0 12px 20px rgba(20, 60, 90, 0.22);
    color: #fff;
}

.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 .industry-arrow {
    transform: translateY(-3px);
}

.industries-card .industry-card-actions {
    position: absolute;
    right: 14px;
    bottom: 14px;
    z-index: 25;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
    width: auto;
}

.industries-card .industry-contact-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.industries-card .industry-whatsapp-btn,
.industries-card .industry-call-btn,
.industries-card .industry-card-actions .industry-arrow {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    position: static;
    right: auto;
    bottom: auto;
    border: none;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.industries-card .industry-whatsapp-btn {
    background: linear-gradient(145deg, #25d366, #16b957);
    color: #fff;
    box-shadow: 0 4px 0 #109447, 0 8px 16px rgba(20, 100, 60, 0.22);
}

.industries-card .industry-whatsapp-btn:hover {
    color: #fff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 7px 0 #109447, 0 13px 22px rgba(20, 100, 60, 0.25);
}

.industries-card .industry-whatsapp-btn svg,
.industries-card .industry-call-btn svg {
    width: 19px;
    height: 19px;
    display: block;
}

.industries-card .industry-call-btn {
    background: linear-gradient(145deg, #48b7e7, #329fd4, #2588bd);
    color: #fff;
    box-shadow: 0 4px 0 #1f719e, 0 8px 16px rgba(20, 70, 100, 0.22);
}

.industries-card .industry-call-btn:hover {
    color: #fff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 7px 0 #1f719e, 0 13px 22px rgba(20, 70, 100, 0.25);
}

.industries-card .industry-card-actions .industry-arrow {
    background: linear-gradient(145deg, #48b7e7, #329fd4);
    color: #fff;
    box-shadow: 0 4px 0 #237ca9, 0 8px 16px rgba(20, 60, 90, 0.18);
}

.industries-card .industry-card-actions .industry-arrow:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 7px 0 #237ca9, 0 12px 20px rgba(20, 60, 90, 0.22);
}

@media (max-width: 768px) {
    .industries-card .industry-card-actions {
        gap: 8px;
        right: 12px;
        bottom: 12px;
    }

    .industries-card .industry-contact-actions {
        gap: 7px;
    }

    .industries-card .industry-whatsapp-btn,
    .industries-card .industry-call-btn,
    .industries-card .industry-card-actions .industry-arrow {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .industries-card .industry-whatsapp-btn svg,
    .industries-card .industry-call-btn svg {
        width: 17px;
        height: 17px;
    }
}

/* Force the blue circular industry arrow to sit at card bottom-right */
/* This overrides selectors that previously forced it to be static/centered */
.industries-card,
.industry-card {
    position: relative !important;
}

.industry-arrow,
.industries-card .industry-card-actions .industry-arrow,
.industry-card .industry-card-actions .industry-arrow,
.industries-card .industry-card-actions > .industry-arrow {
    position: absolute !important;
    right: 18px !important;
    bottom: 18px !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    z-index: 30 !important;
    width: 42px !important;
    height: 42px !important;
}

@media (max-width: 767px) {
    .industry-arrow,
    .industries-card .industry-card-actions .industry-arrow,
    .industry-card .industry-card-actions .industry-arrow {
        right: 12px !important;
        bottom: 12px !important;
        width: 38px !important;
        height: 38px !important;
    }
}

.home-industries-cta-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
}

.home-industries-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto;
    padding: 15px 27px;
    background: linear-gradient(
        145deg,
        #48b7e7,
        #329fd4,
        #2588bd
    );
    color: #ffffff;
    text-decoration: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow:
        0 6px 0 #1f719e,
        0 12px 24px rgba(20, 70, 100, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        filter 0.3s ease;
    position: relative;
    overflow: hidden;
}

.home-industries-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.22), transparent 32%, transparent 68%, rgba(255,255,255,0.18));
    transform: translateX(-100%);
    transition: transform 0.7s ease;
}

.home-industries-cta:hover::before {
    transform: translateX(100%);
}

.home-industries-cta:hover {
    color: #ffffff;
    transform: translateY(-4px);
    filter: brightness(1.06);
    box-shadow:
        0 9px 0 #1f719e,
        0 17px 30px rgba(20, 70, 100, 0.28);
}

.home-industries-cta:active {
    transform: translateY(3px);
    box-shadow:
        0 3px 0 #1f719e,
        0 7px 12px rgba(20, 70, 100, 0.18);
}

.home-cta-arrow {
    width: 27px;
    height: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.home-industries-cta:hover .home-cta-arrow {
    transform: translateX(5px);
}

.home-industries-cta.gallery-preview-button {
    gap: 0;
    margin: 0;
    padding: 14px 28px;
    min-width: 240px;
    border: 0;
    border-radius: 6px;
    background: var(--vesta-blue);
    box-shadow: 0 6px 18px rgba(52, 56, 61, 0.12);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.home-industries-cta.gallery-preview-button::before {
    display: none;
}

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

.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: 768px) {
    .home-industries-cta-wrap {
        margin-top: 25px;
        padding: 0 16px 20px;
        box-sizing: border-box;
    }

    .home-industries-cta {
        width: 100%;
        max-width: 340px;
        min-height: 50px;
        padding: 13px 17px;
        font-size: 12px;
    }

    .home-cta-arrow {
        width: 25px;
        height: 25px;
        flex-shrink: 0;
    }
}

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

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

    .industries-card {
        height: 280px;
        width: 100%;
        box-sizing: border-box;
    }

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

    .industry-arrow {
        width: 38px;
        height: 38px;
        right: 16px;
        bottom: 16px;
        flex-shrink: 0;
    }
}

.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;
}

    }

    .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);
}

.footer a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer a:hover,
.footer a:focus-visible {
    color: #ffffff;
}

.footer-grid--contact {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.footer-grid--contact > div {
    min-width: 0;
}

.footer-grid--contact h3,
.footer-grid--contact h4 {
    margin: 0 0 18px;
    color: #ffffff;
}

.footer-grid--contact p,
.footer-grid--contact li {
    margin: 0 0 10px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-grid--contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-grid--contact li:last-child {
    margin-bottom: 0;
}

/* Shared footer social block used on pages that load only the main stylesheet. */
.footer-social-links {
    margin-top: 18px;
}

.footer-social-title {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.footer-social-links .social-links,
.footer-social-links .social-3d-icons {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
}

.footer-social-links .social-link,
.footer-social-links .social-3d-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    line-height: 1;
}

.footer-social-links .social-link svg,
.footer-social-links .social-3d-icon svg {
    display: block;
    width: 18px;
    height: 18px;
    max-width: 18px;
    max-height: 18px;
    fill: currentColor;
}

@media (max-width: 520px) {
    .footer-social-links .social-link,
    .footer-social-links .social-3d-icon {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
        min-width: 34px;
        min-height: 34px;
    }
}

.floating-buttons {
    position: fixed;
    right: calc(22px + env(safe-area-inset-right));
    bottom: calc(22px + env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 99;
    max-width: calc(100vw - 32px);
    pointer-events: none;
}

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

.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;
    min-width: 0;
}

.col {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

/* 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-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    min-height: 44px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
    border-radius: 7px;
    letter-spacing: 0.05em;
    white-space: nowrap;
    box-shadow: 0 8px 22px rgba(52, 56, 61, 0.12);
    transform: translateY(0);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(52, 56, 61, 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);
}

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

.btn-outline-dark:hover {
    background-color: rgba(63, 169, 224, 0.10);
    color: var(--vesta-dark);
}

.service-card-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
}

.view-details-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 11px 20px;
    border-radius: 8px;
    background: linear-gradient(145deg, #43afe0, #329bd0);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
    box-shadow: 0 4px 0 #237ca9, 0 8px 15px rgba(20, 60, 90, 0.15);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 0;
}

.view-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 0 #237ca9, 0 12px 18px rgba(20, 60, 90, 0.18);
}

.service-whatsapp-btn {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: #fff;
    border: 2px solid #25D366;
    color: #25D366;
    font-size: 21px;
    box-shadow: 0 4px 10px rgba(20, 60, 90, 0.15);
    transition: all 0.3s ease;
}

.service-whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 18px rgba(20, 60, 90, 0.22);
}

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

.card-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 18px;
}

.buy-now {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    min-height: 46px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: var(--white);
    background: linear-gradient(145deg, #4BB0E4 0%, #3995CC 100%);
    border: 1px solid rgba(255, 255, 255, 0.24);
    box-shadow:
        0 6px 0 rgba(13, 36, 56, 0.24),
        0 10px 18px rgba(23, 50, 77, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.38);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, background-color 0.25s ease;
}

.buy-now::before {
    content: "";
    position: absolute;
    top: 0;
    left: -110%;
    width: 60%;
    height: 100%;
    background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.36), transparent);
    transform: skewX(-20deg);
    transition: left 0.55s ease;
}

.buy-now:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
    box-shadow:
        0 8px 0 rgba(13, 36, 56, 0.24),
        0 14px 24px rgba(23, 50, 77, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.buy-now:hover::before {
    left: 140%;
}

.buy-now:active {
    transform: translateY(3px);
    box-shadow:
        0 2px 0 rgba(13, 36, 56, 0.24),
        0 5px 10px rgba(23, 50, 77, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

@media (max-width: 768px) {
    .card-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .card-actions a {
        width: 100%;
        text-align: center;
    }

    .service-card-actions {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .view-details-btn {
        flex: 1;
        min-width: 0;
        padding: 11px 14px;
        font-size: 13px;
    }

    .service-whatsapp-btn {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .service-arrow {
        width: 38px;
        height: 38px;
    }
}

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

.material-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    width: 100%;
    margin-top: 30px;
}

.material-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    background: var(--white);
    border: 1px solid rgba(23, 50, 77, 0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(23, 50, 77, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.material-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 32px rgba(23, 50, 77, 0.14);
    border-color: rgba(63, 169, 224, 0.3);
}

.material-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    padding: 20px 20px 18px;
}

.material-card-title {
    margin: 0;
    color: var(--vesta-dark);
    font-size: 1.12rem;
    line-height: 1.35;
}

.material-card-description {
    margin: 0;
    color: var(--vesta-muted);
    font-size: 0.96rem;
    line-height: 1.75;
}

.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;
}

.service-card-home {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card-home:hover,
.service-card-home:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(23, 50, 77, 0.14);
    border-color: rgba(63, 169, 224, 0.45);
    outline: none;
}

.service-card-actions-home {
    display: flex;
    gap: 10px;
    margin: 0 18px 18px;
}

.service-view-button,
.service-whatsapp-button {
    display: inline-flex;
    flex: 1 1 0;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: 9px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.service-view-button {
    background: var(--vesta-blue);
    color: #fff;
    box-shadow: 0 3px 0 #237ca9;
}

.service-whatsapp-button {
    background: #25d366;
    color: #fff;
    box-shadow: 0 3px 0 #159447;
}

.service-view-button:hover,
.service-whatsapp-button:hover {
    transform: translateY(-2px);
}

.service-arrow {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #43afe0, #329bd0);
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 0 #237ca9, 0 8px 16px rgba(20, 60, 90, 0.18);
    transition: all 0.3s ease;
    z-index: 2;
}

.service-arrow:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 0 #237ca9, 0 12px 20px rgba(20, 60, 90, 0.22);
}

.service-arrow:hover::before {
    transform: translateX(3px);
}

.service-arrow::before {
    content: '';
    display: block;
    transition: transform 0.3s ease;
}

.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: var(--card-img-height, 260px);
    object-fit: cover;
    transition: transform 0.45s cubic-bezier(.2, .8, .2, 1), box-shadow 0.45s ease;
    display: block;
}

.service-card-home .service-card-image {
    width: 100%;
    height: var(--card-img-height, 320px) !important;
    object-fit: cover;
    object-position: center;
}

.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: var(--card-img-height, 260px) !important;
    object-fit: cover !important;
    transition: transform 0.45s cubic-bezier(.2, .8, .2, 1);
    display: block;
    background-color: #f8fafc;
}

/* Unified card visuals and subtle 3D hover for target cards */
.motion-tilt,
.industries-card,
.card,
.gallery-preview-card {
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(.2, .8, .2, 1), box-shadow 0.45s ease;
}

.motion-tilt:hover,
.industries-card:hover,
.card:hover,
.gallery-preview-card:hover {
    transform: translateY(-10px) rotateX(0.6deg) rotateY(-0.6deg) scale(1.02);
    box-shadow: 0 28px 68px rgba(23, 50, 77, 0.18);
}

.motion-tilt img,
.industries-card img,
.card img,
.gallery-preview-card img {
    transition: transform 0.6s cubic-bezier(.2, .8, .2, 1);
}

.motion-tilt:hover img,
.industries-card:hover img,
.card:hover img,
.gallery-preview-card:hover img {
    transform: scale(1.06) translateZ(0);
}

@media (max-width: 1024px) {
    :root { --card-img-height: 220px; }
}

@media (max-width: 600px) {
    :root { --card-img-height: 160px; }
}

@media (prefers-reduced-motion: reduce) {
    .motion-tilt,
    .motion-tilt img {
        transition: none !important;
        transform: none !important;
    }
}

.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% !important;
    height: auto !important;
    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: 900px) {
    .nav-toggle {
        display: inline-flex;
    }

    .nav-menu {
        display: none !important;
        position: absolute;
        top: calc(100% + 12px);
        left: 10px;
        right: 10px;
        transform: none;
        background: #ffffff;
        padding: 16px 18px;
        border-radius: 16px;
        border: 1px solid rgba(63, 169, 224, 0.16);
        box-shadow: 0 16px 40px rgba(23, 50, 77, 0.12);
        z-index: 1100;
        width: calc(100% - 20px);
        max-width: none;
        margin: 0 auto;
        box-sizing: border-box;
        overflow: hidden !important;
    }

    .nav-menu.is-open {
        display: block !important;
    }

    .nav-menu ul {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 12px !important;
        width: 100% !important;
        display: flex !important;
    }

    .nav-menu li {
        width: 100% !important;
    }

    .nav-menu a {
        display: block !important;
        padding: 10px 0 !important;
        width: 100% !important;
        text-align: left !important;
        white-space: normal !important;
    }

    .navbar-content {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        padding: 12px 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .btn-quote {
        padding: 10px 14px;
        font-size: 14px;
        flex-shrink: 0;
        min-width: 90px;
    }
}

@media (max-width: 820px) {
    .nav-menu {
        width: calc(100% - 32px);
        left: 16px;
        right: 16px;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(100% - 24px, 1200px);
        padding: 0;
    }

    .top-bar-inner {
        justify-content: center;
        text-align: center;
        padding: 0 10px;
    }

    .top-bar-left,
    .top-bar-right {
        justify-content: center;
        width: auto;
        flex-wrap: wrap;
    }

    .top-bar-right {
        gap: 10px;
    }

    .top-info-item {
        font-size: 12px;
        white-space: nowrap;
    }

    .navbar-content {
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 8px;
        width: 100%;
        box-sizing: border-box;
        padding: 12px 10px;
    }

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

    .hero-section {
        min-height: auto;
    }

    .hero-section > .container {
        padding: 0 8px;
    }

    .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;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 12px;
    }

    .top-bar {
        padding: 10px 0;
    }

    .top-bar-inner {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        width: 100%;
        box-sizing: border-box;
        padding: 0 10px;
    }

    .top-bar-left,
    .top-bar-right {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }

    .top-info-item {
        font-size: 11px;
        white-space: nowrap;
    }

    .navbar-content {
        gap: 8px;
        padding: 10px 8px;
        width: 100%;
        box-sizing: border-box;
        justify-content: space-between;
        align-items: center;
    }

    .nav-menu ul {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        align-items: stretch !important;
        gap: 8px !important;
        width: 100%;
        overflow: hidden !important;
        overflow-x: hidden !important;
        overflow-y: visible !important;
        scrollbar-width: none;
    }

    .nav-menu {
        overflow: hidden !important;
    }

    .nav-menu a {
        white-space: normal !important;
        flex-shrink: 0 !important;
        font-size: 11px;
        padding: 6px 0;
        text-align: left;
    }

    .logo-image {
        width: 100px;
    }

    .btn-quote {
        min-width: 80px;
        padding: 8px 8px;
        font-size: 10px;
        white-space: nowrap;
    }

    .hero-section {
        min-height: auto;
        padding: 92px 0 70px;
    }

    .hero-section h1 {
        font-size: clamp(1.9rem, 7vw, 2.7rem);
    }

    .hero-section p {
        font-size: 0.98rem;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .section {
        padding: 56px 0;
    }

    .section-shell {
        padding: 20px 16px;
    }

    .section-heading h2 {
        font-size: clamp(1.7rem, 6vw, 2.2rem);
    }

    .section-heading p {
        font-size: 0.95rem;
    }

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

    .info-pill {
        padding: 14px 16px;
    }

    .footer-grid--contact {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer .container > div {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 375px) {
    .top-info-item {
        font-size: 11px;
    }

    .logo-image {
        width: 100px;
    }

    .section-heading h2 {
        font-size: 1.5rem;
    }
}

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

    .footer .container > div {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px;
    }

    .cta-shell {
        padding: 32px 24px;
    }
}

@media (max-width: 768px) {
    .material-card {
        width: 100%;
        box-sizing: border-box;
    }

    .material-card-body {
        padding: 18px;
    }

    .industry-card-footer {
        margin-top: 15px;
    }

    .industry-arrow,
    .material-card .service-arrow {
        width: 38px;
        height: 38px;
        font-size: 18px;
        flex-shrink: 0;
    }
}

@media (max-width: 820px) {
    .footer > .container > div:first-child {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 32px !important;
        margin-bottom: 30px !important;
    }

    .footer > .container > div:first-child > * {
        min-width: 0;
    }

    .floating-buttons {
        right: 16px;
        bottom: 16px;
    }
}

@media (max-width: 600px) {
    .footer > .container > div:first-child {
        gap: 24px !important;
    }

    .contact-visual-overlay {
        width: calc(100% - 32px);
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .contact-visual {
        min-height: auto;
    }

    .contact-figure {
        min-height: 320px;
    }

    .contact-map-section iframe {
        min-height: 280px;
        height: auto;
    }

    .contact-map-section .map-card {
        padding: 18px;
    }

    .page-hero {
        padding: 70px 0;
    }

    .page-hero h1 {
        font-size: clamp(2rem, 6vw, 2.3rem);
    }

    .page-hero p {
        font-size: 0.95rem;
    }
}

/* Page-specific sections */
.footer-grid--contact {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.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-white);
}

.page-hero p.page-intro {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 16px;
    line-height: 1.8;
    margin-top: 10px;
}

.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,
    .gallery-grid {
        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) {
    .blog-card-image {
        height: auto;
    }
    .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;
    }
}

@media (max-width: 620px) {
    .hero-section h1 {
        font-size: clamp(2.1rem, 9vw, 2.8rem) !important;
    }

    .hero-section p {
        max-width: 100% !important;
        margin-bottom: 24px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

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

    .contact-visual {
        min-height: auto;
    }

    .contact-figure {
        min-height: auto;
    }

    .contact-visual-overlay {
        width: auto;
        left: 18px;
        right: 18px;
        top: 18px;
    }

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

    .contact-form-card {
        padding: 24px;
    }

    .contact-map-section iframe {
        min-height: 320px;
        height: 320px;
    }

    .page-hero {
        padding: 50px 0;
    }

    .footer-grid {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .nav-toggle {
        display: inline-flex;
    }

    .btn-quote {
        width: auto;
        min-width: 120px;
        padding: 10px 14px;
    }

    .hero-section {
        padding: 50px 0 45px;
    }

    .hero-section h1 {
        font-size: clamp(1.9rem, 10vw, 2.4rem) !important;
    }

    .hero-section p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .contact-visual-overlay {
        padding: 18px;
        width: calc(100% - 32px);
        left: 0;
        right: 0;
        margin: 0 auto;
    }

    .footer-grid {
        gap: 16px;
    }

    .footer .container > div {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .floating-buttons {
        right: 12px;
        bottom: 12px;
    }
}

@media (max-width: 375px) {
    .navbar-content {
        padding: 12px 0;
    }

    .logo-image {
        width: 100px;
    }

    .btn-quote {
        min-width: 100px;
        padding: 10px 12px;
        font-size: 12px;
    }

    .hero-section h1 {
        font-size: clamp(1.8rem, 11vw, 2.2rem) !important;
    }

    .hero-section p {
        font-size: 0.92rem;
    }
}

/* Mobile overflow & performance fixes (non-destructive) */
@media (max-width: 768px) {
    /* prevent hero background pseudo-element from causing horizontal overflow */
    .hero-section::before {
        display: none !important;
        inset: 0;
        transform: none;
        background-size: cover !important;
    }

    /* simplify decorative large pseudo-elements on small screens */
    .product-applications-section::before,
    .product-applications-section::after,
    .our-vision-section::before {
        display: none;
    }

    /* reduce heavy background animation on small devices */
    .our-vision-section {
        animation: none !important;
        background-attachment: scroll !important;
    }

    /* ensure images do not overflow their containers */
    .who-we-are-img,
    .gallery-preview-image,
    .gallery-card-image,
    .industries-card-image,
    .industry-card-image,
    .material-detail-image {
        max-width: 100%;
        width: 100%;
        height: auto !important;
        object-fit: cover;
    }

    /* container padding adjustments to prevent edge overflow */
    .container { padding-left: 12px; padding-right: 12px; }

    /* make sure hero and other large sections adapt */
    .hero-section { padding-top: 84px; }

    /* make section shells use smaller padding to avoid horizontal scroll */
    .section-shell { padding-left: 16px; padding-right: 16px; }
}

@media (max-width: 420px) {
    /* extra conservative fixes for very small widths */
    .logo-image { width: 96px; }
    .btn-quote { min-width: 86px; }
    .hero-section { padding-top: 96px; }

    .navbar-content {
        flex-wrap: nowrap !important;
    }

    .logo {
        flex: 0 0 96px;
        width: 96px !important;
        max-width: 96px;
    }

    .nav-toggle {
        flex: 0 0 44px !important;
        width: 44px !important;
    }

    .btn-quote {
        flex: 0 0 auto;
        width: auto !important;
    }
}

/* Disable large hero pseudo-elements that cause overflow on small screens */
@media (max-width: 768px) {
    .page-hero::before,
    .page-about .page-hero::before,
    .hero-section::before {
        display: none !important;
        inset: 0 !important;
        transform: none !important;
    }
}

/* Strong mobile layout enforcement: make all card grids single-column and prevent fixed-width overflow */
@media (max-width: 767px) {
    /* Make common grid/row containers collapse to one column */
    .row,
    .grid,
    .cards-grid,
    .gallery-preview-grid,
    .material-card-grid,
    .material-card-grid,
    .material-card-grid,
    .industry-card-grid,
    .cards,
    .services-grid,
    .materials-grid,
    .industries-grid,
    .dark-cards,
    .blog-grid,
    .gallery-grid--masonry,
    .gallery-grid,
    .footer-grid,
    .footer-grid--contact {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 18px !important;
        box-sizing: border-box !important;
    }

    /* Ensure container and columns don't force widths */
    .container,
    .navbar-content,
    .who-we-are-grid,
    .material-detail-panel,
    .product-applications-grid,
    .industries-grid {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        box-sizing: border-box !important;
        min-width: 0 !important;
    }

    /* Make individual cards full width and remove min-width constraints */
    .card,
    .service-card-home,
    .service-card,
    .material-card,
    .gallery-preview-card,
    .gallery-card,
    .industry-card,
    .info-card,
    .dark-card,
    .blog-card,
    .contact-card,
    .contact-form-card {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
        display: block !important;
    }

    /* Card images responsive */
    .card-image,
    .gallery-preview-image,
    .gallery-card-image,
    .industry-card-image,
    .material-detail-image,
    .who-we-are-img,
    .blog-card-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
        display: block !important;
    }

    .service-card-home .service-card-image {
        height: auto !important;
    }

    /* Text wrapping and readability fixes */
    h1, h2, h3, h4, h5, h6,
    .card-title,
    .card-text,
    .material-card-title,
    .material-card-description,
    .industry-card-title,
    .industry-card-description,
    .gallery-preview-title,
    .section-heading p,
    .section-heading h2,
    p,
    span,
    a {
        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
    }

    /* Keep nav menu links on single line */
    .nav-menu a {
        white-space: nowrap !important;
        word-break: normal !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    /* Prevent nested flex items from forcing width by ensuring children can shrink */
    .row > *,
    .container > *,
    .cards-grid > *,
    .gallery-preview-grid > *,
    .material-card-grid > * {
        min-width: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Avoid large hero heights on small screens */
    .hero-section,
    .page-hero,
    .our-vision-section {
        min-height: auto !important;
        padding-top: 72px !important;
        padding-bottom: 36px !important;
    }

    /* Floating buttons scale down */
    .floating-buttons .floating-btn {
        width: 44px !important;
        height: 44px !important;
        font-size: 20px !important;
    }

    /* Footer stacking */
    .footer .container > div,
    .footer-grid--contact {
        grid-template-columns: 1fr !important;
    }

    /* Ensure nav-menu fills screen and doesn't overflow */
    .nav-menu {
        left: 12px !important;
        right: 12px !important;
        width: calc(100% - 24px) !important;
        box-sizing: border-box !important;
    }

    /* Buttons should not force column widths */
    .btn,
    .material-card-button,
    .industry-view-btn,
    .service-cta .btn,
    .service-cta .btn-whatsapp {
        min-width: 0 !important;
        width: auto !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

/* Force Contact section visible & fully expanded on small screens (only target #quote) */
@media (max-width: 767px) {
    /* target the exact section id used on the home page */
    #quote.motion-reveal {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        overflow: visible !important;
    }

    /* make sure children are visible even if motion-reveal child rules exist */
    #quote.motion-reveal * {
        display: revert !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        box-sizing: border-box !important;
    }

    /* ensure the contact grid stacks on mobile */
    #quote .contact-grid,
    #quote .contact-split,
    #quote .contact-info-panel,
    #quote .quick-contact-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 18px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* make contact cards and form full-width */
    #quote .contact-card,
    #quote .contact-form-card,
    #quote .contact-info-card,
    #quote .contact-form {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }
}
