:root {
    --primary: #1173d4;
    --primary-hover: #1173d4e6;
    --primary-fg: #fff;
    --bg: #fff;
    --fg: #0f172a;
    --muted: #f8fafc;
    --muted-fg: #64748b;
    --border: #e2e8f0;
    --ring: #93c5fd;
    --radius: .75rem;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .04);
    --gradient-hero: linear-gradient(160deg, hsl(210 30% 97%), hsl(210 50% 94%), hsl(210 30% 97%));
}

/* ==================== CORE ==================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--fg);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

main {
    min-height: calc(100vh - 200px);
}

/* ==================== LAYOUT ==================== */
.container {
    max-width: 88rem;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ==================== PRODUCTS & NEWS GRIDS ==================== */
.products-grid-featured,
.products-grid-normal,
.products-grid-sub,
.about-features-grid,
.news-grid,
.category-children-grid,
.category-products-grid {
    display: grid;
    gap: 1.5rem;
}

.products-grid-featured,
.products-grid-normal {
    margin-bottom: 2rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-5 {
    gap: 1.25rem;
}

.gap-6 {
    gap: 1.5rem;
}

/* ==================== ASPECT RATIOS ==================== */
.aspect-square {
    aspect-ratio: 1/1;
}

.aspect-4-3 {
    aspect-ratio: 4/3;
}

/* ==================== TEXT UTILITIES ==================== */
.gradient-text {
    background: var(--primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-padding {
    padding: 5rem 1rem;
}

.hidden {
    display: none;
}

.text-center {
    text-align: center;
}

.mb-8 {
    margin-bottom: 2rem;
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .8;
        transform: scale(1.04);
    }
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-fade-up {
    animation: fadeUp .7s cubic-bezier(.22, 1, .36, 1) forwards;
}

.animate-fade-up-delay-1 {
    opacity: 0;
    animation: fadeUp .7s cubic-bezier(.22, 1, .36, 1) .18s forwards;
}

.animate-fade-up-delay-2 {
    opacity: 0;
    animation: fadeUp .7s cubic-bezier(.22, 1, .36, 1) .36s forwards;
}

.animate-fade-up-delay-3 {
    opacity: 0;
    animation: fadeUp .7s cubic-bezier(.22, 1, .36, 1) .54s forwards;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.bg-blob {
    position: absolute;
    filter: blur(56px);
    opacity: .4;
    pointer-events: none;
    z-index: 0;
}

/* ==================== SECTION COMPONENTS ==================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: .375rem;
    padding: .375rem .75rem;
    border-radius: 9999px;
    font-size: .75rem;
    font-weight: 600;
    background: rgba(29, 78, 216, .1);
    color: var(--primary);
}

.section-label {
    display: inline-block;
    background: rgba(29, 78, 216, .1);
    border: 1px solid rgba(17, 115, 212, .2);
    border-radius: 9999px;
    padding: .35rem .85rem;
    margin-bottom: .75rem;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 600;
    color: var(--primary);
}

.section-label i {
    color: var(--primary);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -.02em;
}

.section-desc {
    color: var(--muted-fg);
    max-width: 40rem;
    margin: 0 auto;
    font-size: .975rem;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    font-weight: 500;
    border-radius: .5rem;
    border: none;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
    text-decoration: none;
    outline: none;
    font-size: .9rem;
}

.btn:focus-visible {
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-fg);
    padding: .6rem 1.75rem;
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 3px 20px rgba(29, 79, 216, 0.151);
}

.btn-primary-lg {
    padding: .75rem 2rem;
    font-size: 1rem;
}

.btn-outline {
    background: transparent;
    color: var(--fg);
    border: 1.5px solid var(--border);
    padding: .6rem 1.75rem;
}

.btn-outline:hover {
    background: var(--muted);
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-lg {
    padding: .75rem 2rem;
    font-size: 1rem;
}

/* ==================== NAVIGATION ==================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    margin-top: 14px;
    transition: .4s ease;
}

nav.scrolled {
    background: rgba(255, 255, 255, .93);
    border-bottom: 1px solid rgba(255, 255, 255, .25);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .07);
    margin-top: 0;
}

.nav-container {
    max-width: 88rem;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: .6rem;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity 0.3s ease;
}

.nav-logo:hover .nav-logo-img {
    opacity: 1;
}

.nav-logo-img {
    height: 2.7rem;
    width: auto;
    display: block;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease;
    filter: brightness(1.05) contrast(0.95);
}

.nav-links {
    display: none;
    align-items: center;
    gap: .25rem;
}

.nav-link {
    display: flex;
    align-items: center;
    font-size: .875rem;
    font-weight: 500;
    letter-spacing: .04em;
    padding: 0 .875rem;
    color: var(--muted-fg);
    position: relative;
    transition: color .25s ease;
}

.nav-link:hover {
    color: var(--fg);
}

.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -31px;
    left: .875rem;
    right: .875rem;
    height: 1px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: center;
    opacity: 0;
    transition: transform .4s ease, opacity .4s ease;
}

nav.scrolled .nav-link.active::after {
    transform: scaleX(1);
    opacity: 1;
}

.btn-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: .25rem;
    color: var(--fg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 1rem;
    flex-direction: column;
    gap: .25rem;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu-link {
    display: block;
    padding: .6rem .875rem;
    font-size: .9rem;
    font-weight: 500;
    color: var(--fg);
    border-radius: .5rem;
    transition: background .15s, color .15s;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
    background: var(--muted);
    color: var(--primary);
}

.mobile-menu-divider,
hr.mobile-menu-divider {
    height: 1px;
    background: var(--border);
    margin: .5rem 0;
    border: none;
}

.nav-hotline,
.nav-contact-btn {
    font-size: .85rem;
    padding: .5rem 1.1rem;
    margin-left: 15px;
}

.mobile-hotline,
.mobile-contact-btn {
    width: 100%;
    justify-content: center;
}

/* Contact Button Floating & Flying Animations */
.nav-contact-btn,
.mobile-contact-btn {
    display: inline-flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, #2563eb 50%, var(--primary) 100%);
    background-size: 200% auto;
    transition: background-position 0.5s ease, box-shadow 0.4s ease;
    border: none;
}

.nav-contact-btn:hover,
.mobile-contact-btn:hover {
    background-position: right center;
    animation: contactGlowPulse 1.8s infinite;
}

.contact-btn-inner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.nav-contact-btn i,
.mobile-contact-btn i {
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-contact-btn:hover i,
.mobile-contact-btn:hover i {
    transform: rotate(15deg);
}

/* Shine effect that reverses smoothly */
.nav-contact-btn::after,
.mobile-contact-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transition: left 0.6s ease;
    pointer-events: none;
}

.nav-contact-btn:hover::after,
.mobile-contact-btn:hover::after {
    left: 100%;
}

@keyframes contactGlowPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(17, 115, 212, 0.4), 0 4px 12px rgba(17, 115, 212, 0.2);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(17, 115, 212, 0), 0 4px 20px rgba(17, 115, 212, 0.35);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(17, 115, 212, 0), 0 4px 12px rgba(17, 115, 212, 0.2);
    }
}

/* ==================== CARDS ==================== */
.card {
    border-radius: 1rem;
    border: 1.5px solid var(--border);
    padding: 1.5rem;
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s, transform .25s;
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--bg);
}

.card:hover {
    border-color: rgba(29, 78, 216, .35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    transform: translateY(-3px);
}

.card-img {
    overflow: hidden;
    background: var(--muted);
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.card:hover .card-img img {
    transform: scale(1.06);
}

.card-body {
    padding: 1.25rem;
}

/* ==================== PRODUCT CARD COMPONENT ==================== */
.product-card,
.news-card,
.job-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-radius: 1rem;
    border: 1.5px solid var(--border);
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s, transform .25s;
    background: var(--bg);
}

.product-card:hover,
.news-card:hover,
.job-card:hover {
    border-color: rgba(17, 115, 212, .35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    transform: translateY(-3px);
}

.product-card-img {
    overflow: hidden;
    background: var(--muted);
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.product-card:hover .product-card-img img {
    transform: scale(1.06);
}

.product-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-body-sm {
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card-title {
    font-weight: 600;
    font-size: 1.15rem;
    margin-bottom: .5rem;
    color: var(--fg);
    line-height: 1.3;
}

.product-card-title-sm {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: .35rem;
    color: var(--fg);
    line-height: 1.3;
}

.product-card-desc {
    font-size: .875rem;
    color: var(--muted-fg);
    line-height: 1.5;
    margin: 0;
}

.product-desc-sm {
    font-size: .8rem;
}

.product-card-specs {
    display: flex;
    gap: 1rem;
    font-size: .8rem;
    color: var(--muted-fg);
    margin-top: .5rem;
    flex-wrap: wrap;
}

.product-card-specs span {
    display: flex;
    align-items: center;
    gap: .3rem;
}

.products-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--muted-fg);
}



/* ==================== FORMS ==================== */
.contact-form {
    background: var(--bg);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
}

.contact-error-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-submit {
    width: 100%;
    margin-top: 1rem;
    padding: .8rem;
    font-size: .95rem;
}

.field-grid {
    display: grid;
    gap: 1rem;
}

.field {
    position: relative;
}

.field-full {
    grid-column: 1 / -1;
}

.field label {
    position: absolute;
    left: .85rem;
    top: .75rem;
    font-size: .85rem;
    color: var(--muted-fg);
    pointer-events: none;
    transition: transform .2s ease, color .2s ease, font-size .2s ease;
    background: var(--bg);
    padding: 0 .25rem;
}

.field .form-input,
.field .form-textarea {
    padding-top: 1.2rem;
}

.field .form-textarea {
    min-height: 7.5rem;
}

.field input:focus+label,
.field textarea:focus+label,
.field input:not(:placeholder-shown)+label,
.field textarea:not(:placeholder-shown)+label {
    transform: translateY(-0.85rem);
    font-size: .7rem;
    color: var(--primary);
}

.form-input,
.form-textarea {
    display: flex;
    width: 100%;
    border-radius: .5rem;
    border: 1.5px solid var(--border);
    background: var(--bg);
    color: var(--fg);
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}

.form-input {
    padding: .5rem .875rem;
    font-size: 1rem;
}

.form-textarea {
    padding: .625rem .875rem;
    font-size: .875rem;
    resize: none;
    min-height: 7rem;
    max-height: 12rem;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--muted-fg);
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(29, 78, 216, .14);
}

.form-row {
    display: grid;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.form-group+.form-group,
.form-row+.form-group,
.form-row+.form-row {
    margin-top: 1rem;
}

.form-required {
    color: #ef4444;
}

.error-message {
    display: block;
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    min-height: 1.25rem;
}

.form-input.is-invalid,
.form-textarea.is-invalid {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.14);
}

.form-input.is-invalid:focus,
.form-textarea.is-invalid:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.14);
}

/* ==================== CONTACT SECTION ==================== */
.contact {
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
}

.contact-blob {
    width: 18rem;
    height: 18rem;
    background: rgba(29, 78, 216, .08);
    bottom: -2rem;
    right: 4rem;
}

.contact-header {
    text-align: left;
    margin-bottom: 2.5rem;
}

.contact-desc {
    margin: 0;
    max-width: 36rem;
}

.contact-wrap {
    position: relative;
    display: grid;
    gap: 1.5rem;
    border-radius: 1.25rem;
    border: 1.5px solid var(--border);
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    padding: 2.5rem;
}

.contact-logo {
    position: absolute;
    bottom: -1rem;
    left: 3rem;
    opacity: .15;
    pointer-events: none;
}

.contact-logo img {
    height: 100px;
    width: auto;
}

.contact-side {
    display: grid;
    gap: 1.5rem;
    padding: 1.25rem;
    background: rgba(17, 115, 212, 0.08);
    border-radius: 1rem;
}

.contact-copy h3 {
    font-size: 1.5rem;
    margin-bottom: .75rem;
}

.contact-copy p {
    color: var(--muted-fg);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.contact-list {
    display: grid;
    gap: .5rem;
    font-size: .9rem;
    margin-top: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
}

.contact-item i {
    flex-shrink: 0;
    margin-top: .15rem;
    color: var(--primary);
    width: 1.2rem;
    text-align: center;
}

.contact-item>div {
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

.contact-list a {
    color: var(--primary);
    font-weight: 600;
}

.contact-key {
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted-fg);
}

/* ==================== MAP ==================== */
.map-section {
    width: 100%;
    padding: 1.5rem 0;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 1rem;
    overflow: hidden;
    border: 1.5px solid var(--border);
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ==================== ALERTS ==================== */
.alert-success {
    background: rgba(22, 163, 74, .1);
    border: 1.5px solid rgba(22, 163, 74, .3);
    color: #15803d;
    border-radius: .75rem;
    padding: .875rem 1.25rem;
    font-size: .9rem;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.alert-error {
    background: rgba(220, 38, 38, .08);
    border: 1.5px solid rgba(220, 38, 38, .25);
    color: #b91c1c;
    border-radius: .75rem;
    padding: .875rem 1.25rem;
    font-size: .9rem;
    margin-bottom: 1.25rem;
}

/* ==================== FOOTER ==================== */
footer {
    background: var(--muted);
    color: var(--fg);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1.5rem;
}

footer a {
    color: inherit;
    transition: color .2s;
}

footer a:hover {
    color: var(--primary);
}

footer>.container>div>div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-heading {
    font-weight: 600;
    font-size: .95rem;
    margin: 0;
}

.footer-heading a {
    color: inherit;
    text-decoration: none;
    transition: color .2s;
}

.footer-heading a:hover {
    color: var(--primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.footer-links a {
    font-size: .875rem;
    color: var(--muted-fg);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .875rem;
    color: var(--muted-fg);
}

.footer-contact-item i {
    flex-shrink: 0;
    color: var(--primary);
}

.footer-contact-item a {
    color: var(--muted-fg);
}

.footer-contact-item a:hover {
    color: var(--primary);
}

.footer-desc {
    font-size: .875rem;
    color: var(--muted-fg);
    line-height: 1.6;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: .5rem;
}

.footer-social-link {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: .5rem;
    background: var(--bg);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-fg);
    transition: border-color .2s, color .2s, transform .2s;
}

.footer-social-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.footer-divider,
hr.footer-divider {
    height: 1px;
    background: var(--border);
    margin: 2rem 0;
    border: none;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.footer-logo img {
    height: 35px;
    width: auto;
    display: block;
}

.footer-bottom p {
    font-size: .8rem;
    color: var(--muted-fg);
    margin: 0;
}

/* ==================== RESPONSIVE ==================== */
@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }

    .section-padding {
        padding: 5rem 1.5rem;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .nav-container {
        padding: 0 1.5rem;
        height: 5rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .field-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .sm\:grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .sm\:grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .products-grid-featured,
    .category-children-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid-normal,
    .category-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card-body {
        padding: 1.25rem;
    }

    .product-card-title {
        font-size: 1rem;
    }

    footer>.container>div:first-child {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .btn-menu {
        display: none;
    }

    .map-container {
        height: 500px;
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .nav-container {
        padding: 0 2rem;
    }

    .contact-wrap {
        grid-template-columns: 1fr 1.2fr;
        padding: 3rem;
    }

    .contact-side {
        padding: 1.5rem;
        min-height: 100%;
    }

    .map-container {
        height: 600px;
    }

    .lg\:grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .lg\:grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .lg\:grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .lg\:grid-5-2 {
        grid-template-columns: 2fr 3fr;
    }

    .products-grid-featured {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid-normal,
    .category-products-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .about-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-card-body {
        padding: 1.5rem;
    }

    .product-card-title {
        font-size: 1.15rem;
    }

    footer>.container>div:first-child {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}