/* ============================================================
   AISKRIM KELANTAN – MAIN STYLESHEET
   Mobile-first, Core Web Vitals optimized
   ============================================================ */

/* ── Reset & Base ──────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text);
    background: var(--clr-white);
    line-height: 1.6;
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

a:focus-visible {
    outline: 2px solid var(--clr-accent);
    outline-offset: 3px;
    border-radius: 4px;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ── Container ─────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-content);
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    transition: all var(--transition);
    white-space: nowrap;
    cursor: pointer;
    border: 2.5px solid transparent;
}

.btn--primary {
    background: var(--clr-primary);
    color: var(--clr-white);
    border-color: var(--clr-primary);
}

.btn--primary:hover {
    background: var(--clr-primary-dark);
    border-color: var(--clr-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--accent {
    background: var(--clr-accent);
    color: var(--clr-white);
    border-color: var(--clr-accent);
}

.btn--accent:hover {
    background: var(--clr-accent-dark);
    border-color: var(--clr-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 0, .35);
}

.btn--outline {
    background: transparent;
    color: var(--clr-white);
    border-color: rgba(255, 255, 255, .6);
}

.btn--outline:hover {
    background: rgba(255, 255, 255, .15);
    border-color: var(--clr-white);
    transform: translateY(-2px);
}

.btn--outline-white {
    background: transparent;
    color: var(--clr-white);
    border-color: var(--clr-white);
}

.btn--outline-white:hover {
    background: var(--clr-white);
    color: var(--clr-primary);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn--xl {
    padding: 18px 44px;
    font-size: 1.15rem;
}

/* Pulse animation for final CTA */
@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, .5);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(255, 107, 0, .0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 0, .0);
    }
}

.pulse-animation {
    animation: pulse-ring 2s ease-out infinite;
}

/* ── Section Utilities ─────────────────────────────────────── */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-block;
    background: rgba(26, 42, 94, .08);
    color: var(--clr-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--clr-primary);
    line-height: 1.2;
    max-width: 760px;
    margin: 0 auto 16px;
}

.section-subtitle {
    color: var(--clr-grey);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ── HERO ──────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a2a5e 0%, #0d1b3e 50%, #1a3a5c 100%);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--clr-hero-overlay);
}

.hero__inner {
    position: relative;
    z-index: 1;
    padding-top: 120px;
    padding-bottom: 80px;
    text-align: center;
}

.hero__brand {
    margin-bottom: 32px;
}

.hero__logo {
    max-width: 200px;
    margin: 0 auto;
    filter: brightness(0) invert(1);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5.5vw, 3.8rem);
    font-weight: 800;
    color: var(--clr-white);
    line-height: 1.15;
    margin-bottom: 24px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .3);
}

.hero__subtitle {
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    color: rgba(255, 255, 255, .88);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero__cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
}

.hero__badge {
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .25);
    color: var(--clr-white);
    font-size: .875rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--radius-full);
}

.hero__scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .6);
    animation: bounce 2s ease-in-out infinite;
    margin: 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    transition: all var(--transition);
}

.hero__scroll-hint:hover {
    background: rgba(255, 255, 255, .2);
    color: #fff;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}

/* ── VALUE PROPOSITION ─────────────────────────────────────── */
.value-prop {
    background: var(--clr-offwhite);
}

.vp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.vp-card {
    background: var(--clr-white);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    border: 1.5px solid var(--clr-grey-light);
    transition: all var(--transition);
    text-align: center;
}

.vp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--clr-primary-light);
}

.vp-card__icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 16px;
    line-height: 1;
}

.vp-card__title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--clr-primary);
    margin-bottom: 10px;
}

.vp-card__desc {
    font-size: .95rem;
    color: var(--clr-grey);
    line-height: 1.6;
}

/* ── EVENT GALLERY ─────────────────────────────────────────── */
.gallery-section {
    background: var(--clr-white);
}

.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.gallery-filter {
    padding: 9px 22px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: .875rem;
    color: var(--clr-primary);
    background: transparent;
    border: 2px solid var(--clr-grey-light);
    cursor: pointer;
    transition: all var(--transition);
}

.gallery-filter:hover,
.gallery-filter.active {
    background: var(--clr-primary);
    color: var(--clr-white);
    border-color: var(--clr-primary);
}

/* Masonry Grid */
.masonry-gallery {
    columns: 1;
    column-gap: 20px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 20px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item__figure {
    position: relative;
    display: block;
    overflow: hidden;
}

.gallery-item__img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform .4s ease;
    display: block;
}

.gallery-item:hover .gallery-item__img {
    transform: scale(1.06);
}

.gallery-item__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, transparent 100%);
    color: var(--clr-white);
    padding: 32px 16px 16px;
    font-size: .82rem;
    display: flex;
    flex-direction: column;
    gap: 5px;
    transform: translateY(8px);
    opacity: 0;
    transition: all var(--transition);
}

.gallery-item__caption strong {
    font-size: .95rem;
    font-family: var(--font-heading);
}

.gallery-item__caption span {
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: .85;
}

.gallery-item:hover .gallery-item__caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-item__zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(.6);
    background: rgba(255, 255, 255, .2);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
    opacity: 0;
    transition: all var(--transition);
}

.gallery-item:hover .gallery-item__zoom {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Placeholder */
.gallery-item--placeholder .gallery-item__placeholder-img {
    background: var(--clr-offwhite);
    border: 2px dashed var(--clr-grey-light);
    border-radius: var(--radius-md);
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--clr-grey);
    font-size: 2rem;
}

.gallery-item--placeholder .gallery-item__placeholder-img small {
    font-size: .8rem;
}

.gallery-load-more-wrap {
    text-align: center;
    margin-top: 40px;
}

.gallery-notice {
    text-align: center;
    padding: 48px;
    background: var(--clr-offwhite);
    border-radius: var(--radius-md);
    border: 2px dashed var(--clr-grey-light);
    color: var(--clr-grey);
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox[hidden] {
    display: none;
}

.lightbox__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    z-index: 9998;
    cursor: pointer;
}

.lightbox__backdrop[hidden] {
    display: none;
}

.lightbox__content {
    position: relative;
    z-index: 9999;
    max-width: 90vw;
    max-height: 85vh;
    text-align: center;
}

.lightbox__img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-xl);
}

.lightbox__caption {
    color: rgba(255, 255, 255, .8);
    margin-top: 12px;
    font-size: .9rem;
}

.lightbox__close {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 10000;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    color: var(--clr-white);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    line-height: 1;
}

.lightbox__close:hover {
    background: rgba(255, 255, 255, .3);
}

.lightbox__nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000;
    background: rgba(255, 255, 255, .15);
    color: var(--clr-white);
    font-size: 2.5rem;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
    line-height: 0;
}

.lightbox__nav:hover {
    background: rgba(255, 255, 255, .3);
}

.lightbox__prev {
    left: 16px;
}

.lightbox__next {
    right: 16px;
}

/* ── PRICING ───────────────────────────────────────────────── */
.pricing-section {
    background: var(--clr-primary);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1.5' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E") repeat;
}

.pricing-section .section-tag {
    background: rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .9);
}

.pricing-section .section-title,
.pricing-section .section-subtitle {
    color: var(--clr-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: rgba(255, 255, 255, .06);
    border: 1.5px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    color: var(--clr-white);
    position: relative;
    transition: all var(--transition);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .35);
}

.pricing-card--popular {
    background: var(--clr-white);
    color: var(--clr-primary);
    border-color: var(--clr-white);
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.pricing-card--popular:hover {
    transform: scale(1.02) translateY(-6px);
}

.pricing-card__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--clr-accent);
    color: var(--clr-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: .8rem;
    padding: 6px 20px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.pricing-card__name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-card__price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-bottom: 4px;
}

.pricing-card__currency {
    font-size: 1.4rem;
    font-weight: 700;
    margin-top: 8px;
    font-family: var(--font-heading);
}

.pricing-card__amount {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-heading);
}

.pricing-card__unit {
    font-size: .85rem;
    opacity: .7;
    margin-bottom: 28px;
    display: block;
}

.pricing-card__features {
    margin-bottom: 32px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-card__features li {
    font-size: .92rem;
    padding-left: 24px;
    position: relative;
    opacity: .9;
}

.pricing-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--clr-accent);
    font-weight: 700;
}

.pricing-card--popular .pricing-card__features li::before {
    color: var(--clr-accent);
}

.pricing-card__cta {
    width: 100%;
}

/* Single pricing card centered */
.pricing-single-wrap {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.pricing-card--single {
    max-width: 520px;
    width: 100%;
    transform: none !important;
}

.pricing-card--single:hover {
    transform: translateY(-6px) !important;
}

.pricing-card--single .pricing-card__features {
    columns: 2;
    column-gap: 24px;
}

@media (max-width: 560px) {
    .pricing-card--single .pricing-card__features {
        columns: 1;
    }
}

.pricing-note {
    position: relative;
    z-index: 1;
    text-align: center;
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
    margin-top: 40px;
}

.pricing-note strong {
    color: var(--clr-white);
}

/* ── SLOT FORM ─────────────────────────────────────────────── */
.form-section {
    background: var(--clr-offwhite);
}

.form-section__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

.form-section__info .section-title {
    text-align: left;
    margin-left: 0;
}

.form-section__info .section-tag {
    display: inline-block;
}

.form-section__benefits {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-section__benefits li {
    font-size: .95rem;
    color: var(--clr-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-section__form {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow-lg);
    border: 1.5px solid var(--clr-grey-light);
}

/* Slot Form (plugin outputs this) */
.aiskrim-slot-form {
    width: 100%;
}

.aiskrim-slot-form .form-group {
    margin-bottom: 20px;
}

.aiskrim-slot-form label {
    display: block;
    font-weight: 600;
    font-size: .9rem;
    color: var(--clr-primary);
    margin-bottom: 7px;
}

.aiskrim-slot-form input,
.aiskrim-slot-form select,
.aiskrim-slot-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--clr-grey-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--clr-dark);
    background: var(--clr-white);
    transition: border-color var(--transition);
    appearance: none;
    -webkit-appearance: none;
}

.aiskrim-slot-form input:focus,
.aiskrim-slot-form select:focus,
.aiskrim-slot-form textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(26, 42, 94, .1);
}

.aiskrim-slot-form .submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--clr-accent);
    color: var(--clr-white);
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all var(--transition);
    margin-top: 8px;
}

.aiskrim-slot-form .submit-btn:hover {
    background: var(--clr-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 107, 0, .35);
}

.form-message {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: .9rem;
    margin-top: 16px;
}

.form-message--success {
    background: #ecfdf5;
    color: #065f46;
    border: 1.5px solid #6ee7b7;
}

.form-message--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1.5px solid #fca5a5;
}

/* ── SOCIAL PROOF ──────────────────────────────────────────── */
.social-proof {
    background: var(--clr-white);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
    padding: 32px 16px;
    background: var(--clr-offwhite);
    border-radius: var(--radius-md);
    border: 2px solid var(--clr-grey-light);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 3.8rem);
    font-weight: 800;
    color: var(--clr-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: .85rem;
    color: var(--clr-grey);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.testimonial-card {
    background: var(--clr-offwhite);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    border: 1.5px solid var(--clr-grey-light);
    transition: all var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-card__stars {
    color: #f59e0b;
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-card__text {
    font-size: .97rem;
    color: var(--clr-text);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--clr-primary);
    color: var(--clr-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-card__author strong {
    display: block;
    font-size: .95rem;
    color: var(--clr-primary);
}

.testimonial-card__author span {
    font-size: .82rem;
    color: var(--clr-grey);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--clr-offwhite);
    border: 1.5px solid var(--clr-grey-light);
    border-radius: var(--radius-full);
    padding: 10px 22px;
    font-size: .9rem;
    font-weight: 600;
    color: var(--clr-primary);
}

.trust-badge__icon {
    font-size: 1.2rem;
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-section {
    background: var(--clr-offwhite);
}

.faq-list {
    max-width: 780px;
    margin: 0 auto 48px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--clr-white);
    border-radius: var(--radius-md);
    border: 1.5px solid var(--clr-grey-light);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item:has(.faq-item__question.active) {
    border-color: var(--clr-primary);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    text-align: left;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: .98rem;
    color: var(--clr-primary);
    background: none;
    border: none;
    cursor: pointer;
    transition: color var(--transition);
}

.faq-item__question.active {
    color: var(--clr-accent);
}

.faq-item__icon {
    flex-shrink: 0;
    transition: transform var(--transition);
}

.faq-item__question.active .faq-item__icon {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
}

.faq-item__answer.open {
    max-height: 600px;
}

.faq-item__answer p {
    padding: 0 24px 24px;
    font-size: .95rem;
    color: var(--clr-text);
    line-height: 1.8;
}

.faq-cta {
    text-align: center;
    padding: 40px;
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--clr-grey-light);
}

.faq-cta p {
    color: var(--clr-grey);
    margin-bottom: 20px;
    font-size: 1rem;
}

/* ── FINAL CTA ─────────────────────────────────────────────── */
.final-cta {
    background: linear-gradient(135deg, var(--clr-accent) 0%, #d95500 100%);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '🍦';
    position: absolute;
    font-size: 200px;
    opacity: .06;
    right: -40px;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    line-height: 1;
}

.final-cta__inner {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.final-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--clr-white);
    margin-bottom: 16px;
    line-height: 1.2;
}

.final-cta__subtitle {
    color: rgba(255, 255, 255, .88);
    font-size: 1.05rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.final-cta__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.final-cta .btn--accent {
    background: var(--clr-white);
    color: var(--clr-accent);
    border-color: var(--clr-white);
}

.final-cta .btn--accent:hover {
    background: #fff3e6;
}

/* ── FOOTER ────────────────────────────────────────────────── */
.site-footer {
    background: var(--clr-primary-dark);
    color: rgba(255, 255, 255, .75);
    padding: 60px 0 40px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 12px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: .88rem;
}

.footer-links p {
    font-weight: 700;
    color: var(--clr-white);
    margin-bottom: 12px;
}

.footer-wa-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #25D366;
    font-weight: 600;
    font-size: .95rem;
    transition: opacity var(--transition);
}

.footer-wa-link:hover {
    opacity: .8;
}

.footer-legal {
    font-size: .8rem;
    line-height: 1.8;
}

/* ── FLOATING WhatsApp ─────────────────────────────────────── */
.floating-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: var(--clr-white);
    padding: 14px 22px;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: .9rem;
    box-shadow: 0 6px 28px rgba(37, 211, 102, .45);
    transition: all var(--transition);
    animation: wa-pulse 2.5s ease-in-out infinite;
    text-decoration: none;
}

.floating-wa:hover {
    background: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(37, 211, 102, .55);
    animation-play-state: paused;
}

@keyframes wa-pulse {

    0%,
    100% {
        box-shadow: 0 6px 28px rgba(37, 211, 102, .45);
    }

    50% {
        box-shadow: 0 6px 40px rgba(37, 211, 102, .7);
    }
}

.floating-wa__icon {
    flex-shrink: 0;
    display: flex;
}

.floating-wa__text {
    white-space: nowrap;
}

/* Mobile: icon only */
@media (max-width: 479px) {
    .floating-wa {
        padding: 14px;
        border-radius: 50%;
    }

    .floating-wa__text {
        display: none;
    }
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (min-width: 480px) {
    .masonry-gallery {
        columns: 2;
    }

    .vp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-row {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 768px) {
    .section {
        padding: 100px 0;
    }

    .masonry-gallery {
        columns: 2;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .form-section__inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-inner {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        align-items: start;
    }
}

@media (min-width: 1024px) {
    .masonry-gallery {
        columns: 3;
    }

    .vp-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .vp-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* ── SCROLL-TRIGGERED ANIMATIONS ──────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── UTILITY ───────────────────────────────────────────────── */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ── PRINT ─────────────────────────────────────────────────── */
@media print {

    .floating-wa,
    .hero__cta-group {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }
}

/* ── Share / Kongsi Section ─────────────────────────── */
.share-section {
    background: #f0f4ff;
    padding: 56px 0;
    border-top: 1px solid #e5e7eb;
}

.share-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.share-text {
    display: flex;
    align-items: center;
    gap: 20px;
}

.share-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.share-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--clr-primary);
    margin: 0 0 4px;
    font-family: var(--font-heading);
}

.share-desc {
    color: #6b7280;
    font-size: .925rem;
    margin: 0;
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 12px 22px;
    border-radius: var(--radius-full);
    font-size: .9rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    white-space: nowrap;
    font-family: var(--font-heading);
}

.share-btn--wa {
    background: #25d366;
    color: #fff;
}

.share-btn--wa:hover {
    background: #1ebe5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, .35);
}

.share-btn--fb {
    background: #1877f2;
    color: #fff;
}

.share-btn--fb:hover {
    background: #0e65d9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(24, 119, 242, .35);
}

.share-btn--copy {
    background: #fff;
    color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
}

.share-btn--copy:hover,
.share-btn--copy.copied {
    background: var(--clr-primary);
    color: #fff;
}

@media (max-width: 768px) {
    .share-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .share-buttons {
        width: 100%;
    }

    .share-btn {
        flex: 1;
        justify-content: center;
        min-width: 0;
    }
}

/* ============================================================
   MOBILE-FIRST IMPROVEMENTS (< 480px phones)
   ============================================================ */

/* ── Hero – reduce top padding on phones ──────────────────── */
@media (max-width: 479px) {
    .hero__inner {
        padding-top: 80px;
        padding-bottom: 56px;
    }

    .hero__subtitle {
        font-size: .97rem;
        margin-bottom: 28px;
    }

    /* Stack CTA buttons full-width on very small screens */
    .hero__cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero__cta-group .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: .95rem;
    }

    .hero__badges {
        gap: 8px;
    }

    .hero__badge {
        font-size: .78rem;
        padding: 6px 12px;
    }
}

/* ── Section spacing on phones ────────────────────────────── */
@media (max-width: 479px) {
    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-title {
        font-size: clamp(1.5rem, 5.5vw, 2rem);
    }
}

/* ── Form section – reduce padding on phones ─────────────── */
@media (max-width: 479px) {
    .form-section__form {
        padding: 24px 16px;
        border-radius: var(--radius-md);
    }

    .aiskrim-slot-form input,
    .aiskrim-slot-form select,
    .aiskrim-slot-form textarea {
        padding: 12px 14px;
        font-size: .95rem;
    }
}

/* ── Pricing – 2 cols on small tablets, 1 col on phones ──── */
@media (max-width: 479px) {
    .pricing-grid {
        grid-template-columns: 1fr !important;
    }

    .pricing-card--popular {
        transform: scale(1) !important;
    }

    .pricing-card__amount {
        font-size: 2.8rem;
    }
}

@media (min-width: 480px) and (max-width: 767px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ── Value prop – 2 cols even on phones ──────────────────── */
@media (max-width: 479px) {
    .vp-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .vp-card {
        padding: 20px 16px;
    }

    .vp-card__icon {
        font-size: 2rem;
    }

    .vp-card__title {
        font-size: .95rem;
    }

    .vp-card__desc {
        font-size: .85rem;
    }
}

/* ── Stats grid on phones ────────────────────────────────── */
@media (max-width: 479px) {
    .stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 40px;
    }

    .stat-item {
        padding: 20px 10px;
    }
}

/* ── Gallery – 1 col on phones ───────────────────────────── */
@media (max-width: 479px) {
    .masonry-gallery {
        columns: 1;
    }
}

/* ── Testimonials – 1 col on phones (already default) ───── */
@media (max-width: 767px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ── FAQ – tighten padding on phones ─────────────────────── */
@media (max-width: 479px) {
    .faq-item__question {
        padding: 16px 18px;
        font-size: .93rem;
    }

    .faq-item__answer p {
        padding: 0 18px 20px;
        font-size: .9rem;
    }

    .faq-cta {
        padding: 28px 20px;
    }
}

/* ── Final CTA buttons – stack on phone ──────────────────── */
@media (max-width: 479px) {
    .final-cta__buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .final-cta__buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: .97rem;
    }

    .final-cta::before {
        font-size: 120px;
        right: -20px;
        opacity: .04;
    }
}

/* ── Share section – full-width buttons on phones ────────── */
@media (max-width: 479px) {
    .share-section {
        padding: 40px 0;
    }

    .share-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .share-text {
        gap: 12px;
    }

    .share-icon {
        font-size: 1.8rem;
    }

    .share-buttons {
        width: 100%;
        flex-direction: column;
    }

    .share-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ── Footer on phones ────────────────────────────────────── */
@media (max-width: 479px) {
    .site-footer {
        padding: 40px 0 28px;
    }

    .footer-inner {
        gap: 28px;
    }
}

/* ── Floating WA – compact on small screens ──────────────── */
@media (max-width: 479px) {
    .floating-wa {
        bottom: 16px;
        right: 16px;
        padding: 14px;
        border-radius: 50%;
        width: 52px;
        height: 52px;
        justify-content: center;
    }

    .floating-wa__text {
        display: none;
    }
}

/* ── Lightbox nav on phones ──────────────────────────────── */
@media (max-width: 479px) {
    .lightbox__prev { left: 8px; }
    .lightbox__next { right: 8px; }

    .lightbox__nav {
        width: 42px;
        height: 42px;
        font-size: 2rem;
    }

    .lightbox__content {
        max-width: 95vw;
    }
}

/* ── Prevent horizontal scroll globally ──────────────────── */
@media (max-width: 767px) {
    body {
        overflow-x: hidden;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}