/* ============================================================
   LANDING PAGE — PESANTREN AN-NUUR
   Islamic Elegant Theme
   ============================================================ */

/* --- Google Fonts import (served from Google CDN in blade head) --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Poppins:wght@300;400;500;600;700&display=swap');

/* --- CSS Custom Properties --- */
:root {
    --primary: #1B4332;
    --primary-dark: #0D2B1F;
    --primary-mid: #2D6A4F;
    --primary-light: #52B788;
    --accent: #C9A84C;
    --accent-light: #E8C97A;
    --accent-dark: #A07C2E;
    --white: #FFFFFF;
    --off-white: #F8F5F0;
    --gray-100: #F3F0EC;
    --gray-200: #E4E0DA;
    --gray-500: #8C8880;
    --gray-700: #4A4742;
    --gray-900: #1A1917;
    --shadow-sm: 0 2px 12px rgba(27, 67, 50, .07);
    --shadow-md: 0 8px 32px rgba(27, 67, 50, .12);
    --shadow-lg: 0 20px 60px rgba(27, 67, 50, .18);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    --transition: 0.3s ease;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', system-ui, sans-serif;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--gray-700);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: color var(--transition);
}

img {
    display: block;
    max-width: 100%;
}

/* --- Section Spacing --- */
section {
    padding: 5rem 0;
}

/* ============================================================
   NAVBAR — 2-Row Layout
   ============================================================ */
.lp-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0;
    background: var(--white);
    box-shadow: 0 1px 0 rgba(27, 67, 50, .07);
    transition: box-shadow var(--transition);
}

.lp-navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

/* --- Brand Row (Row 1) --- */
.lp-navbar__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .85rem 0 .45rem;
    border-bottom: 1px solid rgba(201, 168, 76, .2);
    position: relative;
    transition: padding var(--transition);
}

.lp-navbar.scrolled .lp-navbar__brand {
    padding: .5rem 0 .35rem;
}

/* --- Kop Surat Link --- */
.lp-navbar__kop-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* --- Kop Surat Image --- */
.kop-header {
    display: block;
    max-height: 90px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transition: max-height var(--transition), opacity var(--transition);
}

.lp-navbar.scrolled .kop-header {
    max-height: 60px;
}

.lp-navbar__kop-link:hover .kop-header {
    opacity: .9;
}

/* --- Nav Row (Row 2) --- */
.lp-navbar__nav-row {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .3rem 0 .45rem;
    transition: padding var(--transition);
}

.lp-navbar.scrolled .lp-navbar__nav-row {
    padding: .2rem 0 .3rem;
}

.lp-navbar__links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-navbar .nav-link-item {
    font-size: .875rem;
    font-weight: 500;
    color: var(--gray-700);
    padding: .4rem .9rem;
    position: relative;
    transition: color var(--transition);
    white-space: nowrap;
}

.lp-navbar .nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: .9rem;
    width: calc(100% - 1.8rem);
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.lp-navbar .nav-link-item:hover::after,
.lp-navbar .nav-link-item.active::after {
    transform: scaleX(1);
}

.lp-navbar .nav-link-item:hover,
.lp-navbar .nav-link-item.active {
    color: var(--primary);
}

.lp-navbar .btn-nav-cta {
    font-size: .85rem;
    font-weight: 600;
    padding: .45rem 1.35rem;
    border-radius: 50px;
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    margin-left: .5rem;
    transition: all var(--transition);
    white-space: nowrap;
}

.lp-navbar .btn-nav-cta:hover {
    background: var(--primary);
    color: var(--white);
}

/* --- Mobile Toggler (absolute right in brand row) --- */
.lp-navbar__toggler {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    padding: 4px;
    cursor: pointer;
}

.lp-navbar .navbar-toggler-icon-custom {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.lp-navbar .navbar-toggler-icon-custom span {
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
    display: block;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
    background-color: var(--primary-dark);
}

.lp-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            rgba(13, 43, 31, .85) 0%,
            rgba(13, 43, 31, .6) 50%,
            rgba(201, 168, 76, .25) 100%);
    z-index: 1;
}

.lp-hero__pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 2;
}

.lp-hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 0 1.5rem;
}

.lp-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(201, 168, 76, .2);
    border: 1px solid rgba(201, 168, 76, .5);
    color: var(--accent-light);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .45rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.lp-hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse-dot 1.8s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .5;
        transform: scale(.7);
    }
}

.lp-hero__title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1.25rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, .4);
    line-height: 1.2;
}

.lp-hero__title em {
    font-style: italic;
    color: var(--accent-light);
}

.lp-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, .85);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.8;
}

.lp-hero__breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-bottom: 2rem;
    font-size: .8rem;
    color: rgba(255, 255, 255, .6);
    letter-spacing: .05em;
}

.lp-hero__breadcrumb-sep {
    color: var(--accent);
}

.lp-hero__breadcrumb-current {
    color: var(--accent-light);
}

.lp-hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.lp-hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .5rem;
    color: rgba(255, 255, 255, .6);
    font-size: .75rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    animation: bounce-arrow 2s infinite;
}

.lp-hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--accent));
}

@keyframes bounce-arrow {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(6px);
    }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    color: var(--primary-dark);
    font-weight: 700;
    font-size: .95rem;
    border: none;
    box-shadow: 0 4px 20px rgba(201, 168, 76, .35);
    transition: all var(--transition);
    cursor: pointer;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, .5);
    color: var(--primary-dark);
}

.btn-ghost-white {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: 50px;
    background: transparent;
    color: var(--white);
    font-weight: 600;
    font-size: .95rem;
    border: 2px solid rgba(255, 255, 255, .7);
    backdrop-filter: blur(4px);
    transition: all var(--transition);
    cursor: pointer;
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, .15);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-primary-green {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 2rem;
    border-radius: 50px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: .95rem;
    border: none;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    cursor: pointer;
}

.btn-primary-green:hover {
    background: var(--primary-mid);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

.btn-outline-green {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1.75rem;
    border-radius: 50px;
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    font-size: .9rem;
    border: 2px solid var(--primary);
    transition: all var(--transition);
    cursor: pointer;
}

.btn-outline-green:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-eyebrow {
    display: inline-block;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: .75rem;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title em {
    font-style: italic;
    color: var(--primary-mid);
}

.section-lead {
    font-size: 1.05rem;
    color: var(--gray-500);
    line-height: 1.8;
    max-width: 540px;
}

.ornament-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.25rem 0 1.5rem;
}

.ornament-divider__line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent), transparent);
    max-width: 80px;
}

.ornament-divider__icon {
    font-size: 1.2rem;
    color: var(--accent);
    line-height: 1;
}

/* ============================================================
   PROGRAM SECTION
   ============================================================ */
.lp-programs {
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.lp-programs__blob {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 62% 47% 82% 35% / 45% 45% 80% 66%;
    background: linear-gradient(135deg, rgba(201, 168, 76, .12), rgba(27, 67, 50, .08));
    pointer-events: none;
    z-index: 0;
}

.lp-programs__left {
    position: relative;
    z-index: 1;
}

.program-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}

.program-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid rgba(27, 67, 50, .06);
    position: relative;
    overflow: hidden;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), var(--primary-light));
    opacity: 0;
    transition: opacity var(--transition);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.program-card:hover::before {
    opacity: 1;
}

.program-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--off-white), var(--gray-100));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    transition: all var(--transition);
}

.program-card:hover .program-card__icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-mid));
    color: var(--white);
}

.program-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: .4rem;
}

.program-card__desc {
    font-size: .85rem;
    color: var(--gray-500);
    line-height: 1.6;
}

.lp-programs__image-wrap {
    position: relative;
    z-index: 1;
}

.lp-programs__image-blob {
    position: absolute;
    inset: -20px;
    border-radius: 62% 47% 82% 35% / 45% 45% 80% 66%;
    background: linear-gradient(135deg, rgba(201, 168, 76, .15), rgba(27, 67, 50, .12));
    z-index: 0;
}

.lp-programs__img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    object-fit: cover;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-lg);
}

.lp-programs__badge-float {
    position: absolute;
    bottom: 2rem;
    left: -1rem;
    z-index: 2;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: .75rem;
    min-width: 180px;
}

.lp-programs__badge-float-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ============================================================
   KEUNGGULAN SECTION
   ============================================================ */
.lp-keunggulan {
    background: var(--white);
    position: relative;
}

.lp-keunggulan__center-img-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.lp-keunggulan__center-frame {
    position: relative;
    width: 260px;
    height: 320px;
}

.lp-keunggulan__center-frame::before {
    content: '';
    position: absolute;
    inset: -12px;
    border: 2px solid var(--accent);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: .4;
}

.lp-keunggulan__center-frame::after {
    content: '';
    position: absolute;
    inset: -20px;
    border: 1px solid rgba(201, 168, 76, .2);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: rotate-frame 12s linear infinite;
}

@keyframes rotate-frame {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.lp-keunggulan__center-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
}

.service-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
    transition: all var(--transition);
}

.service-item:last-child {
    border-bottom: none;
}

.service-item:hover {
    transform: translateX(4px);
}

.service-item.reverse {
    flex-direction: row-reverse;
    text-align: right;
}

.service-item.reverse:hover {
    transform: translateX(-4px);
}

.service-item__icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--off-white), var(--gray-100));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    transition: all var(--transition);
}

.service-item:hover .service-item__icon {
    background: linear-gradient(135deg, var(--accent-light), var(--accent));
    color: var(--primary-dark);
}

.service-item__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: .25rem;
}

.service-item__desc {
    font-size: .85rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ============================================================
   TENTANG / ABOUT SECTION
   ============================================================ */
.lp-tentang {
    background: var(--off-white);
}

.lp-tentang__img-wrap {
    position: relative;
}

.lp-tentang__img {
    border-radius: var(--radius-lg);
    object-fit: cover;
    width: 100%;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow-lg);
}

.lp-tentang__img-accent {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(201, 168, 76, .35);
    border-radius: var(--radius-lg);
    z-index: 0;
}

.lp-tentang__img-tag {
    position: absolute;
    bottom: -1rem;
    left: 2rem;
    z-index: 2;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: .75rem 1.25rem;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: .75rem;
}

.lp-tentang__checklist {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0;
}

.lp-tentang__checklist li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: .75rem;
    font-size: .95rem;
    color: var(--gray-700);
}

.lp-tentang__checklist li::before {
    content: '✦';
    color: var(--accent);
    font-size: .8rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* ============================================================
   BERITA SECTION
   ============================================================ */
.lp-berita {
    background: var(--gray-100);
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    height: 100%;
    border: 1px solid rgba(27, 67, 50, .05);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.news-card__img-wrap {
    position: relative;
    overflow: hidden;
    height: 210px;
}

.news-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.news-card:hover .news-card__img {
    transform: scale(1.05);
}

.news-card__date-tag {
    position: absolute;
    bottom: .75rem;
    left: .75rem;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: .3rem .75rem;
    font-size: .75rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.news-card__body {
    padding: 1.5rem;
}

.news-card__title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: .75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card__excerpt {
    font-size: .875rem;
    color: var(--gray-500);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.news-card__link {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .85rem;
    font-weight: 600;
    color: var(--primary-mid);
    transition: gap var(--transition);
}

.news-card:hover .news-card__link {
    gap: .75rem;
    color: var(--primary);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.lp-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-mid) 100%);
    position: relative;
    overflow: hidden;
}

.lp-cta__pattern {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.07'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.lp-cta__content {
    position: relative;
    z-index: 1;
}

.lp-cta__label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--accent-light);
    opacity: .8;
    margin-bottom: .5rem;
}

.lp-cta__title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: .75rem;
    line-height: 1.25;
}

.lp-cta__title em {
    font-style: italic;
    color: var(--accent-light);
}

.lp-cta__desc {
    color: rgba(255, 255, 255, .75);
    font-size: 1rem;
    line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.lp-footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, .75);
    position: relative;
    overflow: hidden;
}

.lp-footer__top {
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.lp-footer__logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.lp-footer__desc {
    font-size: .875rem;
    line-height: 1.8;
    margin: 1rem 0 1.5rem;
    color: rgba(255, 255, 255, .6);
}

.lp-footer__social {
    display: flex;
    gap: .75rem;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
    transition: all var(--transition);
}

.social-icon:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.lp-footer__heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.25rem;
    padding-bottom: .5rem;
    border-bottom: 1px solid rgba(201, 168, 76, .3);
}

.lp-footer__links {
    list-style: none;
    padding: 0;
}

.lp-footer__links li {
    margin-bottom: .6rem;
}

.lp-footer__links a {
    font-size: .875rem;
    color: rgba(255, 255, 255, .6);
    display: flex;
    align-items: center;
    gap: .5rem;
    transition: all var(--transition);
}

.lp-footer__links a::before {
    content: '›';
    color: var(--accent);
    font-size: 1rem;
}

.lp-footer__links a:hover {
    color: var(--white);
    padding-left: .25rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    margin-bottom: .875rem;
    font-size: .875rem;
    color: rgba(255, 255, 255, .65);
}

.footer-contact-item__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: rgba(201, 168, 76, .15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: .8rem;
    margin-top: 2px;
}

.lp-footer__bottom {
    padding: 1.25rem 0;
    text-align: center;
    font-size: .8rem;
    color: rgba(255, 255, 255, .4);
}

.lp-footer__bottom span {
    color: var(--accent);
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-wa {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
    z-index: 999;
    transition: all var(--transition);
}

.floating-wa:hover {
    transform: scale(1.1);
    color: var(--white);
}

.scroll-top-btn {
    position: fixed;
    bottom: 5.5rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    box-shadow: var(--shadow-sm);
    z-index: 999;
    cursor: pointer;
    transition: all var(--transition);
}

.scroll-top-btn.visible {
    display: flex;
}

.scroll-top-btn:hover {
    background: var(--primary-mid);
    transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    section {
        padding: 3.5rem 0;
    }

    .lp-programs__image-wrap {
        margin-top: 3rem;
    }

    .lp-keunggulan__center-img-wrap {
        margin: 2rem 0;
    }

    .lp-cta .row {
        text-align: center;
    }

    .lp-cta .text-md-end {
        text-align: center !important;
    }
}

@media (max-width: 767.98px) {
    section {
        padding: 3rem 0;
    }

    .lp-hero {
        min-height: 100svh;
        background-attachment: scroll;
    }

    .program-grid {
        grid-template-columns: 1fr;
    }

    .lp-hero__actions {
        flex-direction: column;
        align-items: center;
    }

    .lp-programs__badge-float {
        left: .5rem;
    }
}

/* ============================================================
   AOS OVERRIDE — faster on mobile
   ============================================================ */
@media (max-width: 575.98px) {
    [data-aos] {
        transition-duration: 0.4s !important;
    }
}