
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Poppins:wght@500;600&display=swap');

.hz-logging-wrapper,
.hz-logging-wrapper * {
    box-sizing: border-box;
}

.hz-logging-wrapper {
    --hz-orange: #ec682e;
    --hz-orange-dark: #d3541c;
    --hz-blue-dark: #002B49;
    --hz-blue-mask: rgba(0, 43, 73, 0.62);
    --text-main: #333333;
    --text-sub: #666666;
    --border-line: #e6e6e6;
    --bg-gray: #f4f6f9;
    --card-bg: #ffffff;

    width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    color: var(--text-main);
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

.hz-logging-wrapper a {
    text-decoration: none !important;
}

.hz-logging-wrapper h1,
.hz-logging-wrapper h2,
.hz-logging-wrapper h3,
.hz-logging-wrapper p {
    margin: 0;
}

.hz-logging-wrapper img {
    display: block;
    width: 100%;
}

.hz-logging-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero */
.hz-logging-hero {
    position: relative;
    padding: 160px 20px 220px;
    text-align: center;
    color: #ffffff;
    background:
        linear-gradient(var(--hz-blue-mask), rgba(0, 26, 44, 0.74)),
        url('//ueeshop.ly200-cdn.com/u_file/UPBH/UPBH596/2602/11/photo/WellLogging1.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hz-logging-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.45;
    pointer-events: none;
}

.hz-logging-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 880px;
    margin: 0 auto;
}

.hz-logging-hero-tag {
    display: block;
    margin-bottom: 20px;
    color: var(--hz-orange);
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hz-logging-hero-title {
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 52px;
    line-height: 1.12;
    font-weight: 500;
}

.hz-logging-hero-desc {
    max-width: 820px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.75;
}

/* Floating System Card */
.hz-logging-system-container {
    max-width: 1200px;
    margin: -120px auto 0;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.hz-logging-system-card {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 50px;
    overflow: hidden;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.hz-logging-system-img {
    flex: 1.1;
    min-width: 0;
}

.hz-logging-system-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: contain;
}

.hz-logging-system-content {
    flex: 1;
}

.hz-logging-section-title {
    margin-bottom: 20px;
    color: var(--hz-blue-dark);
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 34px;
    line-height: 1.25;
    font-weight: 500;
}

.hz-logging-text {
    color: var(--text-sub);
    font-size: 15.5px;
    line-height: 1.75;
}

.hz-logging-check-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.hz-logging-check-item {
    display: flex;
    align-items: flex-start;
    color: var(--text-sub);
    font-size: 14px;
}

.hz-logging-check-item::before {
    content: "✔";
    margin-right: 10px;
    color: var(--hz-orange);
    font-weight: 700;
}

/* Tools */
.hz-logging-tools-section {
    padding: 120px 20px 86px;
    background-color: var(--bg-gray);
}

.hz-logging-section-head {
    max-width: 820px;
    margin: 0 auto 58px;
    text-align: center;
}

.hz-logging-section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--hz-orange);
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.hz-logging-section-desc {
    color: var(--text-sub);
    font-size: 16px;
    line-height: 1.75;
}

.hz-logging-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.hz-logging-tool-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid var(--border-line);
    background: #ffffff;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hz-logging-tool-card:hover {
    transform: translateY(-6px);
    border-color: var(--hz-orange);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.hz-logging-tool-img {
    width: 100%;
    height: 210px;
    overflow: hidden;
    background: #eef2f6;
}

.hz-logging-tool-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.hz-logging-tool-card:hover .hz-logging-tool-img img {
    transform: scale(1.05);
}

.hz-logging-tool-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 25px;
}

.hz-logging-tool-cat {
    margin-bottom: 8px;
    color: var(--hz-orange);
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.hz-logging-tool-title {
    min-height: 50px;
    margin-bottom: 12px;
    color: var(--hz-blue-dark);
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 19px;
    line-height: 1.32;
    font-weight: 500;
}

.hz-logging-tool-desc {
    flex: 1;
    margin-bottom: 16px;
    color: var(--text-sub);
    font-size: 14px;
    line-height: 1.65;
}

.hz-logging-param-box {
    margin-bottom: 20px;
    padding: 12px;
    border-radius: 4px;
    border-left: 2px solid var(--hz-orange);
    background: #f9f9f9;
}

.hz-logging-param-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 5px;
    margin-bottom: 6px;
    border-bottom: 1px solid #eeeeee;
    font-size: 13px;
}

.hz-logging-param-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.hz-logging-param-label {
    color: var(--text-sub);
}

.hz-logging-param-val {
    color: var(--hz-blue-dark);
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 600;
    text-align: right;
}

.hz-logging-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 42px;
    padding: 0 24px;
    border-radius: 4px;
    border: 1px solid var(--hz-orange);
    background-color: var(--hz-orange);
    color: #ffffff !important;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hz-logging-btn:hover {
    background-color: var(--hz-orange-dark);
    transform: translateY(-2px);
}

/* Applications */
.hz-logging-app-section {
    padding: 86px 20px;
    background: #ffffff;
}

.hz-logging-app-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.hz-logging-app-card {
    padding: 26px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid var(--border-line);
    box-shadow: 0 10px 26px rgba(0,0,0,0.035);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.hz-logging-app-card:hover {
    transform: translateY(-5px);
    border-color: var(--hz-orange);
}

.hz-logging-app-num {
    display: block;
    margin-bottom: 14px;
    color: var(--hz-orange);
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
}

.hz-logging-app-card h3 {
    margin-bottom: 10px;
    color: var(--hz-blue-dark);
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 500;
}

.hz-logging-app-card p {
    color: var(--text-sub);
    font-size: 14px;
    line-height: 1.65;
}

/* FAQ */
.hz-logging-faq-section {
    padding: 86px 20px;
    background: var(--bg-gray);
}

.hz-logging-faq-list {
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.hz-logging-faq-item {
    padding: 26px 30px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid var(--border-line);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.hz-logging-faq-item:hover {
    transform: translateY(-4px);
    border-color: var(--hz-orange);
}

.hz-logging-faq-item h3 {
    margin-bottom: 10px;
    color: var(--hz-blue-dark);
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 500;
}

.hz-logging-faq-item p {
    color: var(--text-sub);
    font-size: 15px;
    line-height: 1.75;
}

/* CTA */
.hz-logging-cta {
    padding: 82px 20px 96px;
    background:
        linear-gradient(rgba(0, 43, 73, 0.92), rgba(0, 26, 44, 0.94)),
        url('//ueeshop.ly200-cdn.com/u_file/UPBH/UPBH596/2602/11/photo/WellLogging1.png');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #ffffff;
}

.hz-logging-cta-inner {
    max-width: 820px;
    margin: 0 auto;
}

.hz-logging-cta h2 {
    margin-bottom: 16px;
    color: #ffffff;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 40px;
    line-height: 1.22;
    font-weight: 500;
}

.hz-logging-cta p {
    margin-bottom: 28px;
    color: rgba(255,255,255,0.86);
    font-size: 16px;
    line-height: 1.8;
}

@media screen and (max-width: 1024px) {
    .hz-logging-system-card {
        padding: 34px;
        gap: 34px;
    }

    .hz-logging-tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hz-logging-app-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 900px) {
    .hz-logging-hero {
        padding: 104px 20px 150px;
    }

    .hz-logging-hero-title {
        font-size: 34px;
    }

    .hz-logging-hero-desc {
        font-size: 16px;
    }

    .hz-logging-system-container {
        margin-top: -96px;
    }

    .hz-logging-system-card {
        flex-direction: column;
        padding: 28px 22px;
    }

    .hz-logging-check-list {
        grid-template-columns: 1fr;
    }

    .hz-logging-tools-section {
        padding-top: 82px;
    }

    .hz-logging-tools-grid,
    .hz-logging-app-grid {
        grid-template-columns: 1fr;
    }

    .hz-logging-section-title {
        font-size: 28px;
    }

    .hz-logging-cta h2 {
        font-size: 30px;
    }
}
