:root {
    --sampangan-navy: #233A67;
    --sampangan-navy-dark: #1A2C4F;
    --sampangan-yellow: #FAD12C;
    --sampangan-text: #1E1E1E;
    --sampangan-text-muted: #5C6B82;
    --sampangan-card-border: #E4E8F0;
    --sampangan-page-bg: #F6F7FB;
    --sampangan-section-bg: #F8F8F6;
    --sampangan-font: 'Inter', 'Open Sans', sans-serif;
    --sampangan-focus: #1A56DB;
    --wt-radius-lg: 28px;
    --wt-radius-md: 20px;
    --wt-shadow-sm: 0 2px 12px rgba(35, 58, 103, 0.06);
    --wt-shadow-md: 0 18px 44px rgba(35, 58, 103, 0.10);
    --wt-shadow-lg: 0 28px 64px rgba(26, 44, 79, 0.18);
    --wt-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.wt-page {
    background: var(--sampangan-page-bg);
    font-family: var(--sampangan-font);
    color: var(--sampangan-text);
    padding-bottom: 0;
}

/* For accessibility */
.wt-skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 1000;
    padding: 12px 20px;
    background: var(--sampangan-navy);
    color: #FFFFFF;
    font-family: var(--sampangan-font);
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 8px 0;
}

.wt-skip-link:focus-visible {
    left: 0;
}

.wt-page a:focus-visible,
.wt-page button:focus-visible,
.wt-skip-link:focus-visible {
    outline: 3px solid var(--sampangan-focus);
    outline-offset: 3px;
}

.wt-page #main-content:focus,
#main-content:focus {
    outline: none;
}

.wt-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* Hero Section */

.wt-hero {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(100deg, rgba(26, 44, 79, 0.24) 0%, rgba(35, 58, 103, 0.82) 48%, rgba(35, 58, 103, 0.52) 100%),
        url('/images/applicationIMG/poultry-livestock.avif') center / cover no-repeat,
        var(--sampangan-navy-dark);
}

.wt-hero-inner {
    width: min(1200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 72px 0 104px;
}

.wt-hero-top {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 22px;
}

.wt-hero-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
}

.wt-hero-divider {
    flex: 0 1 420px;
    height: 1px;
    background: rgba(255, 255, 255, 0.45);
}

.wt-hero-title {
    margin: 0;
    max-width: 16ch;
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: #FFFFFF;
}

.wt-hero-lead {
    margin: 20px 0 0;
    max-width: 58ch;
    font-size: clamp(16px, 1.6vw, 18px);
    font-weight: 400;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.86);
}

.wt-panel {
    display: flex;
    align-items: center;
    gap: clamp(32px, 5vw, 64px);
    width: min(1200px, calc(100% - 48px));
    margin: 48px auto;
    padding: clamp(28px, 4vw, 56px);
    background: #FFFFFF;
    border: 1px solid var(--sampangan-card-border);
    border-radius: var(--wt-radius-lg);
    box-shadow: var(--wt-shadow-sm);
    transition: transform 0.3s var(--wt-ease), box-shadow 0.3s var(--wt-ease);
}

.wt-panel:hover {
    transform: translateY(-4px);
    box-shadow: var(--wt-shadow-md);
}

.wt-panel--first {
    position: relative;
    z-index: 2;
    margin-top: -64px;
    box-shadow: var(--wt-shadow-md);
}

.wt-panel-text {
    flex: 1 1 0;
    min-width: 300px;
}

.wt-panel-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sampangan-text-muted);
}

.wt-panel-eyebrow::before {
    content: '';
    flex: 0 0 auto;
    width: 28px;
    height: 3px;
    border-radius: 2px;
    background: var(--sampangan-yellow);
}

.wt-panel-heading {
    margin-bottom: 18px;
}

.wt-panel-heading h2 {
    margin: 0;
    font-size: clamp(24px, 2.6vw, 30px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--sampangan-navy);
}

.wt-panel-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: var(--sampangan-text);
}

.wt-panel-text h3,
.wt-subheading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 24px 0 10px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--sampangan-navy);
}

.wt-panel-text h3::before,
.wt-subheading::before {
    content: '';
    flex: 0 0 auto;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--sampangan-yellow);
    box-shadow: 0 0 0 4px rgba(250, 209, 44, 0.22);
}

.wt-panel-image {
    flex: 0 0 42%;
    max-width: 470px;
    border-radius: var(--wt-radius-md);
    overflow: hidden;
    box-shadow: var(--wt-shadow-md);
}

.wt-panel-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

/* Panel image gallery — auto-advances with a peek of the next photo.
   Only activates when a panel holds more than one image. */
.wt-gallery {
    position: relative;
}

.wt-gallery-track {
    display: flex;
    align-items: stretch;
    gap: 14px;
    will-change: transform;
    transition: transform 0.55s var(--wt-ease);
}

.wt-gallery-track--instant {
    transition: none;
}

.wt-gallery-slide {
    flex: 0 0 calc(100% - 72px);
    min-width: 0;
}

.wt-panel-image .wt-gallery-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.wt-gallery-dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    padding: 6px 10px;
    background: rgba(26, 44, 79, 0.45);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.wt-gallery-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    transition: width 0.3s var(--wt-ease), background 0.3s var(--wt-ease);
}

.wt-gallery-dot:hover {
    background: rgba(255, 255, 255, 0.85);
}

.wt-gallery-dot.is-active {
    width: 20px;
    background: var(--sampangan-yellow);
}

/* Headers for sections */

.wt-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sampangan-text-muted);
}

.wt-section-title {
    margin: 0;
    font-size: clamp(28px, 3.4vw, 38px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--sampangan-navy);
    text-align: center;
}

.wt-section-sub {
    margin: 14px 0 0;
    max-width: 60ch;
    font-size: 16px;
    line-height: 1.6;
    color: var(--sampangan-text-muted);
}

.wt-products {
    padding: 80px 24px 88px;
    text-align: center;
}

.wt-products .wt-section-kicker {
    justify-content: center;
}

.wt-products .wt-section-sub {
    margin-left: auto;
    margin-right: auto;
}

.wt-products-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(24px, 4vw, 40px);
    width: min(920px, 100%);
    margin: 48px auto 0;
    text-align: left;
}

.wt-products-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(1200px, 100%);
}

.wt-product-card {
    display: flex;
    flex-direction: column;
    padding: 28px;
    background: #FFFFFF;
    border: 1px solid var(--sampangan-card-border);
    border-radius: var(--wt-radius-lg);
    box-shadow: var(--wt-shadow-sm);
    transition: transform 0.3s var(--wt-ease), box-shadow 0.3s var(--wt-ease);
}

.wt-product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--wt-shadow-md);
}

.wt-product-image {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(319deg, #ffffff 0%, #EAEFF8 100%);
    
    border-radius: var(--wt-radius-md);
    overflow: hidden;
}

.wt-product-image img {
    max-width: 86%;
    max-height: 86%;
    object-fit: contain;
    transition: transform 0.5s var(--wt-ease);
}

.wt-product-card:hover .wt-product-image img {
    transform: scale(1.05);
}

.wt-product-card h3 {
    margin: 24px 0 14px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: var(--sampangan-navy);
}

.wt-product-points {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.wt-product-points li {
    position: relative;
    padding-left: 34px;
    font-size: 15.5px;
    line-height: 1.55;
    color: var(--sampangan-text);
}

/* keeps SVG out of the stylesheet */
.wt-product-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--sampangan-navy);
}

.wt-product-points li::after {
    content: '';
    position: absolute;
    /* centres the check in the 22px navy circle (circle centre: 11px, 12px);
       the rotated check shape hangs low, so its box sits a touch above centre */
    left: 11px;
    top: 10px;
    width: 5px;
    height: 9px;
    border-right: 2px solid var(--sampangan-yellow);
    border-bottom: 2px solid var(--sampangan-yellow);
    transform: translate(-50%, -50%) rotate(45deg);
}

.wt-pricing-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
    padding: 14px 34px;
    background: var(--sampangan-navy);
    border: 2px solid var(--sampangan-navy);
    border-radius: 999px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
    color: #FFFFFF;
    text-decoration: none;
    transition: background 0.25s var(--wt-ease), border-color 0.25s var(--wt-ease),
        transform 0.25s var(--wt-ease), box-shadow 0.25s var(--wt-ease);
}

.wt-pricing-btn::after {
    content: '\2192';
    font-weight: 700;
    transition: transform 0.25s var(--wt-ease);
}

.wt-pricing-btn:hover,
.wt-pricing-btn:focus-visible {
    background: var(--sampangan-navy-dark);
    border-color: var(--sampangan-navy-dark);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: var(--wt-shadow-md);
}

.wt-pricing-btn:hover::after,
.wt-pricing-btn:focus-visible::after {
    transform: translateX(4px);
}

/* services carousel */
.wt-services {
    padding: 80px 24px 88px;
    background: var(--sampangan-section-bg);
    border-top: 1px solid #ECEEF3;
}

.wt-services-head {
    position: relative;
    width: min(1200px, 100%);
    margin: 0 auto 40px;
    text-align: center;
}

.wt-services-head .wt-section-sub {
    margin-left: auto;
    margin-right: auto;
}

.wt-services-head .wt-carousel-arrows {
    position: absolute;
    right: 0;
    bottom: 0;
}

.wt-carousel-arrows {
    display: flex;
    flex: 0 0 auto;
    gap: 12px;
}

.wt-carousel-arrow {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1.5px solid var(--sampangan-navy);
    border-radius: 50%;
    background: #FFFFFF;
    color: var(--sampangan-navy);
    cursor: pointer;
    transition: background 0.25s var(--wt-ease), color 0.25s var(--wt-ease),
        transform 0.25s var(--wt-ease), box-shadow 0.25s var(--wt-ease),
        opacity 0.25s var(--wt-ease);
}

.wt-carousel-arrow svg {
    width: 20px;
    height: 20px;
    display: block;
}

.wt-carousel-arrow:hover:not(:disabled),
.wt-carousel-arrow:focus-visible:not(:disabled) {
    background: var(--sampangan-navy);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: var(--wt-shadow-md);
}

.wt-carousel-arrow:disabled {
    opacity: 0.3;
    cursor: default;
}

.wt-carousel-viewport {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 6px 2px 12px;
    overflow: hidden;
    touch-action: pan-y;
    cursor: grab;
}

.wt-carousel-viewport.wt-dragging {
    cursor: grabbing;
    -webkit-user-select: none;
    user-select: none;
}

.wt-carousel-viewport.wt-dragging .wt-service-card {
    pointer-events: none;
}

/* the track is the container that contains the "other" service cards */
.wt-carousel-track {
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
    will-change: transform;
}

/* Exactly 3 cards per view on desktop */
.wt-carousel-item {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 0;
}

.wt-service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #FFFFFF;
    border: 1px solid var(--sampangan-card-border);
    border-radius: var(--wt-radius-lg);
    overflow: hidden;
    text-decoration: none;
    box-shadow: var(--wt-shadow-sm);
    transition: transform 0.3s var(--wt-ease), box-shadow 0.3s var(--wt-ease);
}

.wt-service-card:hover,
.wt-service-card:focus-visible {
    transform: translateY(-6px);
    box-shadow: var(--wt-shadow-md);
}

.wt-service-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.wt-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--wt-ease);
}

.wt-service-card:hover .wt-service-image img,
.wt-service-card:focus-visible .wt-service-image img {
    transform: scale(1.06);
}

.wt-service-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 8px;
    padding: 20px 22px 22px;
}

.wt-service-body h3 {
    margin: 0;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.25;
    color: var(--sampangan-navy);
}

.wt-service-body p {
    flex: 1 0 auto;
    margin: 0;
    font-size: 14.5px;
    line-height: 1.55;
    color: var(--sampangan-text-muted);
}

.wt-service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--sampangan-navy);
}

.wt-service-link svg {
    width: 16px;
    height: 16px;
    display: block;
    transition: transform 0.25s var(--wt-ease);
}

.wt-service-card:hover .wt-service-link svg,
.wt-service-card:focus-visible .wt-service-link svg {
    transform: translateX(4px);
}

.wt-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.wt-carousel-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: #C6CEDC;
    cursor: pointer;
    transition: width 0.3s var(--wt-ease), background 0.3s var(--wt-ease);
}

.wt-carousel-dot:hover {
    background: #9AA7BF;
}

.wt-carousel-dot.is-active {
    width: 26px;
    background: var(--sampangan-navy);
}

.wt-cta {
    background:
        linear-gradient(120deg, rgba(26, 44, 79, 0.85) 0%, rgba(35, 58, 103, 0.3) 100%),
        url('/images/homepageIMG/CU-BGimg.jpg') center / cover no-repeat,
        var(--sampangan-navy-dark);
    padding: 72px 24px;
}

.wt-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    width: min(1200px, 100%);
    margin: 0 auto;
}

.wt-cta h2 {
    margin: 0;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #FFFFFF;
}

.wt-cta p {
    margin: 12px 0 0;
    max-width: 54ch;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}

.wt-cta-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 34px;
    background: var(--sampangan-yellow);
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--sampangan-navy-dark);
    text-decoration: none;
    transition: background 0.25s var(--wt-ease), transform 0.25s var(--wt-ease),
        box-shadow 0.25s var(--wt-ease);
}

.wt-cta-btn::after {
    content: '\2192';
    transition: transform 0.25s var(--wt-ease);
}

.wt-cta-btn:hover,
.wt-cta-btn:focus-visible {
    background: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: var(--wt-shadow-lg);
}

.wt-cta-btn:hover::after,
.wt-cta-btn:focus-visible::after {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    /* 2 cards per view on tablets */
    .wt-carousel-item {
        flex-basis: calc((100% - 24px) / 2);
    }
}

@media (max-width: 900px) {
    .wt-hero {
        min-height: 380px;
    }

    .wt-hero-inner {
        padding: 56px 0 88px;
    }

    .wt-panel,
    .wt-panel--reverse {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
    }

    .wt-panel-image {
        order: -1;
        flex: none;
        width: 100%;
        max-width: none;
    }

    .wt-panel-image img,
    .wt-panel-image .wt-gallery-slide img {
        aspect-ratio: 16 / 9;
    }

    .wt-gallery-slide {
        flex-basis: calc(100% - 56px);
    }

    .wt-panel-text {
        min-width: 0;
        width: 100%;
    }

    .wt-products-grid,
    .wt-products-grid--three {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .wt-services-head .wt-carousel-arrows {
        position: static;
        justify-content: center;
        margin-top: 20px;
    }

    .wt-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .wt-hero {
        min-height: 320px;
    }

    .wt-hero-inner {
        padding: 44px 0 80px;
        width: calc(100% - 32px);
    }

    .wt-hero-divider {
        flex-basis: 120px;
    }

    .wt-panel {
        width: calc(100% - 32px);
        margin: 32px auto;
        padding: 24px 20px;
    }

    .wt-panel--first {
        margin-top: -48px;
    }

    .wt-products {
        padding: 56px 16px 64px;
    }

    .wt-product-image {
        height: 190px;
    }

    .wt-services {
        padding: 56px 16px 64px;
    }

    .wt-carousel-arrow {
        width: 44px;
        height: 44px;
    }

    .wt-gallery-slide {
        flex-basis: calc(100% - 40px);
    }

    .wt-gallery-track {
        gap: 10px;
    }

    /* 1 card per view on phones */
    .wt-carousel-item {
        flex-basis: 100%;
    }

    .wt-cta {
        padding: 56px 20px;
    }

    .wt-cta-btn {
        width: 100%;
        justify-content: center;
    }
}



