:root {
    --primary: #16336b;
    --primary-dark: #102756;
    --secondary: #1f3c88;

    --accent: #f58220;
    --accent-dark: #dc6b0a;

    --heading: #12264f;
    --text: #25324a;
    --muted: #6b7280;

    --white: #ffffff;
    --light: #f7f8fa;
    --border: #e5e7eb;

    --topbar-height: 36px;
    --navbar-height: 78px;

    --header-height: calc(
        var(--topbar-height) + var(--navbar-height)
    );

    --shadow:
        0 18px 50px rgba(15, 23, 42, 0.12);

    --container: 1280px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
    min-width: 0;
    overflow-x: hidden;
    background: var(--white);
    color: var(--text);
    font-family: "Inter", sans-serif;
    line-height: 1.65;
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    cursor: pointer;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.site-main {
    padding-top: var(--header-height);
}

.section {
    padding: 105px 0;
}

h1,
h2,
h3,
h4 {
    color: var(--heading);
    font-family: "Manrope", sans-serif;
    line-height: 1.2;
}

h2 {
    margin-bottom: 20px;
    font-size: clamp(2rem, 4vw, 2.8rem);
    letter-spacing: -0.025em;
}

p {
    margin-bottom: 18px;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(245, 130, 32, 0.4);
    outline-offset: 3px;
}

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 12px 22px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.btn i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:hover .fa-arrow-right {
    transform: translateX(3px);
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    box-shadow:
        0 8px 20px rgba(245, 130, 32, 0.22);
}

.btn-primary:hover {
    background: var(--accent-dark);
    box-shadow:
        0 10px 25px rgba(245, 130, 32, 0.3);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--primary);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    backdrop-filter: blur(8px);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-white {
    background: var(--white);
    color: var(--accent);
    box-shadow:
        0 10px 25px rgba(15, 23, 42, 0.12);
}

.btn-white:hover {
    background: var(--primary);
    color: var(--white);
}

.site-header {
    width: 100%;
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    background: var(--white);
    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.site-header.header-scrolled {
    box-shadow:
        0 8px 30px rgba(15, 23, 42, 0.12);
}

.topbar {
    height: var(--topbar-height);
    overflow: hidden;
    background: var(--primary);
    color: var(--white);
}

.topbar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.topbar-contact,
.topbar-right {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 22px;
}

.topbar-contact a,
.business-hours {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.topbar-contact a:hover {
    color: var(--white);
}

.topbar-contact i,
.business-hours i {
    color: var(--accent);
    font-size: 10px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 7px;
}

.social-links a {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 10px;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.social-links a:hover {
    transform: translateY(-1px);
    background: var(--accent);
}

.navbar-wrapper {
    height: var(--navbar-height);
    border-bottom: 1px solid rgba(229, 231, 235, 0.85);
    background: rgba(255, 255, 255, 0.98);
}

.navbar {
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
}

.brand img {
    width: 158px;
    height: 48px;
    object-fit: contain;
    object-position: left center;
    transition:
        width 0.25s ease,
        height 0.25s ease;
}

.nav-menu {
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    margin-left: auto;
}

.nav-menu a {
    position: relative;
    padding: 28px 0 26px;
    color: #5f6878;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a:not(.mobile-quote-link)::after {
    content: "";
    height: 2px;
    position: absolute;
    right: 50%;
    bottom: 18px;
    left: 50%;
    border-radius: 10px;
    background: var(--accent);
    transition:
        right 0.2s ease,
        left 0.2s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    right: 0;
    left: 0;
}

.nav-quote {
    min-height: 43px;
    flex-shrink: 0;
    padding: 10px 18px;
    border-radius: 7px;
    font-size: 13px;
}

.mobile-quote-link {
    display: none;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    display: none;
    flex-shrink: 0;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    color: var(--primary);
    font-size: 19px;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.menu-toggle:hover {
    border-color: var(--accent);
    background: rgba(245, 130, 32, 0.07);
}

.site-header.header-scrolled {
    --navbar-height: 68px;
}

.site-header.header-scrolled .brand img {
    width: 145px;
    height: 42px;
}

.site-header.header-scrolled .nav-menu a {
    padding-top: 23px;
    padding-bottom: 22px;
}

.site-header.header-scrolled
.nav-menu
a:not(.mobile-quote-link)::after {
    bottom: 14px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-label-light {
    color: var(--accent);
}

.section-label-center {
    justify-content: center;
}

.label-line {
    width: 38px;
    height: 2px;
    display: inline-block;
    flex-shrink: 0;
    background: currentColor;
}

.hero {
    min-height: 650px;
    position: relative;
    display: flex;
    align-items: center;
    background:
        url("image/main-slider-1-1.jpg")
        center / cover
        no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(13, 36, 81, 0.96) 0%,
            rgba(22, 51, 107, 0.84) 48%,
            rgba(22, 51, 107, 0.36) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 90px 0;
}

.hero h1 {
    max-width: 680px;
    margin-bottom: 24px;
    color: var(--white);
    font-size: clamp(3rem, 7vw, 5.2rem);
    font-weight: 800;
    letter-spacing: -0.05em;
}

.hero h1 span {
    display: block;
    color: var(--accent);
}

.hero-description {
    max-width: 585px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.83);
    font-size: 17px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 42px;
    margin-top: 55px;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 14px;
}

.badge-icon {
    width: 52px;
    height: 52px;
    display: grid;
    flex-shrink: 0;
    place-items: center;
    border-radius: 10px;
    background: var(--accent);
    color: var(--white);
    font-size: 21px;
    box-shadow:
        0 8px 20px rgba(245, 130, 32, 0.2);
}

.hero-badge strong,
.hero-badge span {
    display: block;
}

.hero-badge strong {
    color: var(--white);
    font-size: 14px;
}

.hero-badge span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.about-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 1fr);
    align-items: center;
    gap: 80px;
}

.about-images {
    min-height: 570px;
    position: relative;
}

.about-main {
    width: 58%;
    height: 500px;
    margin: 32px auto 0;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.about-small {
    width: 31%;
    height: 300px;
    position: absolute;
    top: 125px;
    border: 8px solid var(--white);
    border-radius: 14px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.about-small-left {
    left: 0;
}

.about-small-right {
    right: 0;
}

.accreditation-card {
    width: max-content;
    max-width: 94%;
    position: absolute;
    bottom: 5px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 15px 20px;
    transform: translateX(-50%);
    border: 1px solid rgba(229, 231, 235, 0.8);
    border-radius: 11px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.accreditation-icon {
    width: 42px;
    height: 42px;
    display: grid;
    flex-shrink: 0;
    place-items: center;
    border-radius: 8px;
    background: rgba(245, 130, 32, 0.12);
    color: var(--accent);
    font-size: 20px;
}

.accreditation-card strong,
.accreditation-card span {
    display: block;
}

.accreditation-card strong {
    color: var(--heading);
    font-size: 13px;
}

.accreditation-card span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 11px;
}

.about-content p {
    color: var(--muted);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 35px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 12px;
}

.stat-item {
    min-width: 0;
    padding: 24px 10px;
    border-right: 1px solid var(--border);
    text-align: center;
}

.stat-item:last-child {
    border-right: 0;
}

.stat-item strong {
    display: block;
    color: var(--accent);
    font-family: "Manrope", sans-serif;
    font-size: 28px;
}

.stat-item span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.4;
}

.section-heading {
    max-width: 730px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading p {
    color: var(--muted);
}

.products-section {
    background: var(--light);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.product-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(229, 231, 235, 0.75);
    border-radius: 14px;
    background: var(--white);
    box-shadow:
        0 12px 35px rgba(15, 23, 42, 0.06);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(245, 130, 32, 0.28);
    box-shadow: var(--shadow);
}

.product-image {
    height: 220px;
    display: block;
    overflow: hidden;
    background: #e9edf3;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.045);
}

.product-content {
    padding: 24px;
}

.product-content h3 {
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 18px;
}

.product-content p {
    min-height: 92px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 14px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
}

.card-link i {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.card-link:hover i {
    transform: translateX(4px);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 30px 25px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--white);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 130, 32, 0.42);
    box-shadow:
        0 15px 40px rgba(15, 23, 42, 0.08);
}

.feature-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 12px;
    background: rgba(245, 130, 32, 0.12);
    color: var(--accent);
    font-size: 23px;
}

.feature-card h3 {
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 17px;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
}

.gallery-section {
    background: var(--light);
}

.gallery-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 36px;
}

.gallery-header h2 {
    margin-bottom: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(0, 1fr)
        minmax(0, 1fr);
    grid-template-rows: 235px 235px;
    gap: 18px;
}

.gallery-item {
    min-width: 0;
    position: relative;
    overflow: hidden;
    border-radius: 13px;
    background: #dfe5ec;
}

.gallery-featured {
    grid-row: 1 / span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: rgba(22, 51, 107, 0.5);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.gallery-view-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    transform: translateY(8px);
    border-radius: 50%;
    background: var(--white);
    color: var(--primary);
    font-size: 18px;
    transition: transform 0.25s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-view-icon {
    transform: translateY(0);
}

.testimonials-section {
    position: relative;
    overflow: hidden;
    background: var(--secondary);
}

.testimonials-section::before {
    content: "";
    width: 430px;
    height: 430px;
    position: absolute;
    top: -240px;
    right: -120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.035);
}

.section-heading-light {
    position: relative;
    z-index: 2;
}

.section-heading-light h2 {
    color: var(--white);
}

.section-heading-light p {
    color: rgba(255, 255, 255, 0.68);
}

.testimonial-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.testimonial-card {
    min-width: 0;
    position: relative;

    display: flex;
    flex-direction: column;

    height: 100%;

    padding: 32px;

    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;

    background: rgba(255, 255, 255, 0.075);
    color: var(--white);

    backdrop-filter: blur(5px);

    overflow: hidden;
}

.testimonial-user {
    min-width: 0;
}

.testimonial-user > div:last-child {
    min-width: 0;
    max-width: 100%;
}

.testimonial-user strong,
.testimonial-user span,
.testimonial-user small {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.testimonial-card > p {
    position: relative;
    z-index: 2;

    width: 100%;
    min-width: 0;
    max-width: 100%;

    margin-bottom: 28px;

    display: -webkit-box;
    overflow: hidden;

    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    line-height: 1.75;

    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.testimonial-quote-icon {
    position: absolute;
    top: 28px;
    right: 28px;
    color: rgba(255, 255, 255, 0.11);
    font-size: 34px;
}

.testimonial-stars {
    margin-bottom: 20px;
    color: #ffb15c;
    font-size: 12px;
    letter-spacing: 2px;
}

.testimonial-card > p {
    position: relative;
    z-index: 2;

    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;

    overflow: hidden;

    margin-bottom: 24px;

    color: rgba(255,255,255,.84);
    font-size: 14px;
    line-height: 1.75;

    white-space: normal;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.testimonial-user {
    margin-top: auto;

    display: flex;
    align-items: center;
    gap: 13px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    display: grid;
    flex-shrink: 0;
    place-items: center;
    border-radius: 50%;
    background: rgba(245, 130, 32, 0.2);
    color: var(--accent);
    font-weight: 800;
}

.testimonial-user strong,
.testimonial-user span {
    display: block;
}

.testimonial-user span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.cta-section {
    padding: 85px 0;
    background: var(--accent);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 760px;
}

.cta-label {
    display: inline-block;
    margin-bottom: 22px;
    padding: 9px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.cta-section h2 {
    color: var(--white);
}

.cta-section p {
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.85);
}

.site-footer {
    padding-top: 75px;
    background: var(--primary);
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.4fr)
        minmax(0, 0.8fr)
        minmax(0, 0.8fr)
        minmax(0, 1.2fr);
    gap: 50px;
}

.footer-column {
    min-width: 0;
}

.footer-about img {
    width: 250px;
    height: 70px;
    object-fit: contain;
    object-position: left center;
}

.footer-about p {
    max-width: 310px;
    color: #cbd5e1;
    font-size: 14px;
}

.footer-column h3 {
    margin-bottom: 22px;
    color: var(--white);
    font-size: 16px;
}

.footer-column > a:not(.contact-item) {
    display: block;
    width: max-content;
    max-width: 100%;
    margin-bottom: 13px;
    color: #cbd5e1;
    font-size: 14px;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-column > a:not(.contact-item):hover {
    transform: translateX(3px);
    color: var(--accent);
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
}

.footer-socials a {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.footer-socials a:hover {
    transform: translateY(-2px);
    background: var(--accent);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--white);
    font-size: 13px;
}

.contact-item > i {
    width: 18px;
    margin-top: 4px;
    flex-shrink: 0;
    color: var(--accent);
    text-align: center;
}

.contact-item strong,
.contact-item small {
    display: block;
}

.contact-item small {
    margin-top: 3px;
    color: #cbd5e1;
    font-size: 11px;
}

.footer-bottom {
    margin-top: 55px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #cbd5e1;
    font-size: 12px;
}

.footer-bottom p {
    margin: 0;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links a {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 10px;
    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.social-links a:hover {
    transform: translateY(-1px);
    background: var(--accent);
}


@media (max-width: 1180px) {

    .navbar {
        gap: 18px;
    }

    .nav-menu {
        gap: 15px;
    }

    .nav-menu a {
        font-size: 12px;
    }

    .nav-quote {
        padding-inline: 14px;
        font-size: 12px;
    }

    .about-grid {
        gap: 45px;
    }

    .product-grid,
    .feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-content p {
        min-height: 70px;
    }

}

@media (max-width: 960px) {

    :root {
        --navbar-height: 70px;
    }

    .section {
        padding: 80px 0;
    }

    .topbar-right .business-hours {
        display: none;
    }

    .menu-toggle {
        display: grid;
        margin-left: auto;
    }

    .nav-quote {
        display: none;
    }

    .nav-menu {
        max-height: calc(100vh - var(--header-height));
        position: absolute;
        z-index: 1001;
        top: 100%;
        right: 0;
        left: 0;
        display: none;
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        margin: 0;
        padding: 10px 20px 20px;
        border-top: 1px solid var(--border);
        border-radius: 0 0 14px 14px;
        background: var(--white);
        box-shadow:
            0 18px 35px rgba(15, 23, 42, 0.12);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu a,
    .site-header.header-scrolled .nav-menu a {
        padding: 14px 0;
        border-bottom: 1px solid var(--border);
        font-size: 14px;
    }

    .nav-menu a:last-child {
        border-bottom: 0;
    }

    .nav-menu a::after {
        display: none;
    }

    .mobile-quote-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 10px;
        padding: 13px 16px !important;
        border: 0 !important;
        border-radius: 7px;
        background: var(--accent);
        color: var(--white) !important;
    }

    .mobile-quote-link i {
        font-size: 12px;
    }

    .site-header.header-scrolled {
        --navbar-height: 70px;
    }

    .hero {
        min-height: 620px;
    }

    .hero-overlay {
        background: rgba(13, 36, 81, 0.87);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-images {
        max-width: 680px;
        width: 100%;
        min-height: 540px;
        margin-inline: auto;
    }

    .stats-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 270px 220px 220px;
    }

    .gallery-featured {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media (max-width: 600px) {

    :root {
        --topbar-height: 34px;
        --navbar-height: 66px;
    }

    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 68px 0;
    }

    .topbar-inner {
        justify-content: center;
    }

    .topbar-contact a:last-child,
    .topbar-right {
        display: none;
    }

    .brand img,
    .site-header.header-scrolled .brand img {
        width: 136px;
        height: 42px;
    }

    .menu-toggle {
        width: 41px;
        height: 41px;
    }

    .site-header.header-scrolled {
        --navbar-height: 66px;
    }

    .hero {
        min-height: 655px;
    }

    .hero-content {
        padding: 65px 0;
    }

    .hero h1 {
        font-size: clamp(2.9rem, 14vw, 4rem);
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-badges {
        gap: 22px;
        margin-top: 42px;
    }

    .hero-badge {
        width: 100%;
    }

    .about-images {
        min-height: 430px;
    }

    .about-main {
        width: 72%;
        height: 380px;
    }

    .about-small {
        width: 32%;
        height: 215px;
        top: 110px;
        border-width: 5px;
    }

    .accreditation-card {
        bottom: -12px;
        padding: 11px 13px;
    }

    .accreditation-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .accreditation-card strong {
        font-size: 11px;
    }

    .accreditation-card span {
        font-size: 9px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item {
        border-bottom: 1px solid var(--border);
    }

    .stat-item:nth-child(2) {
        border-right: 0;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: 0;
    }

    .product-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .product-content p {
        min-height: auto;
    }

    .gallery-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 240px);
    }

    .gallery-featured {
        grid-column: auto;
    }

    .testimonial-card {
        padding: 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        text-align: center;
    }

}

.product-image {
    position: relative;
}

.product-trending-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 3;
    min-height: 32px;
    padding: 7px 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #ffffff;
    background: rgba(22, 51, 107, 0.88);
    backdrop-filter: blur(8px);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.product-trending-badge i {
    color: #f58220;
    font-size: 11px;
}

.product-category-label {
    display: block;
    margin-bottom: 7px;
    color: #f58220;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-code {
    display: block;
    margin: -4px 0 13px;
    color: #8791a2;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.homepage-products-empty,
.homepage-gallery-empty {
    max-width: 620px;
    margin: 0 auto;
    padding: 50px 25px;
    border: 1px dashed #ccd3df;
    border-radius: 16px;
    text-align: center;
    background: #ffffff;
}

.homepage-products-empty > i,
.homepage-gallery-empty > i {
    margin-bottom: 17px;
    color: #f58220;
    font-size: 35px;
}

.homepage-products-empty h3,
.homepage-gallery-empty h3 {
    margin-bottom: 8px;
    color: #16336b;
}

.homepage-products-empty p,
.homepage-gallery-empty p {
    margin: 0;
    color: #737f91;
}

.homepage-gallery-subtitle {
    max-width: 520px;
    margin-top: 10px;
    color: var(--muted);
    line-height: 1.7;
}

.homepage-gallery-info {
    position: absolute;
    right: 70px;
    bottom: 18px;
    left: 18px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    opacity: 0;
    transform: translateY(8px);
    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.55);
    transition:
        opacity 0.25s ease,
        transform 0.25s ease;
}

.homepage-gallery-info small {
    margin-bottom: 4px;
    color: #f58220;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.homepage-gallery-info strong {
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1.4;
}

.homepage-gallery-info span {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 10px;
    font-weight: 600;
}

.gallery-item:hover .homepage-gallery-info,
.gallery-item:focus-visible .homepage-gallery-info {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 620px) {
    .homepage-gallery-info {
        opacity: 1;
        transform: none;
    }

    .product-trending-badge {
        top: 12px;
        left: 12px;
    }
}

.testimonial-home-header {
    position: relative;
}

.testimonial-view-all {
    position: absolute;
    top: 0;
    right: 0;
}

.testimonial-user small {
    display: block;
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 10px;
}

.testimonial-home-empty {
    max-width: 620px;
    margin: 0 auto;
    padding: 52px 25px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 18px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
}

.testimonial-home-empty i {
    margin-bottom: 18px;
    color: #f58220;
    font-size: 35px;
}

.testimonial-home-empty h3 {
    margin: 0 0 8px;
    color: #ffffff;
}

.testimonial-home-empty p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
}

.testimonial-home-mobile-action {
    display: none;
    margin-top: 30px;
    text-align: center;
}

@media (max-width: 900px) {
    .testimonial-view-all {
        display: none;
    }

    .testimonial-home-mobile-action {
        display: block;
    }
}


.menu-toggle {
    position: relative;
    z-index: 1010;
    pointer-events: auto;
    touch-action: manipulation;
}

.menu-toggle i {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    pointer-events: none;
}

.nav-menu {
    z-index: 1005;
}

@media (max-width: 960px) {

    .navbar {
        position: relative;
        z-index: 1004;
    }

    .menu-toggle {
        display: grid;
    }

    .nav-menu.open {
        display: flex;
        pointer-events: auto;
    }

    .nav-menu a {
        width: 100%;
        display: flex;
        align-items: center;
        pointer-events: auto;
    }
}