/* @import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap"); */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Ibarra Real Nova", serif;
}

:root {
    --gold: #b8952a;
    --gold-light: #d4af50;
    --gold-dark: #8b6e1a;
    --cream: #fbf8f2;
    --charcoal: #1a1a1a;
    --text-dark: #2c2c2c;
    --text-mid: #5a5a5a;
    --text-light: #888;
    --border-gold: rgba(184, 149, 42, 0.25);
    --card-bg: #ffffff;
    --section-bg: #f8f5ef;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.breadcrumb .breadcrumb-item {
    color: var(--cream);
}

.breadcrumb .breadcrumb-item.active {
    color: var(--gold-light);
}

#amz-root {
    font-family: "DM Sans", sans-serif;
    background: var(--cream);
    min-height: 500px;
}

/* ── HERO BANNER ── */
.amz-hero {
    /* background: linear-gradient(135deg,
            #1a1208 0%,
            #2c2008 40%,
            #1a1208 100%); */
    background:
        radial-gradient(circle at 78% 30%,
            rgba(255, 188, 45, .08) 0%,
            rgba(80, 35, 0, .04) 22%,
            transparent 45%),

        linear-gradient(90deg,
            #0a0501 0%,
            #120802 20%,
            #1b0d02 42%,
            #090401 62%,
            #090401 82%,
            #090401 100%);
    padding: 44px 32px 36px;
    position: relative;
    overflow: hidden;
}

.amz-hero::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 2px solid rgba(184, 149, 42, 0.15);
    z-index: 9;
    animation: floatCircle1 8s ease-in-out infinite;
}

.amz-hero::after {
    content: "";
    position: absolute;
    bottom: -40px;
    left: 20%;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 2px solid rgba(184, 149, 42, 0.1);
    animation: floatCircle2 10s ease-in-out infinite;
}

.glass {
    position: absolute;
    width: 120px;
    height: 120px;
    right: 10px;
    bottom: -20px;
    z-index: 9999;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .03);
    backdrop-filter: blur(10px);
    transform: rotate(-18deg);
    animation: glassFloat 6s ease-in-out infinite;
}


@keyframes floatCircle1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-20px, 20px) scale(1.05);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes floatCircle2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, -15px) scale(1.08);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes glassFloat {
    0% {
        transform: rotate(-18deg) translateY(0px);
    }

    50% {
        transform: rotate(-12deg) translateY(-20px);
    }

    100% {
        transform: rotate(-18deg) translateY(0px);
    }
}


.amz-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184, 149, 42, 0.15);
    border: 0.5px solid rgba(184, 149, 42, 0.4);
    color: #d4af50;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.amz-hero-badge span {
    width: 6px;
    height: 6px;
    background: #d4af50;
    border-radius: 50%;
    display: inline-block;
}

.amz-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: 30px;
    font-weight: 700;
    color: #f5edd8;
    line-height: 1.25;
    margin-bottom: 10px;
    position: relative;
}

.amz-hero h1 em {
    font-style: normal;
    color: #d4af50;
}

.amz-hero p {
    font-size: 13px;
    color: rgba(245, 237, 216, 0.6);
    max-width: 480px;
    line-height: 1.65;
}

.amz-hero-line {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, #b8952a, transparent);
    margin: 14px 0;
}

/* ── BACK BUTTON ── */
.amz-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    color: #d4af50;
    font-size: 13px;
    font-family: "DM Sans", sans-serif;
    padding: 0;
    margin-bottom: 14px;
    margin-right: 20px;
    transition: opacity 0.2s;
}

.amz-back-btn:hover {
    opacity: 0.75;
}

.amz-back-btn svg {
    width: 14px;
    height: 14px;
}

/* ── SERVICES GRID ── */
.amz-services-section {
    padding: 28px 24px 36px;
    background-color: white;
}

.amz-section-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 6px;
}

.amz-section-title {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 4px;
}

.amz-section-sub {
    font-size: 13px;
    color: var(--text-mid);
    margin-bottom: 24px;
}

.amz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 14px;
}

.amz-card {
    background: var(--cream);
    border: 0.5px solid var(--border-gold);
    border-radius: 12px;
    padding: 20px 16px 18px;
    cursor: pointer;
    transition:
        transform 0.2s,
        box-shadow 0.2s,
        border-color 0.2s;
    position: relative;
    overflow: hidden;
}

.amz-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.2s;
}

.amz-card:hover {
    transform: translateY(-3px);
    border-color: rgba(184, 149, 42, 0.5);
}

.amz-card:hover::before {
    opacity: 1;
}

.amz-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    color: white;
    background: linear-gradient(135deg, #c69b52, #a37e3e);
}

.amz-card-icon svg {
    width: 22px;
    height: 22px;
    stroke: white;
}

.amz-card-title {
    font-family: "Ibarra Real Nova", serif;
    font-size: 16px;
    font-weight: 700;
    color: #9c6d31;
    line-height: 1.35;
    margin-bottom: 8px;
}

.amz-card-desc {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.3;
    margin-bottom: 14px;
}

.amz-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 500;
    color: var(--gold);
}

.amz-card-cta svg {
    width: 12px;
    height: 12px;
}

/* ── DETAIL VIEW ── */
#amz-detail {
    display: none;
}

#amz-list {
    display: block;
}


.detail-hero {
    background: linear-gradient(135deg,
            #1a1208 0%,
            #2c2008 60%,
            #1a1208 100%);
    padding: 32px 28px;
    overflow: hidden;
    position: relative;
}

.detail-hero::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    border: 1px solid rgba(184, 149, 42, 0.15);
    animation: floatCircle1 8s ease-in-out infinite;
}

.detail-hero::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 20%;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 1px solid rgba(184, 149, 42, 0.1);
    animation: floatCircle2 10s ease-in-out infinite;
}

.detail-badge {
    display: inline-block;
    background: rgba(184, 149, 42, 0.2);
    border: 0.5px solid rgba(184, 149, 42, 0.35);
    color: #d4af50;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.detail-title {
    font-family: "Playfair Display", serif;
    font-size: 24px;
    color: #f5edd8;
    font-weight: 700;
    margin-bottom: 10px;
}

.detail-tagline {
    font-size: clamp(26px, 3vw, 38px);

    color: rgba(245, 237, 216, 0.6);
    line-height: 1.2;
    font-weight: 900;
    color: white;
}

.detail-line {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin: 14px 0;
}

.detail-body {
    /* padding: 28px 24px; */
    background-color: white !important;
}

.detail-overview {
    margin-top: 20px;
}

.detail-overview-title {
    font-family: "Playfair Display", serif;
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 10px;
}

.detail-overview p {
    font-size: 13px;
    color: rgba(245, 237, 216, 0.6);
    line-height: 1.7;
}

.detail-features-title {
    /* margin-bottom: 12px; */
    padding: 0 20px;
}

.detail-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
    padding: 5px 20px 30px 20px;
}

.detail-feat {
    background: #fff;
    border: 0.5px solid var(--border-gold);
    border-radius: 10px;
    padding: 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.detail-feat-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 4px;
    flex-shrink: 0;
}

.detail-feat-text {
    font-size: 12px;
    color: var(--text-dark);
    line-height: 1.55;
}

.detail-why {
    background: linear-gradient(135deg, #2c2008, #1a1208);
    border-radius: 12px;
    padding: 20px 20px;
    width: 24%;
    margin-bottom: 10px;
}

.detail-why h5 {
    color: white;
}

.detail-why p {
    color: var(--cream);
    line-height: 1.4;
    font-size: 13px;
}


.detail-why-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}



.ad-card {
    background: var(--cream);
    border: 0.5px solid rgba(184, 149, 42, 0.22);
    border-radius: 10px;
    padding: 16px 14px;
    cursor: pointer;
    transition:
        border-color 0.2s,
        transform 0.15s;
    position: relative;
}

.ad-card:hover {
    border-color: rgba(184, 149, 42, 0.5);
    transform: translateY(-2px);
}

.ad-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #c69b52, #a37e3e);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.ad-icon span {
    color: white;
}

.ad-title {
    font-family: "Ibarra Real Nova", serif;
    font-size: 16px;
    font-weight: 700;
    color: #9c6d31;
    line-height: 1.35;
    margin-bottom: 8px;
}

.ad-desc {
    font-size: 14px;
    color: var(--text-mid);
    line-height: 1.3;
    margin-bottom: 14px;
}

.ad-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    padding: 2px 8px;
    border-radius: 20px;
    margin-top: 8px;
    background: var(--gold-bg);
    color: #633806;
}


/* panel stats card */

.panel-stats-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(200, 146, 42, 0.18);
    border-radius: 16px;
    padding: 26px;
}

.psc-title {
    font-family: "DM Mono", monospace;
    font-size: 10px;
    font-weight: 500;
    color: var(--gold-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.psc-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(200, 146, 42, 0.18);
}

.psc-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.psc-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.psc-label {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.45);
}

.psc-val {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--gold-light);
}

.psc-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 20px;
    margin-top: 3px;
}

.badge-green {
    background: rgba(0, 200, 100, 0.12);
    color: #4ddb8a;
}

.badge-gold {
    background: rgba(200, 146, 42, 0.15);
    color: var(--gold-light);
}


.certifications {
    margin-bottom: 20px;
    padding: 30px 20px;
}

.certificationLink {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (min-width: 320px) and (max-width: 600px) {
    .side-banner-img {
        text-align: center !important;
    }

    .side-banner-img > img {
        height: 230px !important;
    }
}