:root {
    --primary: #005ed0;
    --secondary: #00b069;
    --ink: #07111f;
    --muted: #5d6675;
    --bg: #ffffff;
    --soft: #f3f8fb;
    --line: #dce7ef;
    --shadow: 0 18px 50px rgba(2, 32, 71, .12);
    --radius: 22px;
    --container: 1180px
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6
}

.container {
    width: min(var(--container), calc(100% - 32px));
    margin-inline: auto
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 8px;
    background: var(--primary);
    color: #fff;
    padding: 10px 14px;
    z-index: 1000
}

.skip-link:focus {
    left: 8px
}

.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    z-index: 50
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 82px
}

.brand img {
    height: 58px;
    width: auto;
    display: block
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px
}

.nav-link,
.nav-cta {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 14px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    color: var(--ink);
    transition: .25s ease
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: #eef6ff
}

.nav-cta {
    background: var(--primary);
    color: #fff
}

.nav-cta:hover {
    background: var(--secondary);
    transform: translateY(-2px)
}

.menu-toggle {
    display: none;
    border: 0;
    background: #eef6ff;
    color: var(--primary);
    border-radius: 12px;
    width: 46px;
    height: 46px;
    font-size: 24px
}

.hero {
    padding: 88px 0;
    background: radial-gradient(circle at 20% 10%, rgba(0, 176, 105, .18), transparent 32%), linear-gradient(135deg, #f4fbff, #effff7);
    overflow: hidden
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 54px;
    align-items: center
}

.eyebrow {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--secondary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em
}

.hero h1,
.section-title {
    font-size: clamp(2.2rem, 5vw, 4.8rem);
    line-height: 1.05;
    margin: 16px 0 20px;
    letter-spacing: -.04em
}

.hero p {
    font-size: 1.18rem;
    color: var(--muted);
    max-width: 62ch
}

.hero-card {
    position: relative;
    animation: float 5s ease-in-out infinite
}

.hero-card img,
.gallery-main img,
.card img,
.detail-hero img {
    width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    object-fit: cover
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px
}

.btn {
    border: 0;
    border-radius: 999px;
    padding: 13px 20px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .25s ease;
    min-height: 48px
}

.btn-primary {
    background: var(--primary);
    color: #fff
}

.btn-secondary {
    background: var(--secondary);
    color: #fff
}

.btn-ghost {
    background: #fff;
    color: var(--primary);
    border: 1px solid var(--line)
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 94, 208, .18)
}

.section {
    padding: 76px 0
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 24px;
    margin-bottom: 34px
}

.section-head p {
    color: var(--muted);
    max-width: 62ch
}

.section-title {
    font-size: clamp(2rem, 3vw, 3.2rem);
    margin: 0
}

.product-title {
    color: var(--primary)
}

.grid {
    display: grid;
    gap: 24px
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr)
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr)
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(2, 32, 71, .06);
    transition: .25s ease
}

.card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow)
}

.card-body {
    padding: 24px
}

.card h2,
.card h3 {
    margin: 0 0 10px
}

.card p {
    color: var(--muted)
}

.features {
    padding: 0;
    margin: 18px 0;
    list-style: none
}

.features li {
    display: flex;
    gap: 9px;
    margin: 8px 0
}

.features li::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 900
}

.split {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 36px;
    align-items: start
}

.panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 12px 30px rgba(2, 32, 71, .06)
}

.soft {
    background: var(--soft)
}

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

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

label {
    font-weight: 800;
    display: block;
    margin-bottom: 7px
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #cfdbe5;
    border-radius: 14px;
    padding: 13px 14px;
    font: inherit;
    background: #fff
}

input:focus,
select:focus,
textarea:focus {
    outline: 3px solid rgba(0, 94, 208, .16);
    border-color: var(--primary)
}

.notice {
    border-radius: 16px;
    padding: 14px 16px;
    margin-bottom: 20px
}

.notice.success {
    background: #eafff4;
    border: 1px solid #8de0b8
}

.notice.error {
    background: #fff1f1;
    border: 1px solid #ffb8b8
}

.category-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.category-card {
    position: relative;
    min-height: 240px;
    border-radius: var(--radius);
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: end;
    padding: 24px;
    text-decoration: none
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transition: .35s ease
}

.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .74), rgba(0, 0, 0, .12));
    z-index: 1
}

.category-card div {
    position: relative;
    z-index: 2
}

.category-card:hover img {
    transform: scale(1.06)
}

.detail-hero {
    padding: 54px 0;
    background: linear-gradient(135deg, #f4fbff, #effff7)
}

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

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 14px
}

.gallery-thumbs img {
    width: 100%;
    border-radius: 14px;
    aspect-ratio: 4/3;
    object-fit: cover
}

.content-block {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 24px
}

.content-block table {
    width: 100%;
    border-collapse: collapse
}

.content-block th,
.content-block td {
    text-align: left;
    border-bottom: 1px solid var(--line);
    padding: 12px;
    vertical-align: top
}

.content-block th {
    width: 32%;
    color: var(--primary)
}

.site-footer {
    background: #050a12;
    color: #d9e1ea;
    padding: 54px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 28px
}

.footer-logo {
    height: 54px;
    width: auto;
    
    border-radius: 12px;
    padding: 5px
}

.site-footer h2 {
    color: #fff;
    font-size: 1.05rem
}

.site-footer a {
    color: #d9e1ea;
    text-decoration: none
}

.site-footer a:hover {
    color: var(--secondary)
}

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

.site-footer li {
    margin: 10px 0
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #1b2533;
    margin-top: 36px;
    padding: 18px
}

.scroll-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 0;
    background: var(--primary);
    color: #fff;
    font-size: 20px;
    box-shadow: var(--shadow);
    display: none
}

.scroll-top.visible {
    display: block
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: .6s ease
}

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

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important
    }
}

@media (max-width:980px) {

    .hero-grid,
    .split,
    .detail-grid {
        grid-template-columns: 1fr
    }

    .grid-3,
    .grid-4,
    .category-band,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width:720px) {
    .menu-toggle {
        display: block
    }

    .nav {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 78px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 18px;
        padding: 14px;
        box-shadow: var(--shadow);
        display: none;
        flex-direction: column;
        align-items: stretch
    }

    .nav.open {
        display: flex
    }

    .nav-link,
    .nav-cta {
        justify-content: center
    }

    .hero {
        padding: 56px 0
    }

    .section {
        padding: 54px 0
    }

    .section-head {
        display: block
    }

    .grid-3,
    .grid-4,
    .category-band,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr
    }

    .brand img {
        height: 44px
    }

    .header-inner {
        min-height: 68px
    }

    .content-block th,
    .content-block td {
        display: block;
        width: 100%
    }
}

.section-head.centered {
    justify-content: center;
    text-align: center
}

.section-head.centered p {
    margin-inline: auto
}

.action-panel {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fff, #f6fbff)
}

.action-panel::after {
    content: '';
    position: absolute;
    right: -34px;
    top: -34px;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: rgba(0, 176, 105, .09)
}

.icon-badge {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 18px;
    box-shadow: 0 12px 26px rgba(2, 32, 71, .12);
    transition: .25s ease
}

.icon-badge.primary {
    background: var(--primary)
}

.icon-badge.secondary {
    background: var(--secondary)
}

.icon-badge.dark {
    background: var(--ink)
}

.action-panel:hover .icon-badge {
    transform: scale(1.12) rotate(-4deg)
}

.service-tile {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    box-shadow: 0 12px 30px rgba(2, 32, 71, .06);
    transition: .25s ease
}

.service-tile:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow);
    border-color: rgba(0, 94, 208, .28)
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, #eef6ff, #eafff4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 18px;
    transition: .25s ease
}

.service-tile:hover .service-icon {
    transform: scale(1.12)
}

.service-tile h3 {
    margin: 0 0 10px
}

.service-tile p {
    color: var(--muted);
    margin: 0 0 16px
}

.service-tile a {
    font-weight: 800;
    color: var(--primary);
    text-decoration: none
}

.service-tile a:hover {
    color: var(--secondary)
}

/* Alignment refinements requested for services and products */
.card {
    display: flex;
    flex-direction: column;
    height: 100%
}

.card>a:first-child {
    display: block
}

.card>a:first-child img,
.card>img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover
}

.card-body {
    display: flex;
    flex-direction: column;
    flex: 1
}

.equal-card-body {
    min-height: 280px
}

.btn-align-bottom {
    margin-top: auto;
    align-self: center
}

.service-list-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: linear-gradient(135deg, #eef6ff, #eafff4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    margin-bottom: 16px
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding-top: 8px
}

.btn-view-details {
    align-self: center;
    min-width: 170px;
    text-align: center
}

.product-inquiry-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    width: 100%
}

.whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid currentColor;
    font-weight: 900;
    font-size: .9rem;
    line-height: 1;
    transform: rotate(-20deg)
}

@media (max-width:480px) {
    .product-inquiry-row {
        grid-template-columns: 1fr
    }

    .btn-view-details {
        width: 100%
    }
}

.whatsapp-icon {
    width: 21px;
    height: 21px;
    border: 0;
    border-radius: 0;
    transform: none;
    flex: 0 0 auto
}

/* Service image integration */
.service-tile {
    display: flex;
    flex-direction: column;
    min-height: 100%
}

.service-tile-image {
    width: 100%;
    height: 150px;
    object-fit: contain;
    background: linear-gradient(135deg, #f7fbff, #f2fff8);
    border-radius: 18px;
    padding: 0px;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 94, 208, .08)
}

.service-list-card>img {
    height: 190px;
    object-fit: contain;
    background: linear-gradient(135deg, #f7fbff, #f2fff8);
    padding: 18px
}

.detail-grid>img {
    object-fit: contain;
    background: #fff;
    padding: 20px;
    border: 1px solid var(--line)
}

@media(max-width:640px) {
    .service-tile-image {
        height: 130px
    }

    .service-list-card>img {
        height: 165px
    }
}

/* Product category image integration */
.product-category-header {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 28px;
    align-items: center;
    margin-bottom: 34px;
    background: linear-gradient(135deg, #fff, #f6fbff);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 12px 30px rgba(2, 32, 71, .06)
}

.product-category-visual {
    background: linear-gradient(135deg, #f7fbff, #f2fff8);
    border: 1px solid rgba(0, 94, 208, .08);
    border-radius: 18px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 190px;
    overflow: hidden
}

.product-category-visual img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 12px 18px rgba(2, 32, 71, .10))
}

.product-category-header p {
    color: var(--muted);
    max-width: 72ch;
    margin-bottom: 0
}

.product-category-header .section-title {
    margin: 8px 0 12px
}

.category-card img {
    object-fit: contain;
    background: linear-gradient(135deg, #f7fbff, #f2fff8);
    padding: 20px
}

.category-card::after {
    background: linear-gradient(to top, rgba(0, 37, 84, .82), rgba(0, 94, 208, .10))
}

.product-category-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    margin-bottom: 8px;
    padding: 8px 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(2, 32, 71, .08);
    font-weight: 800;
    color: var(--primary)
}

.product-category-pill img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    border-radius: 50%;
    background: linear-gradient(135deg, #f7fbff, #f2fff8);
    padding: 4px;
    box-shadow: none
}

@media(max-width:820px) {
    .product-category-header {
        grid-template-columns: 1fr
    }

    .product-category-visual img {
        height: 160px
    }

    .product-category-visual {
        min-height: 170px
    }
}


/* Fix home services reveal and product detail presentation */
.detail-sections-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: start
}

.detail-sections-grid .content-block h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
    font-size: 1.2rem;
    color: var(--primary)
}

.section-heading-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: linear-gradient(135deg, #eef6ff, #eafff4);
    font-size: 1.15rem;
    flex: 0 0 auto
}

.product-detail-path {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px
}

.category-link-card {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary);
    font-weight: 800;
    font-size: 1rem;
    background: transparent;
    padding: 0;
    border: 0;
    box-shadow: none
}

.category-link-card img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none
}

.page-path-label {
    color: var(--secondary);
    letter-spacing: .08em;
    font-size: .9rem
}

.crumb-sep {
    font-size: 1.15rem;
    color: var(--muted);
    font-weight: 800
}

.product-category-pill {
    display: none
}

.product-category-visual {
    background: transparent;
    border-color: transparent;
    padding: 0;
    min-height: auto
}

.product-category-visual img {
    padding: 0
}

.product-category-header {
    background: linear-gradient(135deg, #fff, #f6fbff)
}

.category-card {
    min-height: 250px
}

.category-card img {
    object-fit: contain;
    background: transparent;
    padding: 16px
}

.category-card h3,
.category-card p {
    color: #fff
}

@media (max-width:980px) {
    .detail-sections-grid {
        grid-template-columns: 1fr
    }
}


/* User-requested product category image sizing */
.product-category-visual {
    padding: 0;
    background: transparent;
    border-color: transparent
}

.product-category-visual img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    padding: 0;
    display: block;
    border-radius: 18px;
    filter: drop-shadow(0 12px 18px rgba(2, 32, 71, .10))
}

.product-card-visual,
.card>a:first-child img,
.card>img {
    background: #fff;
    object-fit: contain;
    padding: 14px
}

.card>a:first-child img,
.card>img {
    height: 220px
}

.gallery-main img {
    object-fit: contain;
    background: #fff;
    padding: 18px
}

.service-tile {
    opacity: 1;
    transform: none
}