/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
    --primary:        #bc1c2b;
    --primary-dark:   #9a1522;
    --primary-light:  #d4253a;
    --primary-rgb:    188, 28, 43;

    --dark:           #111111;
    --dark-2:         #1a1a1a;
    --dark-3:         #222222;
    --gray:           #444444;
    --gray-light:     #777777;
    --light:          #f8f8f8;
    --white:          #ffffff;

    --font:           'Outfit', sans-serif;

    --ease:           cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --trans:          all 0.4s var(--ease);
    --trans-fast:     all 0.25s ease;

    --radius:         20px;
    --radius-sm:      12px;
    --radius-xs:      8px;

    --shadow:         0 20px 60px rgba(0,0,0,.10);
    --shadow-md:      0 25px 70px rgba(0,0,0,.13);
    --shadow-heavy:   0 30px 80px rgba(0,0,0,.18);

    --section-pad:    140px;
    --container:      1280px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.75;
    color: var(--gray);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--trans-fast);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
}

.container {
    max-width: var(--container);
    padding-left: 24px;
    padding-right: 24px;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.section-padding {
    padding: var(--section-pad) 0;
}

.text-accent { color: var(--primary); }

/* Section Tag */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 18px;
}
.section-tag.light { color: var(--primary-light); }

/* Section Title */
.section-title {
    font-size: 50px;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.08;
    margin-bottom: 22px;
}

/* Section Desc */
.section-desc {
    font-size: 17px;
    line-height: 1.8;
    color: var(--gray-light);
    max-width: 580px;
    margin: 0 auto;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 38px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    border-radius: 60px;
    border: 2px solid var(--primary);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--trans);
    z-index: 1;
}

.btn-primary-custom::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--primary-dark);
    opacity: 0;
    transition: var(--trans);
    z-index: -1;
}

.btn-primary-custom:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(var(--primary-rgb), 0.4);
}

.btn-primary-custom:hover::after { opacity: 1; }

.btn-primary-custom:hover i { transform: translateX(5px); }

.btn-primary-custom i {
    font-size: 14px;
    transition: var(--trans-fast);
}

/* Large variant */
.btn-lg-custom {
    padding: 22px 52px;
    font-size: 18px;
}

/* Outline button (hero secondary) */
.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 38px;
    background: transparent;
    color: var(--white);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    border-radius: 60px;
    border: 2px solid rgba(255,255,255,.35);
    cursor: pointer;
    transition: var(--trans);
}

.btn-outline-custom:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--dark);
    transform: translateY(-3px);
}

.btn-outline-custom:hover i { transform: translateY(4px); }

.btn-outline-custom i {
    font-size: 13px;
    transition: var(--trans-fast);
}

/* ============================================================
   SECTION 1 — HERO
   ============================================================ */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Background */
.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 110%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0,0,0,.88) 0%,
        rgba(0,0,0,.65) 55%,
        rgba(var(--primary-rgb),.18) 100%
    );
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(var(--primary-rgb),.07) 0%, transparent 50%),
        radial-gradient(circle at 85% 20%, rgba(var(--primary-rgb),.05) 0%, transparent 45%);
}

/* Content */
.hero-container {
    position: relative;
    z-index: 2;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 26px;
    background: rgba(var(--primary-rgb),.12);
    border: 1px solid rgba(var(--primary-rgb),.3);
    border-radius: 60px;
    color: #f09099;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    backdrop-filter: blur(12px);
}

/* H1 */
.hero-title {
    font-size: 96px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -4px;
    line-height: .95;
    margin-bottom: 26px;
}

/* Subtitle */
.hero-subtitle {
    font-size: 19px;
    color: rgba(255,255,255,.68);
    line-height: 1.75;
    margin-bottom: 46px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons row */
.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 46px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 3;
}

.scroll-line {
    width: 2px;
    height: 52px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
    0%,100% { opacity:1; transform: scaleY(1); }
    50%      { opacity:.3; transform: scaleY(.6); }
}

.hero-scroll-indicator span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,.35);
    font-weight: 700;
}

/* Side stats */
.hero-side-stats {
    position: absolute;
    right: 52px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    z-index: 3;
}

.side-stat-item {
    text-align: center;
}

.side-stat-number {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    font-size: 38px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.side-stat-plus {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
}

.side-stat-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,.45);
    font-weight: 600;
    margin-top: 5px;
}

.side-stat-divider {
    width: 2px;
    height: 36px;
    background: rgba(255,255,255,.12);
}

/* ============================================================
   SECTION 2 — ABOUT
   ============================================================ */
.about-section {
    background: var(--white);
    overflow: hidden;
}

/* Image wrapper */
.about-img-wrapper {
    position: relative;
    padding-right: 44px;
    padding-bottom: 44px;
}

.about-img-main {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.about-img-main img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.about-img-main:hover img { transform: scale(1.05); }

/* Secondary image */
.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 230px;
    height: 230px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.about-img-secondary:hover img { transform: scale(1.08); }

/* Experience badge */
.about-exp-badge {
    position: absolute;
    top: 30px;
    right: 60px;
    width: 130px;
    height: 130px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    box-shadow: 0 10px 40px rgba(var(--primary-rgb),.4);
    animation: floatY 3.5s ease-in-out infinite;
}

@keyframes floatY {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

.about-exp-number {
    font-size: 30px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.about-exp-text {
    font-size: 10px;
    color: rgba(255,255,255,.85);
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
    margin-top: 4px;
}

/* Dot pattern */
.about-dot-pattern {
    position: absolute;
    bottom: 55px;
    left: -18px;
    width: 110px;
    height: 110px;
    background-image: radial-gradient(circle, var(--primary) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: .18;
    z-index: 1;
}

/* Content */
.about-content { padding-left: 16px; }

.about-text {
    font-size: 16.5px;
    line-height: 1.82;
    color: var(--gray-light);
    margin-bottom: 14px;
}

/* Stats row */
.about-stats-row {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 36px;
    padding-top: 34px;
    border-top: 1px solid rgba(0,0,0,.07);
}

.about-stat-item { flex: 1; }

.about-stat-number {
    font-size: 38px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.about-stat-label {
    font-size: 13px;
    color: var(--gray-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-stat-divider {
    width: 1px;
    height: 56px;
    background: rgba(0,0,0,.08);
    margin: 0 28px;
}

/* ============================================================
   SECTION 3 — SERVICES
   ============================================================ */
.services-section {
    background: var(--dark);
    overflow: hidden;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(var(--primary-rgb),.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Card */
.service-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--dark-2);
    border: 1px solid rgba(255,255,255,.055);
    height: 100%;
    transition: var(--trans);
    cursor: pointer;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--trans);
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: rgba(var(--primary-rgb),.25);
    box-shadow: 0 30px 70px rgba(0,0,0,.45);
}

.service-card:hover::after { transform: scaleX(1); }

.service-card:hover .service-card-bg {
    opacity: .09;
    transform: scale(1.1);
}

.service-card:hover .service-card-icon {
    background: var(--primary);
    color: var(--white);
}

.service-card:hover .service-card-title { color: var(--primary-light); }

.service-card:hover .service-card-link { color: var(--primary-light); }

.service-card:hover .service-card-link i { transform: translateX(5px); }

/* Background image overlay */
.service-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: var(--trans);
    z-index: 0;
}

.service-card-inner {
    position: relative;
    z-index: 1;
    padding: 48px 36px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Icon */
.service-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(var(--primary-rgb),.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 22px;
    flex-shrink: 0;
    transition: var(--trans);
}

/* Number watermark */
.service-card-num {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 54px;
    font-weight: 900;
    color: rgba(255,255,255,.03);
    line-height: 1;
    pointer-events: none;
}

.service-card-title {
    font-size: 21px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 14px;
    transition: var(--trans-fast);
}

.service-card-desc {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(255,255,255,.48);
    margin-bottom: 24px;
    flex: 1;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,.4);
    transition: var(--trans-fast);
}

.service-card-link i {
    font-size: 12px;
    transition: var(--trans-fast);
}

/* ============================================================
   SECTION 4 — WHY US
   ============================================================ */
.whyus-section {
    background: var(--light);
    overflow: hidden;
}

/* List items */
.whyus-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 36px;
}

.whyus-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 24px;
    background: var(--white);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0,0,0,.055);
    transition: var(--trans);
}

.whyus-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow);
    border-color: rgba(var(--primary-rgb),.18);
}

.whyus-item:hover .whyus-icon {
    background: var(--primary);
    color: var(--white);
}

.whyus-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: rgba(var(--primary-rgb),.1);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    transition: var(--trans);
}

.whyus-text h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
}

.whyus-text p {
    font-size: 14.5px;
    color: var(--gray-light);
    margin: 0;
    line-height: 1.65;
}

/* Image */
.whyus-img-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
}

.whyus-img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    transition: transform .8s var(--ease);
}

.whyus-img-wrapper:hover .whyus-img { transform: scale(1.04); }

/* Float card */
.whyus-float-card {
    position: absolute;
    bottom: 28px;
    left: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: rgba(17,17,17,.92);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,.08);
    z-index: 2;
}

.whyus-float-icon {
    width: 46px;
    height: 46px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--white);
    flex-shrink: 0;
}

.whyus-float-text strong {
    display: block;
    font-size: 20px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.whyus-float-text span {
    font-size: 11px;
    color: rgba(255,255,255,.55);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Accent box */
.whyus-accent-box {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    z-index: -1;
    opacity: .25;
}

/* ============================================================
   SECTION 5 — SECTORS (Image Full Cover)
   ============================================================ */
.sectors-section {
    background: var(--dark);
    overflow: hidden;
}

/* Card container */
.sector-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--trans);
    height: 320px;
    display: block;
    background: var(--dark-2);
}

.sector-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, .55);
}

/* Image wrap — FULL COVER */
.sector-img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    margin: 0;
    padding: 0;
}

.sector-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .8s var(--ease);
}

.sector-card:hover .sector-img-wrap img {
    transform: scale(1.12);
}

/* Dark overlay gradient */
.sector-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, .92) 0%,
        rgba(0, 0, 0, .65) 35%,
        rgba(0, 0, 0, .25) 70%,
        rgba(0, 0, 0, .05) 100%
    );
    transition: var(--trans);
    z-index: 2;
    pointer-events: none;
}

.sector-card:hover .sector-overlay {
    background: linear-gradient(
        to top,
        rgba(var(--primary-rgb), .92) 0%,
        rgba(var(--primary-rgb), .55) 40%,
        rgba(0, 0, 0, .2) 80%,
        rgba(0, 0, 0, .05) 100%
    );
}

/* Content overlay (icon + title) */
.sector-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 28px 24px;
    z-index: 3;
}

/* Icon with glassmorphism */
.sector-icon {
    width: 50px;
    height: 50px;
    background: rgba(var(--primary-rgb), .35);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 14px;
    transition: var(--trans);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.sector-card:hover .sector-icon {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: scale(1.08);
}

/* Title */
.sector-content h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .5);
}

/* ============================================================
   SECTORS — RESPONSIVE
   ============================================================ */

@media (max-width: 991px) {
    .sector-card {
        height: 280px;
    }

    .sector-content {
        padding: 22px 20px;
    }

    .sector-icon {
        width: 46px;
        height: 46px;
        font-size: 18px;
        margin-bottom: 12px;
    }

    .sector-content h4 {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .sector-card {
        height: 240px;
    }

    .sector-content {
        padding: 20px 18px;
    }

    .sector-icon {
        width: 42px;
        height: 42px;
        font-size: 17px;
        margin-bottom: 10px;
    }

    .sector-content h4 {
        font-size: 15px;
        line-height: 1.25;
    }
}

@media (max-width: 480px) {
    .sector-card {
        height: 210px;
    }

    .sector-content {
        padding: 16px 14px;
    }

    .sector-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
        margin-bottom: 8px;
    }

    .sector-content h4 {
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .sector-card {
        height: 190px;
    }
}

/* ============================================================
   SECTION 6 — WORKFLOW (4 Grid)
   ============================================================ */
.workflow-section {
    background: var(--white);
    overflow: hidden;
    position: relative;
}

/* ---- Custom 4-Column Grid ---- */
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.workflow-grid-item {
    position: relative;
    display: flex;
    align-items: stretch;
}

/* ---- Card ---- */
.workflow-card {
    position: relative;
    text-align: center;
    padding: 44px 26px 38px;
    background: var(--light);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, .055);
    width: 100%;
    transition: var(--trans);
    overflow: hidden;
    z-index: 2;
}

.workflow-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(var(--primary-rgb), .2);
}

.workflow-card:hover .workflow-icon-circle {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.workflow-card:hover .workflow-step-num {
    opacity: .08;
    color: var(--primary);
}

.workflow-card:hover .workflow-card-title {
    color: var(--primary);
}

/* ---- Step Number Watermark ---- */
.workflow-step-num {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 60px;
    font-weight: 900;
    color: var(--dark);
    opacity: .04;
    line-height: 1;
    pointer-events: none;
    transition: var(--trans);
}

/* ---- Icon Circle ---- */
.workflow-icon-circle {
    width: 74px;
    height: 74px;
    background: rgba(var(--primary-rgb), .1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 27px;
    color: var(--primary);
    margin: 0 auto 22px;
    transition: var(--trans);
    position: relative;
    z-index: 1;
}

/* ---- Title ---- */
.workflow-card-title {
    font-size: 19px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
    transition: var(--trans-fast);
    line-height: 1.25;
}

/* ---- Description ---- */
.workflow-card-desc {
    font-size: 14px;
    line-height: 1.75;
    color: var(--gray-light);
    margin: 0;
}

/* ============================================================
   CONNECTOR — Arrow Between Cards (Desktop Only)
   ============================================================ */
.workflow-connector {
    display: none;
}

@media (min-width: 992px) {
    .workflow-grid {
        gap: 0;
    }

    .workflow-grid-item {
        padding: 0 12px;
    }

    .workflow-connector {
        display: flex;
        align-items: center;
        position: absolute;
        right: -8px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 3;
        width: 16px;
        flex-direction: column;
    }

    .connector-line {
        width: 100%;
        height: 2px;
        background: linear-gradient(
            to right,
            rgba(var(--primary-rgb), .15),
            rgba(var(--primary-rgb), .35)
        );
        position: relative;
    }

    .connector-dot {
        width: 12px;
        height: 12px;
        background: var(--primary);
        border-radius: 50%;
        position: absolute;
        right: -6px;
        top: 50%;
        transform: translateY(-50%);
        box-shadow: 0 0 0 4px rgba(var(--primary-rgb), .15);
        z-index: 4;
    }

    /* Hide connector on last item */
    .workflow-grid-item-last .workflow-connector {
        display: none;
    }
}

/* ---- Alternative: Use arrow icon instead of dot ---- */
/* Uncomment below and comment above connector styles if preferred */
/*
@media (min-width: 992px) {
    .workflow-connector {
        display: flex;
        position: absolute;
        right: -18px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 3;
        width: 36px;
        height: 36px;
        background: var(--white);
        border: 2px solid rgba(0,0,0,.07);
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        font-size: 13px;
    }

    .connector-line,
    .connector-dot { display: none; }

    .workflow-connector::after {
        content: '\f061';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
    }
}
*/

/* ============================================================
   WORKFLOW — RESPONSIVE TABLET (≤ 991px) → 2 Columns
   ============================================================ */
@media (max-width: 991px) {
    .workflow-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .workflow-card {
        padding: 40px 24px 34px;
    }

    .workflow-card-title {
        font-size: 18px;
    }

    .workflow-card-desc {
        font-size: 14px;
    }

    .workflow-step-num {
        font-size: 52px;
    }

    .workflow-icon-circle {
        width: 68px;
        height: 68px;
        font-size: 25px;
    }
}

/* ============================================================
   WORKFLOW — RESPONSIVE MOBILE (≤ 575px) → 1 Column
   ============================================================ */
@media (max-width: 575px) {
    .workflow-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .workflow-card {
        padding: 34px 22px 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .workflow-card-title {
        font-size: 17px;
    }

    .workflow-card-desc {
        font-size: 13.5px;
    }

    .workflow-step-num {
        font-size: 48px;
        top: 10px;
        right: 14px;
    }

    .workflow-icon-circle {
        width: 64px;
        height: 64px;
        font-size: 24px;
        margin-bottom: 18px;
    }
}

/* ============================================================
   SECTION 7 — CTA + CONTACT FORM
   ============================================================ */
.cta-section {
    position: relative;
    padding: 140px 0 120px;
    overflow: hidden;
}

/* ---- Animated Background ---- */
.cta-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-bg-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.cta-section .cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(17, 17, 17, .97) 0%,
        rgba(17, 17, 17, .90) 40%,
        rgba(var(--primary-rgb), .25) 100%
    );
}

/* ---- Glow Effects ---- */
.cta-glow-left {
    position: absolute;
    top: 50%;
    left: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), .12) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    animation: glowPulse 6s ease-in-out infinite;
    z-index: 1;
}

.cta-glow-right {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), .08) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 6s ease-in-out 3s infinite;
    z-index: 1;
}

@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: .6; }
    50%      { transform: scale(1.2); opacity: 1; }
}

/* ---- Floating Particles ---- */
.cta-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(var(--primary-rgb), .2);
    animation: particleFloat linear infinite;
}

.p1 { width: 6px; height: 6px; top: 15%; left: 10%; animation-duration: 18s; animation-delay: 0s; }
.p2 { width: 4px; height: 4px; top: 30%; left: 85%; animation-duration: 22s; animation-delay: 2s; }
.p3 { width: 8px; height: 8px; top: 70%; left: 20%; animation-duration: 16s; animation-delay: 4s; }
.p4 { width: 3px; height: 3px; top: 50%; left: 60%; animation-duration: 24s; animation-delay: 1s; }
.p5 { width: 5px; height: 5px; top: 80%; left: 75%; animation-duration: 20s; animation-delay: 3s; }
.p6 { width: 7px; height: 7px; top: 25%; left: 45%; animation-duration: 19s; animation-delay: 5s; }
.p7 { width: 4px; height: 4px; top: 60%; left: 90%; animation-duration: 21s; animation-delay: 2s; }
.p8 { width: 6px; height: 6px; top: 10%; left: 70%; animation-duration: 17s; animation-delay: 6s; }

@keyframes particleFloat {
    0%   { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(-200px) translateX(40px) scale(0.3); opacity: 0; }
}

/* ---- Container ---- */
.cta-container {
    position: relative;
    z-index: 2;
}

/* ---- Left Content ---- */
.cta-content-left {
    padding-right: 20px;
}

.cta-title {
    font-size: 50px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -2px;
    line-height: 1.08;
    margin-bottom: 18px;
}

.cta-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.78;
    margin-bottom: 36px;
    max-width: 500px;
}

/* ---- CTA Features ---- */
.cta-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(10px);
    transition: var(--trans);
}

.cta-feature-item:hover {
    background: rgba(var(--primary-rgb), .1);
    border-color: rgba(var(--primary-rgb), .25);
    transform: translateX(8px);
}

.cta-feature-item:hover .cta-feature-icon {
    background: var(--primary);
    color: var(--white);
}

.cta-feature-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: rgba(var(--primary-rgb), .15);
    border-radius: var(--radius-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-light);
    transition: var(--trans);
}

.cta-feature-text h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin: 0 0 2px;
    line-height: 1.2;
}

.cta-feature-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
    margin: 0;
    line-height: 1.4;
}

/* ---- Contact Info Cards ---- */
.cta-contact-cards {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    background: rgba(var(--primary-rgb), .08);
    border: 1px solid rgba(var(--primary-rgb), .18);
    border-radius: var(--radius-sm);
    transition: var(--trans);
    flex: 1;
    min-width: 220px;
}

.cta-contact-card:hover {
    background: rgba(var(--primary-rgb), .18);
    border-color: rgba(var(--primary-rgb), .4);
    transform: translateY(-3px);
    color: var(--white);
}

.cta-contact-card:hover .cta-contact-icon {
    background: var(--primary);
    color: var(--white);
}

.cta-contact-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(var(--primary-rgb), .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--primary-light);
    transition: var(--trans);
}

.cta-contact-info span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .45);
    font-weight: 600;
}

.cta-contact-info strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-top: 2px;
}

/* ============================================================
   FORM CARD — Glassmorphism
   ============================================================ */
.cta-form-wrapper {
    position: relative;
}

.cta-form-glow {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), .15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: glowPulse 5s ease-in-out infinite;
}

.cta-form-card {
    position: relative;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    padding: 44px 38px;
    z-index: 1;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, .3),
        inset 0 1px 0 rgba(255, 255, 255, .06);
}

/* ---- Form Header ---- */
.cta-form-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.cta-form-header-icon {
    width: 52px;
    height: 52px;
    background: var(--primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(var(--primary-rgb), .35);
}

.cta-form-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 2px;
    line-height: 1.2;
}

.cta-form-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, .45);
    margin: 0;
    font-weight: 500;
}

/* ---- Form Groups ---- */
.cta-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    position: relative;
    display: flex;
    align-items: center;
}

.form-group-textarea {
    align-items: flex-start;
}

/* Icon */
.form-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: rgba(255, 255, 255, .3);
    z-index: 2;
    transition: var(--trans-fast);
    pointer-events: none;
}

.form-icon-textarea {
    top: 20px;
    transform: none;
}

/* Input */
.form-input {
    width: 100%;
    padding: 17px 18px 17px 52px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    outline: none;
    transition: var(--trans);
    position: relative;
    z-index: 1;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, .3);
    font-weight: 400;
}

.form-input:focus {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(var(--primary-rgb), .5);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), .1);
}

.form-input:focus ~ .form-icon,
.form-group:focus-within .form-icon {
    color: var(--primary-light);
}

/* Focus line animation */
.form-focus-line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: all .4s var(--ease);
    transform: translateX(-50%);
    z-index: 2;
}

.form-input:focus ~ .form-focus-line {
    width: 100%;
}

/* Textarea */
.form-textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 16px;
    line-height: 1.6;
}

/* Select */
.form-select-custom {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.form-select-custom option {
    background: var(--dark-2);
    color: var(--white);
    padding: 10px;
}

.form-select-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: rgba(255, 255, 255, .3);
    z-index: 2;
    pointer-events: none;
    transition: var(--trans-fast);
}

.form-group:focus-within .form-select-arrow {
    color: var(--primary-light);
    transform: translateY(-50%) rotate(180deg);
}

/* ---- Submit Button ---- */
.cta-submit-btn {
    position: relative;
    width: 100%;
    padding: 20px 32px;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    overflow: hidden;
    transition: var(--trans);
    margin-top: 8px;
}

.cta-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        var(--primary-dark) 0%,
        var(--primary) 50%,
        var(--primary-light) 100%
    );
    opacity: 0;
    transition: var(--trans);
}

.cta-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(var(--primary-rgb), .45);
}

.cta-submit-btn:hover::before { opacity: 1; }

.cta-submit-text,
.cta-submit-loading,
.cta-submit-success {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--trans-fast);
}

.cta-submit-loading,
.cta-submit-success {
    display: none;
}

/* Button States */
.cta-submit-btn.is-loading .cta-submit-text   { display: none; }
.cta-submit-btn.is-loading .cta-submit-loading { display: inline-flex; }
.cta-submit-btn.is-loading { pointer-events: none; opacity: .85; }

.cta-submit-btn.is-success .cta-submit-text    { display: none; }
.cta-submit-btn.is-success .cta-submit-loading { display: none; }
.cta-submit-btn.is-success .cta-submit-success { display: inline-flex; }
.cta-submit-btn.is-success {
    background: #1b9e4b;
    pointer-events: none;
}

/* ---- Trust Badge ---- */
.cta-form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.cta-form-trust i {
    font-size: 13px;
    color: rgba(255, 255, 255, .25);
}

.cta-form-trust span {
    font-size: 12px;
    color: rgba(255, 255, 255, .3);
    font-weight: 500;
}

/* ============================================================
   CTA — RESPONSIVE LAPTOP (≤ 1199px)
   ============================================================ */
@media (max-width: 1199px) {
    .cta-title {
        font-size: 44px;
    }

    .cta-form-card {
        padding: 38px 32px;
    }
}

/* ============================================================
   CTA — RESPONSIVE TABLET (≤ 991px)
   ============================================================ */
@media (max-width: 991px) {
    .cta-section {
        padding: 100px 0 90px;
    }

    .cta-title {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .cta-desc {
        font-size: 15px;
    }

    .cta-content-left {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .cta-bg-img {
        background-attachment: scroll;
    }

    .cta-form-card {
        padding: 34px 28px;
    }

    .cta-contact-cards {
        flex-direction: column;
    }

    .cta-contact-card {
        min-width: unset;
    }
}

/* ============================================================
   CTA — RESPONSIVE MOBILE (≤ 767px)
   ============================================================ */
@media (max-width: 767px) {
    .cta-section {
        padding: 80px 0 70px;
    }

    .cta-title {
        font-size: 30px;
        letter-spacing: -1px;
    }

    .cta-desc {
        font-size: 14px;
    }

    .cta-feature-item {
        padding: 14px 16px;
    }

    .cta-feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }

    .cta-feature-text h5 {
        font-size: 14px;
    }

    .cta-feature-text p {
        font-size: 12px;
    }

    .cta-form-card {
        padding: 28px 22px;
    }

    .cta-form-header {
        margin-bottom: 24px;
        padding-bottom: 18px;
    }

    .cta-form-header-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .cta-form-title {
        font-size: 19px;
    }

    .form-input {
        padding: 15px 16px 15px 46px;
        font-size: 14px;
    }

    .cta-submit-btn {
        padding: 18px 24px;
        font-size: 15px;
    }

    .cta-glow-left,
    .cta-glow-right {
        display: none;
    }
}

/* ============================================================
   CTA — RESPONSIVE SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
    .cta-title {
        font-size: 26px;
    }

    .cta-features {
        gap: 12px;
    }

    .cta-form-card {
        padding: 24px 18px;
        border-radius: var(--radius-sm);
    }

    .cta-contact-info strong {
        font-size: 13px;
    }
}

/* ============================================================
   FIX — MOBILE RESPONSIVE OVERFLOW & HERO TYPOGRAPHY
   ============================================================ */

/* Global anti-overflow */
html, body {
    overflow-x: hidden !important;
    max-width: 100%;
}

main, section {
    max-width: 100vw;
    overflow-x: hidden;
}

/* Force word-break untuk teks panjang */
.hero-title,
.section-title,
.cta-title {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* ============================================================
   HERO — TABLET FIX (≤ 991px)
   ============================================================ */
@media (max-width: 991px) {
    .hero-section {
        min-height: 85vh;
        padding: 100px 0 60px;
    }

    .hero-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-title {
        font-size: 52px !important;
        letter-spacing: -1.5px;
        line-height: 1.05;
    }

    .hero-subtitle {
        font-size: 15px;
        padding: 0 10px;
    }
}

/* ============================================================
   HERO — MOBILE FIX (≤ 767px)
   ============================================================ */
@media (max-width: 767px) {
    .hero-section {
        min-height: auto;
        padding: 90px 0 60px;
    }

    .hero-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-container .row {
        min-height: auto !important;
    }

    .hero-badge {
        font-size: 9px !important;
        letter-spacing: 1.5px;
        padding: 7px 14px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: 36px !important;
        letter-spacing: -1px;
        line-height: 1.08;
        margin-bottom: 18px;
        word-break: break-word;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 28px;
        padding: 0 8px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }

    /* Sembunyikan elemen yang bikin penuh */
    .hero-side-stats,
    .hero-scroll-indicator {
        display: none !important;
    }
}

/* ============================================================
   HERO — SMALL MOBILE FIX (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
    .hero-section {
        padding: 80px 0 50px;
    }

    .hero-container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .hero-badge {
        font-size: 8px !important;
        padding: 6px 12px;
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: 30px !important;
        letter-spacing: -0.5px;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 13px;
        padding: 0 4px;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 13px 20px;
        font-size: 13px;
        gap: 8px;
    }
}

/* ============================================================
   EXTRA SMALL MOBILE (≤ 360px)
   ============================================================ */
@media (max-width: 360px) {
    .hero-title {
        font-size: 26px !important;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .hero-badge {
        font-size: 7px !important;
        letter-spacing: 0.5px;
    }
}

/* ============================================================
   FIX CONTAINER PADDING DI MOBILE
   ============================================================ */
@media (max-width: 767px) {
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .section-padding {
        padding: 60px 0 !important;
    }

    /* Pastikan section title tidak overflow */
    .section-title {
        font-size: 26px !important;
        word-break: break-word;
    }

    .cta-title {
        font-size: 26px !important;
        word-break: break-word;
    }
}

/* ============================================================
   FIX IMAGE OVERFLOW DI MOBILE
   ============================================================ */
@media (max-width: 767px) {
    img {
        max-width: 100%;
        height: auto;
    }

    /* About section fix */
    .about-img-wrapper {
        padding-right: 0 !important;
        padding-bottom: 30px !important;
    }

    .about-img-main img {
        height: 280px !important;
    }

    .about-img-secondary {
        width: 130px !important;
        height: 130px !important;
        right: 10px !important;
        bottom: -10px !important;
    }

    .about-exp-badge {
        width: 80px !important;
        height: 80px !important;
        right: 20px !important;
        top: 15px !important;
    }

    .about-exp-number {
        font-size: 18px !important;
    }

    .about-exp-text {
        font-size: 8px !important;
    }

    /* Why us image fix */
    .whyus-img {
        height: 280px !important;
    }

    .whyus-float-card {
        padding: 12px 16px !important;
        bottom: 16px !important;
        left: 16px !important;
    }

    .whyus-accent-box {
        display: none;
    }
}

/* ============================================================
   FIX — ABOUT STATS ROW DI MOBILE
   ============================================================ */

/* ---- Tablet (≤ 991px) ---- */
@media (max-width: 991px) {
    .about-stats-row {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: space-between;
    }

    .about-stat-item {
        flex: 1 1 calc(33.333% - 14px);
        min-width: 0;
        text-align: center;
    }

    .about-stat-divider {
        display: none !important;
    }

    .about-stat-number {
        font-size: 30px !important;
    }

    .about-stat-label {
        font-size: 12px !important;
    }
}

/* ---- Mobile (≤ 767px) ---- */
@media (max-width: 767px) {
    .about-stats-row {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        padding-top: 28px;
        margin-top: 28px;
        width: 100%;
    }

    .about-stat-item {
        flex: unset;
        width: 100%;
        text-align: center;
        padding: 16px 8px;
        background: var(--light);
        border-radius: var(--radius-xs);
        border: 1px solid rgba(0, 0, 0, .05);
    }

    .about-stat-number {
        font-size: 24px !important;
        margin-bottom: 4px;
    }

    .about-stat-label {
        font-size: 10px !important;
        letter-spacing: 0.5px;
        line-height: 1.3;
    }

    .about-stat-divider {
        display: none !important;
    }
}

/* ---- Small Mobile (≤ 480px) ---- */
@media (max-width: 480px) {
    .about-stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .about-stat-item {
        padding: 14px 6px;
    }

    .about-stat-number {
        font-size: 20px !important;
    }

    .about-stat-label {
        font-size: 9px !important;
        letter-spacing: 0.3px;
    }
}

/* ---- Extra Small (≤ 360px) ---- */
@media (max-width: 360px) {
    .about-stat-number {
        font-size: 18px !important;
    }

    .about-stat-label {
        font-size: 8px !important;
    }

    .about-stat-item {
        padding: 12px 4px;
    }
}

/* ============================================================
   FIX — ABOUT CONTENT CENTER DI MOBILE
   ============================================================ */

/* ---- Tablet (≤ 991px) ---- */
@media (max-width: 991px) {
    .about-content {
        padding-left: 0 !important;
        padding-right: 0 !important;
        text-align: center;
    }

    .about-content .section-tag {
        justify-content: center;
    }

    .about-content .section-title {
        text-align: center;
    }

    .about-text {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 600px;
    }

    .about-content .btn-primary-custom {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ---- Mobile (≤ 767px) ---- */
@media (max-width: 767px) {
    .about-section .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .about-content {
        padding: 0 !important;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .about-content .section-tag {
        display: inline-flex;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .about-content .section-title {
        text-align: center;
        width: 100%;
    }

    .about-text {
        text-align: center;
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
    }

    /* Button center */
    .about-content .btn-primary-custom {
        display: inline-flex;
        margin: 24px auto 0 !important;
        align-self: center;
    }

    /* Stats row tetap center */
    .about-stats-row {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

/* ---- Small Mobile (≤ 480px) ---- */
@media (max-width: 480px) {
    .about-section .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .about-content {
        padding: 0 !important;
    }

    .about-text {
        font-size: 14.5px;
        line-height: 1.7;
    }

    .about-content .section-title {
        font-size: 24px !important;
        line-height: 1.15;
    }
}

/* ============================================================
   FIX — HILANGKAN SPACE ANTARA CTA & FOOTER
   ============================================================ */

/* Hilangkan margin-bottom CTA section */
.cta-section {
    margin-bottom: 0 !important;
    padding-bottom: 120px !important;
}

/* Hilangkan margin pada main wrapper kita */
#mnabb-main {
    margin: 0 !important;
    padding: 0 !important;
}

#mnabb-main > section:last-child {
    margin-bottom: 0 !important;
}

/* Hilangkan margin/padding pada parent Elementor */
.elementor-widget-html,
.elementor-widget-html .elementor-widget-container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Hilangkan space pada section/column Elementor yang berisi widget HTML */
.elementor-section:has(.cta-section),
.elementor-column:has(.cta-section),
.elementor-widget-wrap:has(.cta-section) {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Reset margin pada container WordPress */
.entry-content,
.site-content,
.page-content,
.content-area,
main.site-main,
.elementor-inner {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Mobile adjustment */
@media (max-width: 767px) {
    .cta-section {
        padding-bottom: 70px !important;
    }
}

/* Force remove all bottom space */
body .elementor,
body .elementor-section-wrap,
body main,
body #content,
body #primary,
body .site-main,
body article,
body .entry-content {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

body footer,
body .site-footer,
body #colophon {
    margin-top: 0 !important;
}

/* ============================================================
   FIX — HEADING LETTER SPACING & WORD SPACING (Lebih Lega)
   ============================================================ */

/* ---- Hero Title ---- */
.hero-title {
    letter-spacing: -0.5px !important;
    word-spacing: 4px;
    line-height: 1.1;
}

/* ---- Section Title (semua section) ---- */
.section-title {
    letter-spacing: -0.3px !important;
    word-spacing: 3px;
    line-height: 1.18;
}

/* ---- CTA Title ---- */
.cta-title {
    letter-spacing: -0.3px !important;
    word-spacing: 3px;
    line-height: 1.18;
}

/* ---- Card Titles ---- */
.service-card-title,
.workflow-card-title,
.whyus-text h4,
.sector-content h4,
.cta-form-title {
    letter-spacing: 0.2px;
    word-spacing: 1.5px;
    line-height: 1.35;
}

/* ---- Section Tag (TENTANG KAMI, dll) ---- */
.section-tag {
    letter-spacing: 4px !important;
    word-spacing: 2px;
}

/* ---- Body & Paragraph (lebih nyaman dibaca) ---- */
.about-text,
.section-desc,
.cta-desc,
.service-card-desc,
.workflow-card-desc,
.whyus-text p {
    letter-spacing: 0.2px;
    word-spacing: 1.5px;
}

/* ---- Stats Number ---- */
.about-stat-number,
.side-stat-number {
    letter-spacing: -0.5px;
}

.about-stat-label,
.side-stat-label {
    letter-spacing: 1.2px;
    word-spacing: 1px;
}

/* ============================================================
   RESPONSIVE — Adjust Spacing Untuk Mobile
   ============================================================ */
@media (max-width: 991px) {
    .hero-title {
        letter-spacing: -0.3px !important;
        word-spacing: 3px;
    }

    .section-title,
    .cta-title {
        letter-spacing: -0.2px !important;
        word-spacing: 2px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        letter-spacing: 0 !important;
        word-spacing: 2px;
        line-height: 1.15;
    }

    .section-title,
    .cta-title {
        letter-spacing: 0 !important;
        word-spacing: 2px;
        line-height: 1.2;
    }

    .section-tag {
        letter-spacing: 3px !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        word-spacing: 1.5px;
    }

    .section-title,
    .cta-title {
        word-spacing: 1.5px;
    }
}

/* ============================================================
   FIX — KEMBALIKAN HERO TITLE KE UKURAN SEMULA
   ============================================================ */

/* Desktop default */
.hero-title {
    font-size: 90px !important;
    letter-spacing: -3px !important;
    word-spacing: normal !important;
    line-height: 0.98 !important;
    hyphens: none !important;
    -webkit-hyphens: none !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
}

/* Laptop */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 72px !important;
        letter-spacing: -2.5px !important;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .hero-title {
        font-size: 56px !important;
        letter-spacing: -2px !important;
        line-height: 1.02 !important;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .hero-title {
        font-size: 38px !important;
        letter-spacing: -1px !important;
        line-height: 1.1 !important;
        word-break: break-word !important;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 32px !important;
        letter-spacing: -0.5px !important;
    }
}

/* Extra Small */
@media (max-width: 360px) {
    .hero-title {
        font-size: 28px !important;
    }
}

/* ============================================================
   FIX — ABOUT IMAGE TIDAK TERPOTONG
   ============================================================ */

/* Desktop & Laptop */
.about-img-wrapper {
    position: relative;
    padding-right: 60px;
    padding-bottom: 80px;
    padding-top: 20px;
    padding-left: 20px;
    overflow: visible !important;
}

.about-img-main {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    width: 100%;
}

.about-img-main img {
    width: 100% !important;
    height: 500px !important;
    object-fit: cover;
    display: block;
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 220px;
    height: 220px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: var(--shadow-md);
    z-index: 3;
}

.about-img-secondary img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

.about-exp-badge {
    position: absolute;
    top: 0;
    right: 30px;
    width: 130px;
    height: 130px;
    z-index: 4;
}

/* ---- Laptop (≤ 1199px) ---- */
@media (max-width: 1199px) {
    .about-img-wrapper {
        padding-right: 50px;
        padding-bottom: 70px;
    }

    .about-img-main img {
        height: 450px !important;
    }

    .about-img-secondary {
        width: 200px;
        height: 200px;
    }
}

/* ---- Tablet (≤ 991px) ---- */
@media (max-width: 991px) {
    .about-img-wrapper {
        padding-right: 40px;
        padding-bottom: 60px;
        padding-left: 0;
        margin-bottom: 30px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-img-main img {
        height: 420px !important;
    }

    .about-img-secondary {
        width: 180px;
        height: 180px;
        bottom: 0;
        right: 0;
    }

    .about-exp-badge {
        width: 110px;
        height: 110px;
        right: 20px;
    }
}

/* ---- Mobile (≤ 767px) ---- */
@media (max-width: 767px) {
    .about-img-wrapper {
        padding-right: 30px !important;
        padding-bottom: 50px !important;
        padding-top: 10px !important;
        padding-left: 0 !important;
        max-width: 100%;
    }

    .about-img-main {
        width: 100%;
    }

    .about-img-main img {
        height: 320px !important;
        width: 100% !important;
    }

    .about-img-secondary {
        width: 140px !important;
        height: 140px !important;
        bottom: 0 !important;
        right: 0 !important;
        border-width: 5px !important;
    }

    .about-exp-badge {
        width: 90px !important;
        height: 90px !important;
        right: 15px !important;
        top: 0 !important;
    }

    .about-exp-number {
        font-size: 20px !important;
    }

    .about-exp-text {
        font-size: 8px !important;
    }

    /* Dot pattern jangan keluar */
    .about-dot-pattern {
        display: none;
    }
}

/* ---- Small Mobile (≤ 480px) ---- */
@media (max-width: 480px) {
    .about-img-wrapper {
        padding-right: 20px !important;
        padding-bottom: 40px !important;
    }

    .about-img-main img {
        height: 260px !important;
    }

    .about-img-secondary {
        width: 110px !important;
        height: 110px !important;
        border-width: 4px !important;
    }

    .about-exp-badge {
        width: 75px !important;
        height: 75px !important;
        right: 10px !important;
    }

    .about-exp-number {
        font-size: 17px !important;
    }
}

/* ---- Extra Small (≤ 360px) ---- */
@media (max-width: 360px) {
    .about-img-main img {
        height: 230px !important;
    }

    .about-img-secondary {
        width: 95px !important;
        height: 95px !important;
    }

    .about-exp-badge {
        width: 65px !important;
        height: 65px !important;
    }

    .about-exp-number {
        font-size: 15px !important;
    }

    .about-exp-text {
        font-size: 7px !important;
    }
}

/* ============================================================
   PASTIKAN PARENT CONTAINER TIDAK CLIP CHILDREN
   ============================================================ */
.about-section {
    overflow: visible !important;
}

.about-section .container {
    overflow: visible !important;
}

.about-section .row {
    overflow: visible !important;
}

.about-section [class*="col-"] {
    overflow: visible !important;
}

/* ============================================================
   SECTION — ARTIKEL / BLOG
   ============================================================ */
.artikel-section {
    background: var(--light);
    position: relative;
    overflow: hidden;
}

.artikel-section::before {
    content: '';
    position: absolute;
    top: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), .05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ---- Header Description ---- */
.artikel-header-desc {
    font-size: 16px;
    color: var(--gray-light);
    line-height: 1.75;
    margin: 0;
    max-width: 400px;
    margin-left: auto;
}

/* ---- Card ---- */
.artikel-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, .05);
    transition: var(--trans);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.artikel-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-md);
    border-color: rgba(var(--primary-rgb), .2);
}

.artikel-card:hover .artikel-img-wrap img {
    transform: scale(1.1);
}

.artikel-card:hover .artikel-title a {
    color: var(--primary);
}

.artikel-card:hover .artikel-link {
    color: var(--primary);
}

.artikel-card:hover .artikel-link i {
    transform: translateX(6px);
}

.artikel-card:hover .artikel-category {
    background: var(--primary);
    color: var(--white);
}

/* ---- Image ---- */
.artikel-img-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    height: 240px;
    width: 100%;
}

.artikel-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
    display: block;
}

/* ---- Category Badge ---- */
.artikel-category {
    position: absolute;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 60px;
    z-index: 2;
    transition: var(--trans);
}

.artikel-category i {
    font-size: 12px;
}

/* ---- Body ---- */
.artikel-body {
    padding: 28px 26px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* ---- Meta ---- */
.artikel-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.artikel-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--gray-light);
    font-weight: 500;
}

.artikel-meta-item i {
    font-size: 11px;
    color: var(--primary);
}

/* ---- Title ---- */
.artikel-title {
    font-size: 19px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 14px;
    color: var(--dark);
}

.artikel-title a {
    color: var(--dark);
    transition: var(--trans-fast);
    display: block;
    /* Limit to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---- Excerpt ---- */
.artikel-excerpt {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--gray-light);
    margin-bottom: 22px;
    flex: 1;
    /* Limit to 3 lines */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---- Read More Link ---- */
.artikel-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
    padding-top: 14px;
    border-top: 1px solid rgba(0, 0, 0, .07);
    transition: var(--trans-fast);
    margin-top: auto;
}

.artikel-link i {
    font-size: 12px;
    transition: var(--trans-fast);
}

/* ============================================================
   ARTIKEL — RESPONSIVE
   ============================================================ */

@media (max-width: 991px) {
    .artikel-header-desc {
        margin-left: 0;
        margin-top: 14px;
        max-width: 100%;
    }

    .artikel-img-wrap {
        height: 220px;
    }

    .artikel-body {
        padding: 24px 22px 22px;
    }

    .artikel-title {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .artikel-img-wrap {
        height: 200px;
    }

    .artikel-body {
        padding: 22px 20px 20px;
    }

    .artikel-title {
        font-size: 17px;
    }

    .artikel-excerpt {
        font-size: 14px;
    }

    .artikel-meta {
        gap: 14px;
    }

    .artikel-meta-item {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .artikel-img-wrap {
        height: 180px;
    }

    .artikel-category {
        top: 14px;
        left: 14px;
        padding: 6px 12px;
        font-size: 10px;
    }

    .artikel-body {
        padding: 20px 18px 18px;
    }

    .artikel-title {
        font-size: 16px;
    }
}

/* ============================================================
   SINGLE POST — HERO HEADER
   ============================================================ */
.single-hero {
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
}

.single-hero-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.single-hero-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    transform: scale(1.05);
}

.single-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(17, 17, 17, .95) 0%,
        rgba(17, 17, 17, .85) 50%,
        rgba(var(--primary-rgb), .35) 100%
    );
}

.single-hero-content {
    position: relative;
    z-index: 2;
}

/* ---- Breadcrumb ---- */
.single-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 22px;
}

.single-breadcrumb a {
    color: rgba(255, 255, 255, .65);
    transition: var(--trans-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.single-breadcrumb a:hover {
    color: var(--primary-light);
}

.breadcrumb-sep {
    font-size: 9px;
    opacity: .5;
}

.breadcrumb-current {
    color: var(--white);
    font-weight: 600;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ---- Category Badge ---- */
.single-category-wrap {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.single-category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(var(--primary-rgb), .2);
    border: 1px solid rgba(var(--primary-rgb), .35);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 60px;
    backdrop-filter: blur(10px);
    transition: var(--trans);
}

.single-category-badge:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ---- Title ---- */
.single-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 36px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- Meta Bar ---- */
.single-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    padding: 20px 30px;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    max-width: 720px;
    margin: 0 auto;
}

.single-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.meta-avatar img,
.meta-avatar .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(var(--primary-rgb), .5);
}

.meta-icon {
    width: 40px;
    height: 40px;
    background: rgba(var(--primary-rgb), .2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 14px;
}

.meta-info {
    text-align: left;
}

.meta-label {
    display: block;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, .5);
    font-weight: 600;
}

.meta-info strong {
    display: block;
    font-size: 14px;
    color: var(--white);
    font-weight: 700;
    margin-top: 2px;
}

.single-meta-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, .15);
}

/* ============================================================
   SINGLE CONTENT
   ============================================================ */
.single-content-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

/* ---- Share Bar ---- */
.single-share-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 24px;
    background: var(--light);
    border-radius: var(--radius-sm);
    margin-bottom: 40px;
    flex-wrap: wrap;
    border: 1px solid rgba(0, 0, 0, .05);
}

.share-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

.share-label i {
    color: var(--primary);
}

.share-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--gray);
    font-size: 15px;
    border: 1px solid rgba(0, 0, 0, .08);
    cursor: pointer;
    transition: var(--trans);
    text-decoration: none;
}

.share-btn:hover {
    transform: translateY(-3px);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.share-whatsapp:hover { background: #25D366; }
.share-facebook:hover { background: #1877F2; }
.share-twitter:hover  { background: #000000; }
.share-linkedin:hover { background: #0A66C2; }
.share-copy:hover     { background: var(--primary); }

/* ============================================================
   ARTICLE BODY — Typography
   ============================================================ */
.single-article {
    font-size: 17px;
    line-height: 1.85;
    color: var(--gray);
    margin-bottom: 50px;
}

.single-article > * {
    margin-bottom: 24px;
}

.single-article p {
    margin-bottom: 22px;
    line-height: 1.85;
}

.single-article p:first-of-type::first-letter {
    font-size: 64px;
    font-weight: 900;
    color: var(--primary);
    float: left;
    line-height: 0.9;
    margin: 8px 14px 0 0;
    font-family: var(--font);
}

/* Headings */
.single-article h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
    margin: 48px 0 20px;
    padding-left: 18px;
    border-left: 5px solid var(--primary);
}

.single-article h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.35;
    margin: 40px 0 16px;
}

.single-article h4 {
    font-size: 21px;
    font-weight: 700;
    color: var(--dark);
    margin: 32px 0 14px;
}

.single-article h5,
.single-article h6 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin: 26px 0 12px;
}

/* Links */
.single-article a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: var(--trans-fast);
    font-weight: 600;
}

.single-article a:hover {
    color: var(--primary-dark);
    text-decoration-thickness: 3px;
}

/* Lists */
.single-article ul,
.single-article ol {
    margin: 20px 0 24px;
    padding-left: 26px;
}

.single-article ul li,
.single-article ol li {
    margin-bottom: 10px;
    line-height: 1.75;
}

.single-article ul li::marker {
    color: var(--primary);
}

.single-article ol li::marker {
    color: var(--primary);
    font-weight: 700;
}

/* Blockquote */
.single-article blockquote {
    position: relative;
    margin: 36px 0;
    padding: 30px 36px 30px 70px;
    background: var(--light);
    border-left: 5px solid var(--primary);
    border-radius: var(--radius-sm);
    font-size: 19px;
    font-style: italic;
    color: var(--dark);
    line-height: 1.7;
}

.single-article blockquote::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 24px;
    left: 24px;
    font-size: 28px;
    color: var(--primary);
    opacity: .5;
}

.single-article blockquote p:last-child {
    margin-bottom: 0;
}

.single-article blockquote cite {
    display: block;
    margin-top: 14px;
    font-size: 14px;
    color: var(--gray-light);
    font-style: normal;
    font-weight: 700;
}

/* Images */
.single-article img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
    margin: 26px 0;
    box-shadow: var(--shadow);
}

.single-article figure {
    margin: 30px 0;
}

.single-article figcaption {
    text-align: center;
    font-size: 13px;
    color: var(--gray-light);
    margin-top: 12px;
    font-style: italic;
}

/* Code */
.single-article code {
    background: #f1f3f5;
    color: var(--primary);
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Courier New', monospace;
}

.single-article pre {
    background: var(--dark);
    color: #f1f3f5;
    padding: 22px;
    border-radius: var(--radius-sm);
    overflow-x: auto;
    margin: 24px 0;
    font-size: 14px;
    line-height: 1.6;
}

.single-article pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

/* Table */
.single-article table {
    width: 100%;
    border-collapse: collapse;
    margin: 26px 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.single-article table th {
    background: var(--primary);
    color: var(--white);
    padding: 14px 18px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.single-article table td {
    padding: 14px 18px;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    font-size: 15px;
}

.single-article table tr:nth-child(even) {
    background: var(--light);
}

/* HR */
.single-article hr {
    border: none;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(var(--primary-rgb), .3),
        transparent
    );
    margin: 40px 0;
}

/* ============================================================
   TAGS
   ============================================================ */
.single-tags {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 0;
    border-top: 1px solid rgba(0, 0, 0, .08);
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tags-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

.tags-label i {
    color: var(--primary);
}

.tags-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tags-list a {
    display: inline-block;
    padding: 6px 16px;
    background: var(--light);
    color: var(--gray);
    font-size: 13px;
    font-weight: 600;
    border-radius: 60px;
    border: 1px solid rgba(0, 0, 0, .06);
    transition: var(--trans-fast);
    text-decoration: none;
}

.tags-list a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* ============================================================
   AUTHOR BOX
   ============================================================ */
.single-author-box {
    display: flex;
    align-items: flex-start;
    gap: 26px;
    padding: 36px;
    background: linear-gradient(135deg, var(--light) 0%, #ffffff 100%);
    border-radius: var(--radius);
    border: 1px solid rgba(0, 0, 0, .06);
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.single-author-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), .08) 0%, transparent 70%);
    border-radius: 50%;
}

.author-avatar img,
.author-avatar .avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: var(--shadow);
}

.author-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.author-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 4px;
}

.author-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 10px;
}

.author-bio {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 14px;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: var(--trans-fast);
}

.author-link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

/* ============================================================
   POST NAVIGATION
   ============================================================ */
.single-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.nav-prev,
.nav-next {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: var(--radius-sm);
    transition: var(--trans);
    text-decoration: none;
}

.nav-prev:hover,
.nav-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(var(--primary-rgb), .25);
}

.nav-prev:hover .nav-arrow,
.nav-next:hover .nav-arrow {
    background: var(--white);
    color: var(--primary);
}

.nav-prev:hover .meta-label,
.nav-next:hover .meta-label,
.nav-prev:hover .nav-text span,
.nav-next:hover .nav-text span {
    color: rgba(255, 255, 255, .8);
}

.nav-prev:hover .nav-text strong,
.nav-next:hover .nav-text strong {
    color: var(--white);
}

.nav-next {
    flex-direction: row-reverse;
    text-align: right;
}

.nav-arrow {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(var(--primary-rgb), .1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--trans);
}

.nav-text {
    flex: 1;
}

.nav-text span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray-light);
    font-weight: 600;
    margin-bottom: 4px;
    transition: var(--trans-fast);
}

.nav-text strong {
    display: block;
    font-size: 15px;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.4;
    transition: var(--trans-fast);
}

/* ============================================================
   RELATED POSTS
   ============================================================ */
.related-posts-section {
    background: var(--light);
    position: relative;
}

/* ============================================================
   COMMENTS
   ============================================================ */
.single-comments-section {
    padding: 80px 0;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, .05);
}

.single-comments-section .comments-title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 30px;
    color: var(--dark);
}

.single-comments-section .comment-form input,
.single-comments-section .comment-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--light);
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 15px;
    color: var(--dark);
    margin-bottom: 14px;
    transition: var(--trans-fast);
}

.single-comments-section .comment-form input:focus,
.single-comments-section .comment-form textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), .1);
}

.single-comments-section .submit {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--trans);
}

.single-comments-section .submit:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============================================================
   SINGLE POST — RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .single-hero {
        padding: 140px 0 80px;
    }

    .single-title {
        font-size: 36px;
    }

    .single-meta {
        gap: 16px;
        padding: 16px 20px;
    }

    .single-meta-divider {
        display: none;
    }

    .single-article h2 { font-size: 26px; }
    .single-article h3 { font-size: 22px; }
    .single-article h4 { font-size: 19px; }

    .single-article p:first-of-type::first-letter {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .single-hero {
        padding: 120px 0 60px;
    }

    .single-title {
        font-size: 26px;
        letter-spacing: 0;
    }

    .single-breadcrumb {
        font-size: 11px;
    }

    .breadcrumb-current {
        max-width: 150px;
    }

    .single-meta {
        flex-direction: column;
        gap: 12px;
        padding: 18px;
    }

    .single-meta-item {
        width: 100%;
    }

    .single-content-section {
        padding: 50px 0;
    }

    .single-share-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 18px;
    }

    .single-article {
        font-size: 15.5px;
    }

    .single-article h2 { font-size: 22px; padding-left: 14px; }
    .single-article h3 { font-size: 19px; }

    .single-article blockquote {
        padding: 24px 22px 24px 52px;
        font-size: 16px;
    }

    .single-article blockquote::before {
        font-size: 22px;
        top: 20px;
        left: 18px;
    }

    .single-article p:first-of-type::first-letter {
        font-size: 40px;
    }

    .single-author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 28px 22px;
    }

    .single-navigation {
        grid-template-columns: 1fr;
    }

    .nav-next {
        flex-direction: row;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .single-title {
        font-size: 22px;
    }

    .single-category-badge {
        font-size: 10px;
        padding: 6px 14px;
    }

    .share-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .share-btn {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
}