:root {
    --black: #050505;
    --black-soft: #111111;
    --white: #ffffff;
    --silver: #c9c9c9;
    --silver-soft: #efefef;
    --gray: #727272;
    --line: rgba(255,255,255,.14);
    --shadow: 0 24px 60px rgba(0,0,0,.34);
    --radius: 24px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Noto Sans', 'Noto Sans Arabic', sans-serif;
    color: #111;

    background: #f5f5f5;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 5, 5, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 18px 14px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.logo-img {
    height: 70px; /* kecilkan/ubah sesuai kebutuhan */
    width: auto;
    max-width: min(260px, 70vw);
    object-fit: contain;
    filter: drop-shadow(0 12px 22px rgba(255,255,255,.10));
}

.logo-company-name {
    display: inline-block;
    padding-left: 18px;

    font-family: "Montserrat", sans-serif;
    color: #ffffff;
    font-size: clamp(30px, 4vw, 56px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    white-space: nowrap;
    text-shadow: 0 8px 22px rgba(0,0,0,.55);
}

.nav-toggle {
    display: none;
    margin: 0 auto 14px;
    width: 46px;
    height: 40px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 12px;
    background: #d9d9d9;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    background: #111;
    border-radius: 10px;
}

.main-nav {
    border-top: 1px solid rgba(255,255,255,.12);
    background: #c9c9c9;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.82);
}

.main-nav > ul {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: center;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 15px 22px;
    color: #070707;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .35px;
    border-left: 1px solid rgba(255,255,255,.44);
    border-right: 1px solid rgba(0,0,0,.16);
    transition: .25s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #fff;
    background: #111111;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    padding: 8px;
    margin: 0;
    list-style: none;
    background: rgba(13,13,13,.98);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .25s ease;
}

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    border: 0;
    border-radius: 12px;
    padding: 12px 14px;
    color: #f7f7f7;
    text-transform: none;
    letter-spacing: 0;
    background: transparent;
}

.dropdown a:hover {
    background: rgba(255,255,255,.16);
}

.hero {
    min-height: 520px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.72);
}

.hero::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 50%;
    right: -110px;
    bottom: -130px;
    animation: floatCircle 8s ease-in-out infinite;
}

.hero-content {
    position: relative;
    width: min(1120px, 92%);
    padding: 80px 0;
    animation: fadeUp .8s ease both;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: var(--silver-soft);
    font-size: 13px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 780px;
    margin: 22px 0 16px;
    font-size: clamp(36px, 7vw, 76px);
    line-height: .98;
    letter-spacing: -2px;

    color: #ffffff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
}

.hero p {
    max-width: 710px;
    margin: 0;
    color: #e7e7e7;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.7;
}

.section {
    width: min(1120px, 92%);
    margin: 0 auto;
    padding: 86px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 48px;
    align-items: center;
}

.kicker {
    color: #222;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    margin-bottom: 12px;
}

.section h2 {
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.05;
    margin: 0 0 22px;
}

.section p {
    color: #222;
    line-height: 1.85;
    font-size: 16px;
}

.intro-image-wrap {
    position: relative;
}



.intro-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    animation: softFloat 5s ease-in-out infinite;
}

.facts-section {
    padding: 56px 0 60px;
}

.facts-inner {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.facts-section h2 {
    margin: 0 0 30px;
    text-align: center;
    font-family: "Times New Roman", Times, serif;
    font-size: clamp(24px, 3vw, 42px);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #000;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.18);
}

.facts-list {
    max-width: 980px;
    margin: 0 auto;
    padding-left: 32px;
    color: #2f4464;
    font-size: 16px;
    line-height: 1.9;
}

.facts-list li {
    margin-bottom: 10px;
    padding-left: 6px;
}

@media (max-width: 768px) {
    .facts-section {
        padding: 42px 0 46px;
    }

    .facts-section h2 {
        letter-spacing: 1.5px;
        line-height: 1.3;
    }

    .facts-list {
        font-size: 15px;
        padding-left: 22px;
    }
}

.info-card {
    padding: 28px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 22px;
    background: rgba(0,0,0,.35);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    display: flex;
    flex-direction: column;
    gap: 18px;

    
}

.info-card h3 {
    margin: 0;
    font-size: 18px;
    letter-spacing: .6px;
    color: #fff;
}

.info-card address {
    font-style: normal;
    line-height: 1.7;
    color: rgba(255,255,255,.75);
    font-size: 14px;
}

.hours-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.hours-list div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.page-hero {
    width: min(980px, 92%);
    margin: 72px auto;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: flex-start;

   

    overflow: hidden;

    text-align: left;
}
.page-hero-inner {
    width: min(680px, 86%);
    animation: fadeUp .7s ease both;
    text-align: left;
}

.page-hero h1 {
    text-align: left;
}

.page-hero p {
    text-align: justify;
}


.page-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(20px, 3.2vw, 34px);
    color: #111;
}

.page-hero p {
    color: #222;
    line-height: 1.8;
}


.site-footer {
    border-top: 1px solid rgba(255,255,255,.12);
    background: #030303;
}

.footer-inner {
    width: min(1120px, 92%);
    margin: 0 auto;
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    color: #dcdcdc;
}

.footer-inner span {
    color: #9d9d9d;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes softFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

@keyframes floatCircle {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-24px, -18px); }
}

@media (max-width: 900px) {
    .site-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .logo-wrap {
        flex: 1;
        justify-content: flex-start;
        padding: 12px 16px;
    }

    .logo-link {
        gap: 10px;
        justify-content: flex-start;
    }

    .logo-img {
        width: min(130px, 34vw);
    }

    .logo-company-name {
        padding-left: 10px;
        font-size: clamp(12px, 3.2vw, 18px);
        letter-spacing: .5px;
        white-space: normal;
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        margin: 0 16px 0 0;
        flex-shrink: 0;
    }

    .nav-toggle span {
        margin: 0;
    }

    .main-nav {
        display: none;
        order: 3;
        width: 100%;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav > ul {
        display: block;
        width: min(92%, 520px);
        padding: 12px 0;
    }

    .main-nav a {
        border: 0;
        border-bottom: 1px solid rgba(0,0,0,.12);
        justify-content: space-between;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        min-width: 0;
        box-shadow: none;
        margin: 0;
        background: rgba(0,0,0,.78);
    }

    .has-dropdown.open .dropdown {
        display: block;
    }

    .intro-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 64px 0;
    }

    .location-section {
        padding: 28px;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 520px) {
    .hero {
        min-height: 470px;
    }

    .hero-content {
        padding: 62px 0;
    }

    .main-nav a {
        font-size: 13px;
        padding: 14px 16px;
    }

    .location-section {
        width: 94%;
        padding: 22px;
    }

    .hours-list div {
        flex-direction: column;
        gap: 4px;
    }
}

.vision-mission-page {
    min-height: auto;
    padding: 24px 0;
}

.vision-mission-content {
    width: min(860px, 90%);
    text-align: left;
}

.vision-mission-content h1 {
    text-align: center;
    margin-bottom: 34px;
}

.vm-block {
    margin-bottom: 30px;
}

.vm-block h2 {
    margin: 0 0 12px;
    color: #111;
    font-size: clamp(26px, 3vw, 38px);
}

.vm-block p {
    margin: 0;
}

.mission-list {
    margin: 0;
    padding-left: 22px;
    color: #222;
    line-height: 1.85;
    font-size: 16px;
}

.mission-list li {
    margin-bottom: 12px;
}


/* Struktur Perusahaan Page */
.structure-company-page {
    padding: 72px 0 84px;
    overflow: hidden;
}

.structure-content {
    width: min(980px, 92%);
    margin: 0 auto;
    text-align: center;
}

.structure-content h1 {
    margin: 0 0 18px;
    font-size: clamp(36px, 6vw, 64px);
    color: #111;
}

.structure-content p {
    margin: 0;
    color: #222;
    font-size: 17px;
    line-height: 1.85;
}

.structure-banner-full {
    width: 100vw;
    margin: 44px 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.structure-banner-full img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.structure-description {
    width: min(920px, 92%);
}

@media (max-width: 520px) {
    .structure-company-page {
        padding: 52px 0 64px;
    }

    .structure-banner-full {
        margin: 30px 0;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .structure-content p {
        font-size: 15px;
        line-height: 1.75;
    }
}

.contact-page p {
    color: #222;
    line-height: 1.8;
    font-size: 16px;
}

.contact-content {
    width: min(860px, 90%);
    margin: 0 auto;
    text-align: center;
}

.contact-content a {
    display: block;
    margin: 6px 0;
    color: #111;
    font-weight: 600;
}

.contact-map-full {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 40px;
}
/* Contact Social Media */
.social-modern {
    width: min(760px, 100%);
    margin: 34px auto 0;
    padding: clamp(24px, 4vw, 38px);
 
}

.social-heading {
    margin-bottom: 22px;
    text-align: center;
}


.social-modern .social-heading h3 {
    margin: 0 0 8px;
    color: #111111;
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.2;
    letter-spacing: -.6px;
}


.social-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.contact-content .social-btn {
    position: relative;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    align-items: center;
    gap: 13px;
    min-width: 0;
    margin: 0;
    padding: 14px;
    overflow: hidden;
    border: 1px solid #e5e5e5;
    border-radius: 17px;
    background: #f8f8f8;
    color: #111111;
    text-align: left;
    box-shadow: none;
    transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}

.contact-content .social-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
}

.contact-content .social-btn.fb::before {
    background: linear-gradient(135deg, rgba(24,119,242,.12), transparent 68%);
}

.contact-content .social-btn.ig::before {
    background: linear-gradient(135deg, rgba(225,48,108,.13), transparent 68%);
}

.contact-content .social-btn.wa::before {
    background: linear-gradient(135deg, rgba(37,211,102,.13), transparent 68%);
}

.contact-content .social-btn.email::before {
    background: linear-gradient(135deg, rgba(17,17,17,.10), transparent 68%);
}

.contact-content .social-btn:hover,
.contact-content .social-btn:focus-visible {
    transform: translateY(-3px);
    border-color: #cfcfcf;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(0,0,0,.09);
}

.contact-content .social-btn:hover::before,
.contact-content .social-btn:focus-visible::before {
    opacity: 1;
}

.contact-content .social-btn:focus-visible {
    outline: 2px solid #111111;
    outline-offset: 3px;
}

.social-icon,
.social-copy,
.social-arrow {
    position: relative;
    z-index: 1;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: #111111;
    color: #ffffff;
    transition: transform .25s ease, background .25s ease;
}

.social-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.social-btn.fb:hover .social-icon,
.social-btn.fb:focus-visible .social-icon {
    background: #1877f2;
}

.social-btn.ig:hover .social-icon,
.social-btn.ig:focus-visible .social-icon {
    background: #e1306c;
}

.social-btn.wa:hover .social-icon,
.social-btn.wa:focus-visible .social-icon {
    background: #25d366;
}

.social-btn:hover .social-icon,
.social-btn:focus-visible .social-icon {
    transform: scale(1.05);
}

.social-copy {
    min-width: 0;
}

.social-copy strong,
.social-copy small {
    display: block;
}

.social-copy strong {
    margin-bottom: 3px;
    color: #111111;
    font-size: 14px;
    font-weight: 800;
}

.social-copy small {
    overflow: hidden;
    color: #777777;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.social-arrow {
    color: #9b9b9b;
    font-size: 17px;
    transition: transform .25s ease, color .25s ease;
}

.social-btn:hover .social-arrow,
.social-btn:focus-visible .social-arrow {
    color: #111111;
    transform: translate(2px, -2px);
}

html[dir="rtl"] .contact-content .social-btn,
html[lang="ar"] .contact-content .social-btn {
    text-align: right;
}

html[dir="rtl"] .social-arrow,
html[lang="ar"] .social-arrow {
    transform: scaleX(-1);
}

@media (max-width: 640px) {
    .social-modern {
        padding: 22px 16px;
        border-radius: 22px;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .contact-content .social-btn {
        grid-template-columns: 42px minmax(0, 1fr) auto;
        padding: 12px;
    }

    .social-icon {
        width: 42px;
        height: 42px;
    }
}

.site-footer {
    border-top: 1px solid #e5e5e5;
    background: #0a0a0a;
}

.footer-inner {
    width: min(1120px, 92%);
    margin: 0 auto;
    padding: 40px 0;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 24px;
    color: #ffffff;
}

.footer-brand p {
    color: #bdbdbd;
    line-height: 1.7;
}

.footer-kicker {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 10px;
    opacity: 0.7;
}

.footer-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.footer-info-card {
    padding: 20px;
    
}

.footer-info-card h3 {
    margin: 0 0 12px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffffff;
}

.footer-info-card address {
    font-style: normal;
    font-size: 14px;
    line-height: 1.7;
    color: #cfcfcf;
}

.footer-hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #222;
    font-size: 14px;
    color: #cfcfcf;
}

.footer-hours-row span:last-child {
    color: #ffffff;
    font-weight: 600;
}

.footer-bottom {
    width: min(1120px, 92%);
    margin: 0 auto;
    padding: 18px 0;
    border-top: 1px solid #1f1f1f;
    display: flex;
    justify-content: space-between;
    color: #8a8a8a;
    font-size: 13px;
}

/* Briquette Quality Section */
.briquette-quality-section {
    position: relative;
    overflow: hidden;
    padding: 84px 0 90px;
    background: #050505;
    color: #ffffff;
    border-top: 1px solid rgba(255,255,255,.10);
}

.briquette-quality-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: none;
    background-size: auto;
    mask-image: none;
    pointer-events: none;
}

.quality-glow {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(255,255,255,.10);
    filter: blur(22px);
    opacity: .55;
    animation: qualityGlowMove 9s ease-in-out infinite;
}

.quality-glow-one {
    top: -120px;
    left: -90px;
}

.quality-glow-two {
    right: -120px;
    bottom: -130px;
    animation-delay: 1.5s;
}

.quality-inner {
    position: relative;
    z-index: 1;
    width: min(1120px, 92%);
    margin: 0 auto;
}

.quality-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
    animation: qualityFadeUp .75s ease both;
}

.quality-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: #d9d9d9;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.quality-heading h2 {
    margin: 0 0 16px;
    font-size: clamp(22px, 3vw, 36px);
    line-height: 1.02;
    letter-spacing: -1.6px;
    color: #ffffff;
}

.quality-heading p {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255,255,255,.72);
    font-size: 16px;
    line-height: 1.85;
    text-align: center;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.quality-card {
    position: relative;
    overflow: hidden;
    min-height: 260px;
    padding: 28px;
    
    
    
    
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    
}

.quality-card:nth-child(2) {
    animation-delay: .12s, .4s;
}

.quality-card:nth-child(3) {
    animation-delay: .24s, .8s;
}





.quality-card:hover::before {
    transform: translateX(120%);
}

.quality-icon {
    position: relative;
    z-index: 1;
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    margin-bottom: 26px;
    border-radius: 20px;
    background: #ffffff;
    color: #050505;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: .4px;
    box-shadow: 0 14px 32px rgba(255,255,255,.14);
}

.quality-card h3,
.quality-card p {
    position: relative;
    z-index: 1;
}

.quality-card h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 21px;
    line-height: 1.25;
}

.quality-card p {
    margin: 0;
    color: rgba(255,255,255,.70);
    font-size: 15px;
    line-height: 1.75;
}

@keyframes qualityFadeUp {
    from { opacity: 0; transform: translateY(26px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes qualityCardIn {
    from { opacity: 0; transform: translateY(30px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes qualityCardFloat {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -8px; }
}

@keyframes qualityGlowMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(28px, 22px) scale(1.08); }
}

@media (max-width: 900px) {
    .briquette-quality-section {
        padding: 66px 0 72px;
    }

    .quality-grid {
        grid-template-columns: 1fr;
    }

    .quality-card {
        min-height: auto;
    }
}

@media (max-width: 520px) {
    .quality-heading h2 {
        letter-spacing: -1px;
    }

    .quality-card {
        padding: 24px;
        border-radius: 20px;
    }

    .quality-icon {
        width: 62px;
        height: 62px;
    }
}



/* Popup Ads - image only, no frame, no background */
.popup-ad {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    padding: 22px;
    opacity: 0;
    visibility: hidden;
    background: transparent;
    pointer-events: none;
    transition: opacity .28s ease, visibility .28s ease;
}

.popup-ad.is-show {
    opacity: 1;
    visibility: visible;
}

.popup-ad-inner {
    position: relative;
    width: fit-content;
   max-width: 90vw;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    pointer-events: auto;
    animation: popupAdIn .32s ease both;
}

.popup-ad-link {
    display: block;
    padding: 0;
    margin: 0;
    border: 0;
    background: transparent;
}

.popup-ad-link img {
    display: block;
    width: auto;
	height: auto;
    max-width: 75vw;
    max-height: 85vh;
    object-fit: contain;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.popup-ad-close {
    position: absolute;
    top: -38px;
    right: -4px;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ffffff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    text-shadow: 0 2px 8px rgba(0,0,0,.85);
}

.popup-ad-close:hover {
    transform: scale(1.08);
}

@keyframes popupAdIn {
    from { opacity: 0; transform: translateY(16px) scale(.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 520px) {
    .popup-ad-inner,
    .popup-ad-link img {
        max-width: 90vw;
    }

    .popup-ad-close {
        top: -34px;
        right: 0;
        font-size: 30px;
    }
}

/* Production Process Page */
.production-page {
    background: #050505;
    color: var(--white);
    overflow: hidden;
}

.production-container {
    width: min(1120px, 92%);
    margin: 0 auto;
}

.production-hero {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
    overflow: hidden;
}

.production-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.84);
}

.production-hero-inner {
    position: relative;
    z-index: 1;
    width: min(920px, 90%);
    margin: 0 auto;
    padding: 92px 0;
    text-align: center;
    animation: productionFadeUp .75s ease both;
}

.production-label,
.production-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    padding: 9px 16px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: var(--silver-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.production-hero h1 {
    max-width: 880px;
    margin: 0 auto 18px;
    color: var(--white);
    font-size: clamp(24px, 3.6vw, 44px);
    line-height: 1.08;
    letter-spacing: -1px;
    text-shadow: 0 12px 34px rgba(0,0,0,.55);
}

.production-hero p {
    max-width: 820px;
    margin: 0 auto;
    color: rgba(255,255,255,.82);
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.75;
}

.production-intro {
    padding: 86px 0 60px;
    text-align: center;
}

.production-intro h2,
.production-section-head h2,
.process-content h3,
.production-cta h2 {
    color: var(--white);
}

.production-intro h2,
.production-section-head h2,
.production-cta h2 {
    margin: 0 0 18px;
    font-size: clamp(24px, 3.6vw, 44px);
    line-height: 1.08;
    letter-spacing: -1px;
}

.production-intro p {
    max-width: 980px;
    margin: 0 auto 14px;
    color: rgba(255,255,255,.78);
    font-size: 17px;
    line-height: 1.85;
}

.production-method {
    padding: 42px 0 30px;
}

.production-section-head {
    max-width: 920px;
    margin: 0 auto 46px;
    text-align: center;
}

.production-section-head-left {
    margin-left: 0;
    text-align: left;
}

.production-section-head p {
    margin: 0 auto;
    color: rgba(255,255,255,.76);
    font-size: 16px;
    line-height: 1.8;
}

.process-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
    margin: 0 0 42px;
    padding: 52px;
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 0;
    background: rgba(255,255,255,.07);
    box-shadow: 0 28px 70px rgba(0,0,0,.38);
    animation: productionFadeUp .8s ease both;
}

.process-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,.035);
    pointer-events: none;
}

.process-media {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: clamp(260px, 32vw, 390px);
    background: #0c0c0c;
}

.process-media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: grayscale(8%) contrast(1.03);
    transform: scale(1.01);
    transition: transform .45s ease, filter .45s ease;
}
.process-card:hover .process-media img {
    transform: scale(1.055);
    filter: grayscale(0%) contrast(1.08);
}

.process-content {
    position: relative;
    z-index: 1;
}

.process-number {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 50%;
    background: #ffffff;
    color: #050505;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .6px;
}

.process-content h3 {
    margin: 0 0 18px;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.1;
    letter-spacing: .8px;
}

.process-content p {
    margin: 0 0 14px;
    color: rgba(255,255,255,.78);
    font-size: 16px;
    line-height: 1.75;
}

.oven-table-wrap,
.drop-table-wrap {
    width: 100%;
    overflow-x: auto;
    margin-top: 22px;
}

.oven-table,
.drop-table {
    width: 100%;
    border-collapse: collapse;
    color: rgba(255,255,255,.86);
    min-width: 560px;
}

.oven-table th,
.oven-table td,
.drop-table th,
.drop-table td {
    padding: 14px 15px;
    border: 1px solid rgba(255,255,255,.18);
    font-size: 14px;
    text-align: left;
}

.oven-table th,
.drop-table th {
    color: var(--white);
    background: rgba(255,255,255,.08);
    font-weight: 800;
}

.quality-process {
    padding: 46px 0 42px;
}

.quality-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 28px 0 32px;
    justify-items: center;
}

.quality-image-grid img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,.10);
}

.quality-image-grid img:nth-child(3) {
    grid-column: 1 / -1;
    width: calc(50% - 12px);
}



.quality-card-grid {
    display: grid;
    grid-template-columns: 1.2fr .9fr .9fr;
    gap: 18px;
}

.quality-detail-card {
    padding: 26px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.055);
}

.quality-detail-card h3 {
    margin: 0 0 14px;
    color: var(--white);
    font-size: 21px;
    line-height: 1.25;
}

.quality-detail-card p {
    margin: 0;
    color: rgba(255,255,255,.76);
    font-size: 15px;
    line-height: 1.75;
}

.packaging-section {
    padding: 30px 0 62px;
}

.production-list {
    margin: 18px 0 0;
    padding-left: 18px;
    color: rgba(255,255,255,.78);
    line-height: 1.75;
}

.production-list li {
    margin-bottom: 10px;
}

.production-list strong {
    color: var(--white);
}

.production-cta {
    position: relative;
    padding: 88px 0 94px;
    background: #0b0b0b;
    border-top: 1px solid rgba(255,255,255,.10);
    text-align: center;
}

.production-cta-inner {
    width: min(960px, 90%);
    margin: 0 auto;
}

.production-cta p {
    max-width: 840px;
    margin: 0 auto 30px;
    color: rgba(255,255,255,.78);
    font-size: 16px;
    line-height: 1.82;
}

.production-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 230px;
    padding: 15px 26px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    background: #d9d9d9;
    color: #050505;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .3px;
    text-transform: uppercase;
    box-shadow: 0 18px 40px rgba(0,0,0,.36);
    transition: transform .28s ease, filter .28s ease, box-shadow .28s ease;
}

.production-wa-btn:hover {
    transform: translateY(-4px);
    filter: brightness(1.08);
    box-shadow: 0 22px 48px rgba(0,0,0,.48);
}

@keyframes productionFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {
    .production-hero {
        min-height: 470px;
    }

    .production-intro {
        padding: 68px 0 46px;
    }

    .process-card,
    .process-card-image-left,
    .process-card-image-right {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 34px;
    }

    .process-card-image-right .process-media {
        order: -1;
    }

    .quality-image-grid,
    .quality-card-grid {
        grid-template-columns: 1fr;
    }

    .quality-image-grid img {
        height: 280px;
    }
}

@media (max-width: 520px) {
    .production-hero-inner {
        padding: 70px 0;
    }

    .production-label,
    .production-kicker {
        font-size: 11px;
        letter-spacing: 1.4px;
    }

    .production-intro p,
    .production-section-head p,
    .process-content p,
    .production-cta p {
        font-size: 15px;
        line-height: 1.72;
    }

    .process-card {
        width: 100%;
        padding: 24px;
        margin-bottom: 28px;
    }

    .process-media {
    height: 240px;
}

.process-media img {
    height: 100%;
}

    .quality-image-grid img {
        height: 230px;
    }

    .production-wa-btn {
        width: 100%;
        min-width: 0;
    }
}

/* Products Page */
.products-page {
    min-height: 70vh;
    padding: 0 0 86px;
    background: #ffffff;
    color: #111111;
}

.products-hero {
    width: min(980px, 92%);
    margin: 0 auto;
    padding: 72px 0 28px;
    text-align: center;
    background: #ffffff;
}

.products-hero-inner {
    width: min(760px, 100%);
    margin: 0 auto;
    animation: fadeUp .7s ease both;
}

.products-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 8px 14px;
    border: 1px solid #dcdcdc;
    border-radius: 999px;
    background: #f7f7f7;
    color: #4d4d4d;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.products-hero h1 {
    margin: 0 0 14px;
    color: #111111;
    font-size: clamp(24px, 3.6vw, 44px);
    line-height: 1.05;
    letter-spacing: -1px;
}

.products-hero p {
    max-width: 680px;
    margin: 0 auto;
    color: #444444;
    font-size: 16px;
    line-height: 1.8;
}

.products-section {
    width: min(1180px, 92%);
    margin: 0 auto;
    padding: 28px 0 0;
    background: #ffffff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 320px));
    justify-content: center;
    align-items: stretch;
    gap: 28px;
}

.product-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid #e8e8e8;
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
    cursor: pointer;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.product-card:hover,
.product-card:focus-visible {
    transform: translateY(-8px);
    border-color: #cfcfcf;
    box-shadow: 0 28px 65px rgba(0,0,0,.13);
    outline: none;
}

.product-image-wrap {
    display: grid;
    place-items: center;
    width: 100%;
    height: 260px;
    padding: 18px;
    background: #fafafa;
    border-bottom: 1px solid #eeeeee;
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-no-image,
.product-modal-no-image {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    min-height: 220px;
    border: 1px dashed #d6d6d6;
    border-radius: 18px;
    color: #777777;
    font-size: 14px;
    font-weight: 700;
    background: #f6f6f6;
}

.product-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 22px;
    text-align: center;
}

.product-content h2 {
    margin: 0 0 12px;
    color: #111111;
    font-size: 20px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.product-content p {
    margin: 0 0 18px;
    color: #555555;
    font-size: 14px;
    line-height: 1.7;
}

.product-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 9px;
    margin: 0 0 14px;
}

.product-strike-price {
    color: #8a8a8a;
    font-size: 14px;
    font-weight: 700;
    text-decoration: line-through;
}

.product-price {
    color: #111111;
    font-size: 20px;
    font-weight: 900;
}

.product-action-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.product-detail-btn,
.product-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .35px;
    transition: transform .25s ease, filter .25s ease;
}

.product-detail-btn {
    border: 1px solid #d9d9d9;
    background: #f7f7f7;
    color: #111111;
}

.product-wa-btn {
    border: 1px solid #1aa952;
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(37,211,102,.22);
}

.product-detail-btn:hover,
.product-wa-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
}

.products-empty {
    width: min(720px, 100%);
    margin: 0 auto;
    padding: 46px 28px;
    border: 1px dashed #d9d9d9;
    border-radius: 24px;
    background: #ffffff;
    text-align: center;
}

.products-empty h2 {
    margin: 0 0 10px;
    color: #111111;
    font-size: 26px;
}

.products-empty p {
    margin: 0;
    color: #555555;
    line-height: 1.7;
}

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
}

.product-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.product-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.56);
    backdrop-filter: blur(4px);
}

.product-modal-box {
    position: relative;
    z-index: 1;
    width: min(920px, 96vw);
    max-height: 88vh;
    overflow: auto;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 32px 90px rgba(0,0,0,.28);
    animation: productModalIn .28s ease both;
}

.product-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: #111111;
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.product-modal-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 0;
}

.product-modal-image-wrap {
    display: grid;
    place-items: center;
    min-height: 440px;
    padding: 34px;
    background: #f8f8f8;
}

.product-modal-image-wrap img {
    width: 100%;
    max-height: 430px;
    object-fit: contain;
}

.product-modal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 58px 42px 42px;
    text-align: left;
}

.product-modal-content h2 {
    margin: 0 0 16px;
    color: #111111;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.12;
    text-transform: uppercase;
    letter-spacing: -.5px;
}

.product-modal-price-row {
    justify-content: flex-start;
    margin-bottom: 20px;
}

.product-modal-content p {
    margin: 0 0 26px;
    color: #444444;
    font-size: 15px;
    line-height: 1.85;
    white-space: pre-line;
}

.product-modal-wa {
    width: fit-content;
}

.product-modal-open {
    overflow: hidden;
}

@keyframes productModalIn {
    from { opacity: 0; transform: translateY(18px) scale(.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 820px) {
    .products-hero {
        padding: 58px 0 22px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }

    .product-modal-grid {
        grid-template-columns: 1fr;
    }

    .product-modal-image-wrap {
        min-height: 300px;
        padding: 28px;
    }

    .product-modal-content {
        padding: 34px 26px 30px;
        text-align: center;
    }

    .product-modal-price-row {
        justify-content: center;
    }

    .product-modal-wa {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .products-page {
        padding-bottom: 64px;
    }

    .products-section {
        width: 90%;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .product-image-wrap {
        height: 230px;
    }

    .product-content {
        padding: 20px;
    }

    .product-action-row,
    .product-detail-btn,
    .product-wa-btn {
        width: 100%;
    }

    .product-modal {
        padding: 14px;
    }

    .product-modal-box {
        border-radius: 20px;
    }
}

.success-box{
    max-width:650px;
    margin:30px auto;
    background:#fff;
    border-radius:20px;
    padding:40px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    border-top:6px solid #28a745;
    animation:fadeUp .5s ease;
}

.success-icon{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#28a745;
    color:#fff;
    font-size:48px;
    line-height:90px;
    font-weight:bold;
    box-shadow:0 10px 25px rgba(40,167,69,.35);
}

.success-box h2{
    margin-top:25px;
    margin-bottom:15px;
    font-size:30px;
    color:#222;
}

.success-box p{
    color:#666;
    line-height:1.8;
    font-size:16px;
}

.success-box .small{
    font-size:15px;
    color:#888;
}

.success-box button{
    margin-top:30px;
    background:#111;
    color:#fff;
    border:none;
    padding:14px 35px;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
    transition:.3s;
}

.success-box button:hover{
    background:#28a745;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(25px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}



.product-featured{
    width: min(1100px, 92%);
    margin: 40px auto 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.product-featured-image img{
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
   
}

.product-featured-content h2{
    margin: 0 0 14px;
    font-size: 28px;
    color: #111;
}

.product-featured-content p{
    margin: 0 0 12px;
    color: #444;
    line-height: 1.8;
    font-size: 15px;
}

.product-featured-content h3{
    margin-top: 18px;
    margin-bottom: 10px;
}

.product-featured-content ul{
    padding-left: 18px;
    margin: 0 0 18px;
    color: #333;
    line-height: 1.7;
}

.product-wa-main{
    display: inline-block;
    margin-top: 10px;
    padding: 12px 20px;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
}

.product-wa-main:hover{
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* responsive */
@media(max-width: 820px){
    .product-featured{
        grid-template-columns: 1fr;
    }
}

/* Floating WhatsApp Chat */
.floating-wa-chat {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9990;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
    pointer-events: auto;
}

.floating-wa-text {
    max-width: 290px;
    padding: 13px 16px;
    border-radius: 18px 18px 4px 18px;
    background: #ffffff;
    color: #111111;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    box-shadow: 0 14px 34px rgba(0,0,0,.22);
    transform: translateX(8px);
    opacity: 0;
    visibility: hidden;
    transition: .25s ease;
}

.floating-wa-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 14px 34px rgba(37,211,102,.34);
    transition: transform .25s ease, filter .25s ease;
}

.floating-wa-icon svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

.floating-wa-chat:hover .floating-wa-text,
.floating-wa-chat:focus-visible .floating-wa-text {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.floating-wa-chat:hover .floating-wa-icon,
.floating-wa-chat:focus-visible .floating-wa-icon {
    transform: translateY(-4px) scale(1.04);
    filter: brightness(1.08);
}

@media (max-width: 520px) {
    .floating-wa-chat {
        right: 16px;
        bottom: 16px;
    }

    .floating-wa-text {
        display: none;
    }

    .floating-wa-icon {
        width: 54px;
        height: 54px;
    }

    .floating-wa-icon svg {
        width: 30px;
        height: 30px;
    }
}


/* Global text alignment fix */
p, .section p, .facts-list li {
    text-align: justify;
}
html[lang="ar"] {
    direction: rtl;
    text-align: right;
}

.lang-switch {
    position: absolute;
    right: 20px;
    top: 20px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.lang-switch a {
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    background: rgba(0,0,0,0.4);
    transition: 0.2s;
}

.lang-switch a:hover {
    background: #fff;
    color: #000;
}

.active-lang {
    background: #ffffff !important;
    color: #000 !important;
}

/* Fix Floating WhatsApp position on Arabic layout */
html[lang="ar"] .floating-wa-chat {
    right: 24px;
    left: auto;
    direction: ltr;
    flex-direction: row;
}

html[lang="ar"] .floating-wa-text {
    direction: rtl;
    text-align: right;
    border-radius: 18px 18px 18px 4px;
    transform: translateX(8px);
}

html[lang="ar"] .floating-wa-chat:hover .floating-wa-text,
html[lang="ar"] .floating-wa-chat:focus-visible .floating-wa-text {
    transform: translateX(0);
}

@media (max-width: 520px) {
    html[lang="ar"] .floating-wa-chat {
        right: 16px;
        left: auto;
    }
}

/* =========================================================
   Header Mobile Responsive Fix
   ========================================================= */
.site-header {
    width: 100%;
}

.main-nav > ul > li {
    position: relative;
}

html[dir="rtl"] .lang-switch {
    right: auto;
    left: 20px;
}

html[dir="rtl"] .dropdown {
    left: auto;
    right: 0;
}

@media (max-width: 900px) {
    .site-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 0;
        padding: 0;
    }

    .logo-wrap {
        order: 1;
        flex: 1 1 auto;
        min-width: 0;
        justify-content: flex-start;
        padding: 10px 12px;
    }

    .logo-link {
        width: 100%;
        min-width: 0;
        gap: 9px;
        justify-content: flex-start;
    }

    .logo-img {
        flex: 0 0 auto;
        height: 46px;
        width: auto;
        max-width: 68px;
    }

    .logo-company-name {
        min-width: 0;
        max-width: calc(100vw - 145px);
        padding-left: 8px;
        font-size: clamp(13px, 3.6vw, 18px);
        line-height: 1.18;
        letter-spacing: .35px;
        white-space: normal;
        word-break: keep-all;
        overflow-wrap: anywhere;
    }

    .nav-toggle {
        order: 2;
        display: inline-flex;
        flex: 0 0 auto;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        width: 44px;
        height: 38px;
        margin: 0 12px 0 0;
    }

    html[dir="rtl"] .nav-toggle {
        margin: 0 0 0 12px;
    }

    .nav-toggle span {
        margin: 0;
    }

    .lang-switch {
        position: static;
        order: 3;
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 8px;
        padding: 0 12px 10px;
        z-index: 1;
    }

    html[dir="rtl"] .lang-switch {
        left: auto;
        right: auto;
    }

    .lang-switch a {
        min-width: 42px;
        text-align: center;
        padding: 6px 9px;
        font-size: 12px;
    }

    .main-nav {
        order: 4;
        display: none;
        width: 100%;
        border-top: 1px solid rgba(255,255,255,.14);
        background: #d4d4d4;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav > ul {
        display: block;
        width: 100%;
        max-width: none;
        margin: 0;
        padding: 8px 12px 12px;
    }

    .main-nav > ul > li {
        width: 100%;
        display: block;
    }

    .main-nav a {
        width: 100%;
        min-height: 44px;
        justify-content: space-between;
        padding: 13px 14px;
        border: 0;
        border-bottom: 1px solid rgba(0,0,0,.12);
        border-radius: 12px;
        font-size: 13px;
        line-height: 1.3;
    }

    .main-nav a.active,
    .main-nav a:hover {
        color: #ffffff;
        background: #111111;
    }

    .dropdown {
        position: static;
        display: none;
        min-width: 0;
        width: 100%;
        margin: 6px 0 10px;
        padding: 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
        border-radius: 14px;
        box-shadow: none;
        background: rgba(0,0,0,.82);
    }

    .has-dropdown.open .dropdown {
        display: block;
    }

    .dropdown a {
        min-height: 40px;
        padding: 11px 12px;
        color: #ffffff;
        border-bottom: 1px solid rgba(255,255,255,.10);
        border-radius: 10px;
        font-size: 13px;
    }

    .dropdown li:last-child a {
        border-bottom: 0;
    }
}

@media (max-width: 520px) {
    .logo-wrap {
        padding: 9px 10px;
    }

    .logo-img {
        height: 40px;
        max-width: 58px;
    }

    .logo-company-name {
        max-width: calc(100vw - 120px);
        padding-left: 6px;
        font-size: clamp(11px, 3.55vw, 14px);
        letter-spacing: .2px;
    }

    .nav-toggle {
        width: 40px;
        height: 36px;
        margin-right: 10px;
        border-radius: 10px;
    }

    html[dir="rtl"] .nav-toggle {
        margin-left: 10px;
        margin-right: 0;
    }

    .nav-toggle span {
        width: 20px;
    }

    .lang-switch {
        padding: 0 10px 9px;
    }

    .lang-switch a {
        min-width: 38px;
        padding: 5px 8px;
        font-size: 11px;
    }

    .main-nav > ul {
        padding: 8px 10px 12px;
    }

    .main-nav a {
        padding: 12px 13px;
        font-size: 12.5px;
    }
}

/* =========================================================
   Extra Fix: Hamburger Button Click Area on Mobile
   ========================================================= */
.nav-toggle {
    position: relative;
    z-index: 1005;
    pointer-events: auto;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.nav-toggle span {
    pointer-events: none;
}

@media (max-width: 900px) {
    .site-header {
        position: sticky;
        top: 0;
        z-index: 999;
    }

    .logo-wrap {
        position: relative;
        z-index: 1;
        max-width: calc(100% - 66px);
    }

    .nav-toggle {
        position: relative;
        z-index: 1006;
        cursor: pointer;
    }

    .lang-switch {
        position: static !important;
        z-index: 1;
    }

    .main-nav {
        position: relative;
        z-index: 1004;
    }

    .main-nav.open {
        display: block !important;
    }
}

@media (max-width: 520px) {
    .logo-wrap {
        max-width: calc(100% - 58px);
    }
}

/* =========================================================
   Fix Sambutan Page Position
   Tengah halaman, teks tetap tidak ikut center
   ========================================================= */
.page-hero {
    width: min(1120px, 94%);
    justify-content: center;
}

.page-hero-inner {
    width: min(820px, 92%);
    margin: 0 auto;
}

.page-hero h1 {
    text-align: left;
}

.page-hero p {
    text-align: justify;
}

html[lang="ar"] .page-hero h1,
html[dir="rtl"] .page-hero h1 {
    text-align: right;
}

html[lang="ar"] .page-hero p,
html[dir="rtl"] .page-hero p {
    text-align: justify;
}

@media (max-width: 520px) {
    .page-hero {
        width: min(100%, 94%);
        margin: 46px auto;
    }

    .page-hero-inner {
        width: 100%;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 10000;
    width: min(480px, calc(100% - 48px));
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none;
}

.cookie-consent.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-consent[hidden] {
    display: none !important;
}

.cookie-consent-content {
    padding: 18px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 22px;
    background: rgba(10,10,10,.94);
    color: #ffffff;
    box-shadow: 0 24px 60px rgba(0,0,0,.36);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.cookie-consent-text strong {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: .2px;
}

.cookie-consent-text p {
    margin: 0;
    color: #d8d8d8;
    font-size: 13px;
    line-height: 1.65;
    text-align: left;
}

.cookie-consent-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 16px;
}

.cookie-consent-btn {
    min-width: 96px;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, filter .2s ease, background .2s ease;
}

.cookie-consent-btn:hover,
.cookie-consent-btn:focus-visible {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.cookie-consent-btn:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 3px;
}

.cookie-consent-reject {
    background: transparent;
    color: #ffffff;
}

.cookie-consent-accept {
    background: #ffffff;
    color: #0a0a0a;
}

html[lang="ar"] .cookie-consent,
html[dir="rtl"] .cookie-consent {
    direction: rtl;
    text-align: right;
}

html[lang="ar"] .cookie-consent-text p,
html[dir="rtl"] .cookie-consent-text p {
    text-align: right;
}

@media (max-width: 520px) {
    .cookie-consent {
        left: 14px;
        right: 14px;
        bottom: 84px;
        width: auto;
    }

    .cookie-consent-content {
        padding: 16px;
        border-radius: 18px;
    }

    .cookie-consent-actions {
        justify-content: stretch;
    }

    .cookie-consent-btn {
        flex: 1;
        min-width: 0;
    }
}



/* =========================================================
   Compact Language Switcher
   ========================================================= */
details.lang-switch {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1000;
    display: inline-block;
    font-size: 12px;
}

details.lang-switch summary {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-width: 58px;
    padding: 7px 11px;
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    color: #ffffff;
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    list-style: none;
    user-select: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

details.lang-switch summary::-webkit-details-marker {
    display: none;
}

details.lang-switch summary::before {
    content: "🌐";
    font-size: 13px;
    line-height: 1;
}

details.lang-switch summary::after {
    content: "▾";
    font-size: 10px;
    line-height: 1;
    transition: transform .2s ease;
}

details.lang-switch[open] summary::after {
    transform: rotate(180deg);
}

details.lang-switch .lang-options {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 132px;
    padding: 6px;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 14px;
    background: rgba(10,10,10,.96);
    box-shadow: 0 18px 42px rgba(0,0,0,.28);
}

details.lang-switch .lang-options a {
    display: block;
    min-width: 0;
    padding: 9px 10px;
    border: 0;
    border-radius: 10px;
    background: transparent;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-align: left;
    text-decoration: none;
    transition: .2s ease;
}

details.lang-switch .lang-options a:hover,
details.lang-switch .lang-options a.active-lang {
    background: #ffffff !important;
    color: #000000 !important;
}

html[dir="rtl"] details.lang-switch {
    right: auto;
    left: 20px;
}

html[dir="rtl"] details.lang-switch .lang-options {
    right: auto;
    left: 0;
}

html[dir="rtl"] details.lang-switch .lang-options a {
    text-align: right;
}

@media (max-width: 900px) {
    details.lang-switch {
        position: relative !important;
        order: 3;
        top: auto;
        right: auto;
        left: auto;
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 0 12px 10px;
        z-index: 1004;
    }

    html[dir="rtl"] details.lang-switch {
        right: auto;
        left: auto;
    }

    details.lang-switch summary {
        min-width: 64px;
        justify-content: center;
        padding: 7px 12px;
    }

    details.lang-switch .lang-options {
        right: auto;
        left: 50%;
        top: calc(100% - 3px);
        transform: translateX(-50%);
        min-width: 148px;
    }

    html[dir="rtl"] details.lang-switch .lang-options {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 520px) {
    details.lang-switch {
        padding: 0 10px 9px;
    }

    details.lang-switch summary {
        min-width: 58px;
        padding: 6px 10px;
        font-size: 11px;
    }

    details.lang-switch .lang-options a {
        font-size: 11px;
    }
}

/* =========================================================
   Final Mobile Header Fix
   Bahasa di kiri hamburger + hamburger simpel
   ========================================================= */
@media (max-width: 900px) {
    .site-header {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
        column-gap: 0;
    }

    .logo-wrap {
        order: 1 !important;
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 116px) !important;
        padding: 10px 10px 10px 12px;
    }

    .logo-link {
        min-width: 0;
    }

    .logo-company-name {
        max-width: calc(100vw - 178px) !important;
    }

    details.lang-switch {
        order: 2 !important;
        position: relative !important;
        top: auto !important;
        right: auto !important;
        left: auto !important;
        width: auto !important;
        display: inline-flex !important;
        justify-content: center;
        align-items: center;
        flex: 0 0 auto;
        padding: 0 !important;
        margin: 0 8px 0 0 !important;
        z-index: 1007;
    }

    details.lang-switch summary {
        min-width: 46px !important;
        height: 34px;
        justify-content: center;
        padding: 0 9px !important;
        border: 0;
        border-radius: 10px;
        background: #d9d9d9;
        color: #111111;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        font-size: 11px;
        line-height: 1;
    }

    details.lang-switch summary::before {
        display: none;
        content: none;
    }

    details.lang-switch summary::after {
        color: #111111;
        font-size: 9px;
    }

    details.lang-switch .lang-options {
        right: 0 !important;
        left: auto !important;
        top: calc(100% + 8px) !important;
        transform: none !important;
        min-width: 138px;
    }

    .nav-toggle {
        order: 3 !important;
        position: relative;
        z-index: 1008;
        display: inline-flex;
        flex: 0 0 auto;
        width: 34px !important;
        height: 34px !important;
        margin: 0 12px 0 0 !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        gap: 4px !important;
    }

    .nav-toggle span {
        width: 24px !important;
        height: 2px !important;
        margin: 0 !important;
        background: #ffffff !important;
        border-radius: 999px;
    }

    .main-nav {
        order: 4 !important;
    }

    html[dir="rtl"] details.lang-switch {
        margin: 0 0 0 8px !important;
    }

    html[dir="rtl"] details.lang-switch .lang-options {
        right: auto !important;
        left: 0 !important;
        transform: none !important;
    }

    html[dir="rtl"] .nav-toggle {
        margin: 0 0 0 12px !important;
    }
}

@media (max-width: 520px) {
    .logo-wrap {
        max-width: calc(100% - 104px) !important;
        padding: 9px 8px 9px 10px;
    }

    .logo-company-name {
        max-width: calc(100vw - 154px) !important;
    }

    details.lang-switch {
        margin-right: 6px !important;
    }

    details.lang-switch summary {
        min-width: 42px !important;
        height: 32px;
        padding: 0 8px !important;
        font-size: 10.5px;
    }

    .nav-toggle {
        width: 32px !important;
        height: 32px !important;
        margin-right: 10px !important;
    }

    .nav-toggle span {
        width: 22px !important;
    }

    html[dir="rtl"] details.lang-switch {
        margin-left: 6px !important;
        margin-right: 0 !important;
    }

    html[dir="rtl"] .nav-toggle {
        margin-left: 10px !important;
        margin-right: 0 !important;
    }
}



/* =========================================================
   Artikel Page Responsive Layout
   ========================================================= */
.article-page-main {
    padding: 30px;
}

.article-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 25px;
    align-items: start;
}

.article-content-column,
.article-sidebar {
    min-width: 0;
}

.article-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

@media (max-width: 900px) {
    .article-page-main {
        padding: 20px 14px;
    }

    .article-page-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .article-content-column {
        order: 1;
    }

    .article-sidebar {
        order: 2;
    }

    .article-card-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .article-card-grid .admin-card,
    .article-sidebar {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .article-page-main {
        padding: 16px 12px;
    }

    .article-page-layout {
        gap: 18px;
    }

    .article-card-grid {
        gap: 14px;
    }
}

/* =========================================================
   Footer Mobile Responsive Fix
   ========================================================= */
@media (max-width: 900px) {
    .site-footer {
        overflow: hidden;
    }

    .footer-inner {
        width: min(100%, 92%);
        padding: 34px 0 22px;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 24px;
        text-align: center;
    }

    .footer-brand {
        width: 100%;
        max-width: 620px;
        margin: 0 auto;
    }

    .footer-brand h2 {
        margin: 0 0 12px;
        font-size: clamp(22px, 6vw, 30px);
        line-height: 1.2;
        letter-spacing: .4px;
    }

    .footer-brand p {
        margin: 0 auto;
        max-width: 560px;
        font-size: 14px;
        line-height: 1.75;
        text-align: center;
    }

    .footer-kicker {
        margin-bottom: 10px;
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    .footer-info-grid {
        width: 100%;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px;
    }

    .footer-info-card {
        width: 100%;
        padding: 18px 16px;
        border: 1px solid rgba(255,255,255,.10);
        border-radius: 18px;
        background: rgba(255,255,255,.045);
        text-align: center;
    }

    .footer-info-card h3 {
        margin-bottom: 10px;
        font-size: 12px;
        line-height: 1.35;
    }

    .footer-info-card address {
        font-size: 13px;
        line-height: 1.65;
        text-align: center;
    }

    .footer-hours-row {
        justify-content: center;
        gap: 12px;
        padding: 9px 0;
        font-size: 13px;
        text-align: center;
    }

    .footer-bottom {
        width: min(100%, 92%);
        padding: 16px 0 82px;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 7px;
        text-align: center;
        font-size: 12px;
        line-height: 1.5;
    }
}

@media (max-width: 520px) {
    .footer-inner {
        width: min(100%, 90%);
        padding: 30px 0 18px;
        gap: 20px;
    }

    .footer-brand h2 {
        font-size: 22px;
    }

    .footer-brand p {
        font-size: 13px;
        line-height: 1.7;
    }

    .footer-info-grid {
        gap: 10px;
    }

    .footer-info-card {
        padding: 16px 14px;
        border-radius: 16px;
    }

    .footer-info-card address {
        font-size: 12.8px;
    }

    .footer-hours-row {
        flex-direction: column;
        gap: 3px;
    }

    .footer-bottom {
        width: min(100%, 90%);
        padding-bottom: 82px;
        font-size: 11.5px;
    }
}

html[dir="rtl"] .footer-inner,
html[dir="rtl"] .footer-brand p,
html[dir="rtl"] .footer-info-card,
html[dir="rtl"] .footer-info-card address,
html[dir="rtl"] .footer-bottom {
    text-align: center;
}
/* =========================================================
   Order Page
   ========================================================= */
.order-page {
    padding: clamp(34px, 6vw, 86px) 0;
    background: #eeeeee;
}

.order-shell {
    width: min(1240px, 94%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(290px, .78fr) minmax(0, 1.45fr);
    overflow: hidden;
    border: 1px solid #d8d8d8;
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .12);
}

.order-intro {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 680px;
    padding: clamp(38px, 5vw, 72px);
    overflow: hidden;
    background: #0b0b0b;
    color: #ffffff;
}

.order-intro::after {
    content: '';
    position: absolute;
    right: -130px;
    bottom: -150px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
}

.order-kicker {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-bottom: 22px;
    color: #c9c9c9;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.order-intro h1 {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(38px, 5vw, 70px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -2.6px;
}

.order-intro p {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 30px 0 0;
    color: #cfcfcf;
    font-size: 15px;
    line-height: 1.8;
    text-align: left;
}

.order-form-panel {
    min-width: 0;
    padding: clamp(30px, 5vw, 68px);
}

.order-form-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.order-form-heading h2 {
    margin: 0 0 7px;
    color: #111111;
    font-size: clamp(25px, 3vw, 36px);
    line-height: 1.15;
}

.order-form-heading p,
.order-form-footer p {
    margin: 0;
    color: #6b6b6b;
    font-size: 13px;
    line-height: 1.65;
    text-align: left;
}

.order-alert {
    margin-bottom: 26px;
    padding: 16px 18px;
    border: 1px solid #d7d7d7;
    border-radius: 14px;
    background: #f7f7f7;
    color: #222222;
    font-size: 14px;
    line-height: 1.6;
}

.order-alert strong,
.order-alert span {
    display: block;
}

.order-alert ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.order-alert--success {
    border-color: #b8d9c2;
    background: #edf8f0;
}

.order-alert--error {
    border-color: #e0baba;
    background: #fff2f2;
}

.order-form-top {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto;
    align-items: start;
    gap: 28px;
    margin-bottom: 30px;
    padding-bottom: 28px;
    border-bottom: 1px solid #e4e4e4;
}

.order-radio-group {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.order-radio-group legend {
    margin-bottom: 13px;
    color: #111111;
    font-size: 14px;
    font-weight: 800;
}

.order-radio-group label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0 22px 8px 0;
    color: #222222;
    font-size: 15px;
    cursor: pointer;
}

.order-radio-group input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #111111;
}

.order-captcha {
    max-width: 100%;
    overflow: hidden;
}

.order-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 24px;
}

.order-field {
    display: grid;
    gap: 9px;
    min-width: 0;
}

.order-field > span {
    color: #151515;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
}

.order-field input,
.order-field textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid #d0d0d0;
    border-radius: 12px;
    background: #f7f7f7;
    color: #111111;
    font: inherit;
    font-size: 15px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.order-field input {
    min-height: 50px;
    padding: 0 15px;
}

.order-field textarea {
    min-height: 150px;
    padding: 14px 15px;
    resize: vertical;
    line-height: 1.65;
}

.order-field input:focus,
.order-field textarea:focus {
    border-color: #111111;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, .09);
}

.order-field--full {
    grid-column: 1 / -1;
}

.order-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    margin-top: 28px;
}

.order-submit {
    flex: 0 0 auto;
    min-height: 50px;
    padding: 0 26px;
    border: 1px solid #111111;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    font: inherit;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}

.order-submit:hover,
.order-submit:focus-visible {
    transform: translateY(-2px);
    background: #ffffff;
    color: #111111;
}

.order-submit:focus-visible {
    outline: 3px solid rgba(17, 17, 17, .18);
    outline-offset: 3px;
}

.order-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

html[dir="rtl"] .order-intro p,
html[dir="rtl"] .order-form-heading p,
html[dir="rtl"] .order-form-footer p {
    text-align: right;
}

html[dir="rtl"] .order-radio-group label {
    margin-right: 0;
    margin-left: 22px;
}

html[dir="rtl"] .order-alert ul {
    padding-right: 20px;
    padding-left: 0;
}

@media (max-width: 980px) {
    .order-shell {
        grid-template-columns: 1fr;
    }

    .order-intro {
        min-height: auto;
        padding: 48px clamp(28px, 6vw, 58px);
    }

    .order-intro h1 {
        max-width: 760px;
        font-size: clamp(36px, 8vw, 62px);
    }

    .order-intro p {
        max-width: 680px;
    }
}

@media (max-width: 720px) {
    .order-page {
        padding: 24px 0 42px;
    }

    .order-shell {
        width: min(94%, 620px);
        border-radius: 20px;
    }

    .order-intro,
    .order-form-panel {
        padding: 30px 22px;
    }

    .order-intro h1 {
        font-size: clamp(34px, 11vw, 50px);
        letter-spacing: -1.8px;
    }

    .order-form-top,
    .order-form-grid {
        grid-template-columns: 1fr;
    }

    .order-field--full {
        grid-column: auto;
    }

    .order-captcha {
        transform-origin: left top;
    }

    .order-form-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .order-submit {
        width: 100%;
    }
}

@media (max-width: 380px) {
    .order-captcha .g-recaptcha {
        transform: scale(.88);
        transform-origin: left top;
    }

    html[dir="rtl"] .order-captcha .g-recaptcha {
        transform-origin: right top;
    }
}
