*,
*::after,
*::before {
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body,
html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

nav.navbar {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #f0f0f0;
    transition: box-shadow 0.3s;
}

nav.navbar.fixed-navbar {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.navbar-collapse {
    flex-grow: 0;
}

.nav-link {
    color: #000 !important;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.nav-link.active {
    position: relative;
}

.nav-link.active::after {
    content: "";
    display: block;
    width: calc(100% + 10px);
    height: 3px;
    transform: translateX(-3px);
    background: orange;
}

.nav-link::after {
    content: "";
    display: block;
    width: 0;
    transition: all 0.5s;
    height: 3px;
    transform: translateX(-3px);
    background: orange;
}

.nav-link:hover::after {
    width: calc(100% + 10px);
}

.navbar-nav {
    gap: 3rem;
}

.navbar-brand.logo img {
    width: 80px;
    transition: all 0.5s;
}

.hero-section {
    background: #ffffff;
    margin-top: 72px;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 42%;
    height: 100%;
    background: #f5f5f5;
    clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
    z-index: 0;
}

.hero-section::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 10%;
    height: 80%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, orange 20%, orange 80%, transparent);
    opacity: 0.18;
    z-index: 1;
}

.hero-section .banner,
.hero-section .owl-stage-outer,
.hero-section .owl-stage,
.hero-section .owl-item,
.hero-section .item {
    height: 100%;
}

.hero-section .item .container {
    height: 100%;
}

.hero-section .item .row {
    height: 100%;
    min-height: 100%;
}

.hero-section .hero_content {
    position: relative;
    z-index: 2;
    padding: 2rem 0;
    animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-section .hero_content .sub_title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #000;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.hero-section .hero_content .sub_title::before {
    content: "";
    display: inline-block;
    width: 28px;
    height: 2px;
    background: orange;
    flex-shrink: 0;
}

.hero-section .hero_content .title {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: #0a0a0a;
    margin-bottom: 1.25rem;
}

.hero-section .hero_content .title span {
    position: relative;
    display: inline-block;
}

.hero-section .hero_content .title span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 6px;
    background: orange;
    opacity: 0.45;
    border-radius: 2px;
    z-index: -1;
}

.hero-section .hero_content p:not(.sub_title) {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #000;
    max-width: 420px;
}

.hero-section .hero_content .custom_btn {
    background: #0a0a0a;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.8rem 1.75rem;
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: background 0.3s, color 0.3s;
    display: inline-block;
}

.hero-section .hero_content .custom_btn:hover {
    background: orange;
    color: #000;
}

.hero-section .hero_content .custom_btn2 {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.8rem 1.75rem;
    border: 1.5px solid #0a0a0a;
    border-radius: 0;
    color: #0a0a0a;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: background 0.3s, color 0.3s;
    display: inline-block;
}

.hero-section .hero_content .custom_btn2:hover {
    background: #0a0a0a;
    color: #fff;
}

.hero-section .hero_img {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    animation: heroSlideIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero-section .hero_img img {
    max-height: 80vh;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0px 40px 60px rgba(0, 0, 0, 0.14));
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-section .hero_img img:hover {
    transform: scale(1.03) translateY(-6px);
}

.hero-section .hero_img::before {
    content: "NEW DROP";
    position: absolute;
    top: 18%;
    right: 6%;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #fff;
    background: #0a0a0a;
    padding: 0.35rem 0.65rem;
    z-index: 3;
}

.hero-section .scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}

.hero-section .scroll-indicator span {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #000;
}

.hero-section .scroll-indicator::after {
    content: "";
    display: block;
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, #000, transparent);
    animation: scrollPulse 1.6s ease-in-out infinite;
}

.about-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 0.5rem;
}

.about-label span {
    display: inline-block;
    width: 28px;
    height: 2px;
    background: orange;
}

.about-heading {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #0a0a0a;
    margin-bottom: 0;
}

.about-heading span {
    position: relative;
    display: inline-block;
}

.about-heading span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 6px;
    background: orange;
    opacity: 0.4;
    border-radius: 2px;
    z-index: -1;
}

.about-intro-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #000;
    margin-bottom: 0;
}

.about-section {
    background: #ffffff;
    padding: 5rem 0;
}

.stat-card {
    background: #f5f5f5;
    padding: 1.5rem 1.25rem;
    border-radius: 0;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
    transition: background 0.3s;
}

.stat-card:hover {
    background: #ebebeb;
}

.stat-card--dark {
    background: #0a0a0a;
}

.stat-card--dark .stat-number,
.stat-card--dark .stat-label {
    color: #fff;
}

.stat-card--dark:hover {
    background: #1a1a1a;
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #0a0a0a;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    line-height: 1.5;
    color: #000;
    margin-bottom: 0;
}

.facility-card {
    background: #f9f9f9;
    border: 1px solid #e5e7eb;
    border-top: 3px solid #0a0a0a;
    padding: 2rem 1.5rem;
    transition: border-top-color 0.3s, transform 0.3s;
}

.facility-card:hover {
    border-top-color: orange;
    transform: translateY(-4px);
}

.facility-card--accent {
    background: #0a0a0a;
    border: 1px solid #0a0a0a;
    border-top: 3px solid orange;
}

.facility-card--accent:hover {
    border-top-color: #fff;
    transform: translateY(-4px);
}

.facility-flag {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.facility-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: -0.01em;
    margin-bottom: 1.25rem;
}

.facility-card--accent .facility-title {
    color: #fff;
}

.facility-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.facility-list li {
    font-size: 0.875rem;
    color: #000;
    padding: 0.4rem 0 0.4rem 1.1rem;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
}

.facility-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #d1d5db;
    font-size: 0.75rem;
}

.facility-list li:last-child {
    border-bottom: none;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    font-size: 0.875rem;
    color: #d1d5db;
    padding: 0.5rem 0;
    border-bottom: 1px solid #1f1f1f;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.why-list li:last-child {
    border-bottom: none;
}

.why-check {
    color: orange;
    font-weight: 700;
    flex-shrink: 0;
}

.mv-card {
    padding: 2rem;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #0a0a0a;
    background: #fafafa;
    transition: border-left-color 0.3s;
}

.mv-card:hover {
    border-left-color: orange;
}

.mv-card--vision {
    background: #0a0a0a;
    border: 1px solid #0a0a0a;
    border-left: 4px solid orange;
}

.mv-card--vision:hover {
    border-left-color: #fff;
}

.mv-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: orange;
    margin-bottom: 1rem;
}

.mv-text {
    font-size: 0.92rem;
    line-height: 1.85;
    color: #4b5563;
    margin-bottom: 0;
}

.mv-card--vision .mv-text {
    color: #000;
}

.products-section {
    background: #f5f5f5;
    padding: 5rem 0;
}

.product-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.product-img-wrap {
    background: #f9f9f9;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    overflow: hidden;
    padding: 1.5rem;
}

.product-img-wrap img {
    max-height: 180px;
    width: auto;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.06);
}

.product-info {
    padding: 1.25rem;
}

.product-tag {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: orange;
    display: block;
    margin-bottom: 0.35rem;
}

.product-name {
    font-size: 1rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 0.3rem;
}

.product-desc {
    font-size: 0.78rem;
    color: #000;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-cta {
    font-size: 0.8rem;
    font-weight: 600;
    color: #0a0a0a;
    letter-spacing: 0.04em;
    cursor: pointer;
    padding-bottom: 1px;
    transition: color 0.3s, border-color 0.3s;
    display: inline-block;
}

.product-cta:hover {
    color: orange;
    border-color: orange;
}

.quality-section {
    background: #fff;
    padding: 5rem 0;
}

.quality-inner {
    padding: 3rem;
    background: #f9f9f9;
    border: 1px solid #e5e7eb;
}

.quality-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 1.25rem 1rem;
    border-left: 3px solid #e5e7eb;
    transition: border-left-color 0.3s, transform 0.3s;
}

.quality-card:hover {
    border-left-color: orange;
    transform: translateX(4px);
}

.quality-card--dark {
    background: #0a0a0a;
    border: 1px solid #0a0a0a;
    border-left: 3px solid orange;
}

.quality-card--dark:hover {
    transform: translateX(4px);
}

.quality-icon {
    font-size: 1.5rem;
    font-weight: 900;
    color: #e5e7eb;
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.quality-card--dark .quality-icon {
    color: #2a2a2a;
}

.quality-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 0.15rem;
}

.quality-card--dark .quality-title {
    color: #fff;
}

.quality-desc {
    font-size: 0.75rem;
    color: #000;
    margin-bottom: 0;
}

.quality-card--dark .quality-desc {
    color: #000;
}

.cta-section {
    background: #0a0a0a;
    padding: 5rem 0;
    overflow: hidden;
    border-bottom: 1px dotted #8080807a;
}

.cta-inner {
    position: relative;
}

.cta-bg-text {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.cta-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: orange;
    margin-bottom: 0.5rem;
}

.cta-heading {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 1.25rem;
}

.cta-heading span {
    color: orange;
}

.cta-sub {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #000;
    max-width: 520px;
    margin-bottom: 0;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: orange;
    color: #000;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.9rem 1.75rem;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: background 0.3s, transform 0.2s;
}

.cta-btn-primary:hover {
    background: #ffb300;
    transform: translateY(-2px);
    color: #000;
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: #000;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.9rem 1.75rem;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: background 0.3s, transform 0.2s;
}

.cta-btn-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    color: #000;
}

.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.9rem 1.75rem;
    transition: border-color 0.3s, color 0.3s;
}

.cta-btn-outline:hover {
    border-color: orange;
    color: orange;
}

.contact-section {
    background: #fff;
    padding: 5rem 0;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: #f5f5f5;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
}

.contact-info-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 0.3rem;
}

.contact-info-value {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 0;
    display: block;
}

.contact-info-link {
    font-size: 0.875rem;
    color: #0a0a0a;
    font-weight: 600;
    display: block;
    transition: color 0.3s;
    margin-bottom: 0.1rem;
}

.contact-info-link:hover {
    color: orange;
}

.contact-info-markets {
    padding-top: 0.5rem;
}

.market-badge {
    background: #f5f5f5;
    border: 1px solid #e5e7eb;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    color: #4b5563;
}

.enquiry-form {
    background: #f9f9f9;
    padding: 2.5rem;
    border: 1px solid #e5e7eb;
}

.form-label-custom {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 0.4rem;
    display: block;
}

.form-control-custom {
    width: 100%;
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 0.7rem 1rem;
    font-size: 0.875rem;
    color: #0a0a0a;
    font-family: 'Poppins', sans-serif;
    outline: none;
    border-radius: 0;
    transition: border-color 0.3s;
    -webkit-appearance: none;
    appearance: none;
}

.form-control-custom:focus {
    border-color: #0a0a0a;
}

.form-control-custom::placeholder {
    color: #d1d5db;
}

textarea.form-control-custom {
    resize: vertical;
    min-height: 90px;
}

.form-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #0a0a0a;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border: none;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: background 0.3s, transform 0.2s;
    margin-top: 0.5rem;
}

.form-submit-btn:hover {
    background: orange;
    color: #000;
    transform: translateY(-2px);
}

.form-note {
    font-size: 0.75rem;
    color: #000;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

.site-footer {
    background: #0a0a0a;
    padding-top: 4rem;
}

.footer-logo img {
    width: 80px;
    filter: brightness(100);
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 0.8rem;
    line-height: 1.9;
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-contact-quick {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #fff !important;
    transition: color 0.3s;
}

.footer-contact-link:hover {
    color: orange;
}

.footer-heading {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: #fff !important;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: orange;
}

.footer-top {
    padding-bottom: 3rem;
    border-bottom: 1px solid #1a1a1a;
}

.footer-bottom {
    padding: 1.5rem 0;
}

.footer-copy {
    font-size: 0.75rem;
    color: #fff;
    margin-bottom: 0;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: scaleY(0.8);
    }

    50% {
        opacity: 1;
        transform: scaleY(1);
    }
}

@media (max-width: 768px) {
    .hero-section::before {
        display: none;
    }

    .hero-section {
        height: auto;
        padding: 4rem 0 3rem;
    }

    .hero-section .hero_img img {
        max-height: 50vh;
    }

    .hero-section .hero_content .title {
        font-size: 3rem;
    }

    .hero-section .item .row {
        gap: 2rem;
    }

    .hero-section .scroll-indicator {
        display: none;
    }

    .about-heading {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .quality-inner {
        padding: 1.5rem;
    }

    .enquiry-form {
        padding: 1.5rem;
    }

    .cta-bg-text {
        display: none;
    }

    .navbar-nav {
        gap: 0.5rem;
    }
}

.fixed-navbar {
    background-color: white !important;
}

.fixed-navbar .navbar-brand.logo img {
    width: 50px;
    transition: all 0.5s;
}


.contact-hero {
    background: #0a0a0a;
    padding: 6rem 0 2rem;
    margin-top: 72px;
    position: relative;
    overflow: hidden;
}

.contact-hero-inner {
    position: relative;
    z-index: 2;
}

.contact-hero-bg-text {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
    z-index: 0;
}

.contact-hero .about-label {
    color: #fff;
}

.contact-hero .about-label span {
    background: orange;
}

.contact-hero-heading {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 1.25rem;
}

.contact-hero-heading span {
    color: orange;
}

.contact-hero-sub {
    font-size: 1rem;
    line-height: 1.8;
    color: #fff;
    max-width: 500px;
}

.contact-section {
    background: #fff;
    padding: 5rem 0;
}

.contact-form-header {
    border-left: 3px solid orange;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-info-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    background: #f5f5f5;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a0a;
    transition: background 0.3s, color 0.3s;
}

.contact-info-item:hover .contact-info-icon {
    background: orange;
    color: #000;
    border-color: orange;
}

.contact-info-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 0.35rem;
}

.contact-info-value {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 0;
    display: block;
}

.contact-info-link {
    font-size: 0.875rem;
    color: #0a0a0a;
    font-weight: 600;
    display: block;
    transition: color 0.3s;
    margin-bottom: 0.1rem;
    text-decoration: none;
}

.contact-info-link:hover {
    color: orange;
}

.contact-info-markets {
    padding-top: 0.5rem;
}

.market-badge {
    background: #f5f5f5;
    border: 1px solid #e5e7eb;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    color: #4b5563;
    display: inline-block;
}

.enquiry-form {
    background: #f9f9f9;
    padding: 2.5rem;
    border: 1px solid #e5e7eb;
}


.map-section {
    background: #f5f5f5;
    padding-top: 4rem;
}

.map-header {
    padding-bottom: 2.5rem;
}

.map-heading {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0a0a0a;
    margin-bottom: 0;
}

.map-heading span {
    position: relative;
    display: inline-block;
}

.map-heading span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 100%;
    height: 5px;
    background: orange;
    opacity: 0.4;
    border-radius: 2px;
    z-index: -1;
}

.map-embed-wrap {
    position: relative;
}

.map-embed-wrap iframe {
    display: block;
    filter: grayscale(20%) contrast(1.05);
}

.map-overlay-name {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 0.4rem;
}

.map-overlay-addr {
    font-size: 0.78rem;
    color: #000;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.map-overlay-btn {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0a0a0a;
    border-bottom: 1.5px solid #0a0a0a;
    padding-bottom: 1px;
    transition: color 0.3s, border-color 0.3s;
    text-decoration: none;
    display: inline-block;
}

.map-overlay-btn:hover {
    color: orange;
    border-color: orange;
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 6rem 0 3rem;
    }

    .contact-hero-bg-text {
        display: none;
    }

    .contact-hero-stats {
        gap: 1.5rem;
    }

    .contact-hero-stat-divider {
        display: none;
    }

    .enquiry-form {
        padding: 1.5rem;
    }

    .contact-form-header {
        padding-left: 1rem;
    }

    .map-embed-wrap iframe {
        height: 300px;
    }
}

.products-filter-bar {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 1.25rem 0;
    position: sticky;
    top: 72px;
    z-index: 99;
}

.filter-wrap {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.5rem 1.1rem;
    background: transparent;
    border: 1.5px solid #e5e7eb;
    color: #000;
    cursor: pointer;
    transition: all 0.25s;
    border-radius: 0;
    font-family: 'Poppins', sans-serif;
}

.filter-btn:hover {
    border-color: #0a0a0a;
    color: #0a0a0a;
}

.filter-btn.active {
    background: #0a0a0a;
    border-color: #0a0a0a;
    color: #fff;
}

.products-section {
    background: #f5f5f5;
    padding: 4rem 0 5rem;
}

.product-card-full {
    background: #fff;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-full:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.10);
}

.product-img-wrap {
    background: #f9f9f9;
    position: relative;
    height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    overflow: hidden;
}

.product-img-wrap img {
    max-height: 220px;
    width: auto;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    z-index: 1;
}

.product-card-full:hover .product-img-wrap img {
    transform: scale(1.07) translateY(-4px);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    background: #0a0a0a;
    padding: 0.3rem 0.65rem;
    z-index: 3;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
}

.product-name {
    font-size: 1rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 0;
    line-height: 1.2;
}

.product-tag-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: orange;
    white-space: nowrap;
    flex-shrink: 0;
    padding-top: 2px;
}

.product-desc {
    font-size: 0.8rem;
    line-height: 1.7;
    color: #000;
    margin-bottom: 1.1rem;
}

.product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem 0.75rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: #f9f9f9;
    border: 1px solid #f0f0f0;
}

.product-spec {
    font-size: 0.75rem;
    color: #4b5563;
    line-height: 1.4;
}

.product-spec span {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 0.1rem;
}

.product-actions {
    margin-top: auto;
}

.product-enquire-btn {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #0a0a0a;
    text-decoration: none;
    cursor: pointer;
    padding-bottom: 1px;
    transition: color 0.3s, border-color 0.3s;
    display: inline-block;
}

.product-enquire-btn:hover {
    color: orange;
    border-color: orange;
}

.product-item {
    transition: opacity 0.3s, transform 0.3s;
}

.product-item.hidden {
    display: none;
}

.no-results {
    text-align: center;
    padding: 4rem 0;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
}

.capabilities-strip {
    background: #fff;
    padding: 0;
}

.capabilities-inner {
    border: 1px solid #e5e7eb;
    border-top: 3px solid #0a0a0a;
    overflow: hidden;
}

.cap-item {
    padding: 2.5rem 2rem;
    border-right: 1px solid #e5e7eb;
    transition: background 0.3s;
    height: 100%;
}

.cap-item:last-child {
    border-right: none;
}

.cap-item:hover {
    background: #fafafa;
}

.cap-item--dark {
    background: #0a0a0a;
    border-right: none;
}

.cap-item--dark:hover {
    background: #111;
}

.cap-num {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: #e5e7eb;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.cap-item--dark .cap-num {
    color: #1f1f1f;
}

.cap-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 0.5rem;
}

.cap-item--dark .cap-title {
    color: #fff;
}

.cap-desc {
    font-size: 0.8rem;
    line-height: 1.7;
    color: #000;
    margin-bottom: 0;
}

.cap-item--dark .cap-desc {
    color: #000;
}

.products-bottom-cta {
    background: #0a0a0a;
    padding: 5rem 0;
    overflow: hidden;
    border-bottom: 1px dotted #8080807a;
}

.products-cta-inner {
    position: relative;
}

.products-cta-bg-text {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.cta-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: orange;
    margin-bottom: 0.5rem;
}

.cta-heading {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.0;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 1.25rem;
}

.cta-heading span {
    color: orange;
}

.cta-sub {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #fff;
    max-width: 520px;
    margin-bottom: 0;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: orange;
    color: #000;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.9rem 1.75rem;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: background 0.3s, transform 0.2s;
    text-decoration: none;
}

.cta-btn-primary:hover {
    background: #ffb300;
    transform: translateY(-2px);
    color: #000;
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    color: #000;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.9rem 1.75rem;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    transition: background 0.3s, transform 0.2s;
    text-decoration: none;
}

.cta-btn-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    color: #000;
}

@media (max-width: 768px) {
    .products-filter-bar {
        top: 62px;
    }

    .filter-btn {
        font-size: 0.65rem;
        padding: 0.4rem 0.75rem;
    }

    .product-img-wrap {
        height: 180px;
    }

    .product-img-wrap img {
        max-height: 150px;
    }

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

    .cap-item {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }

    .cap-item:last-child {
        border-bottom: none;
    }

    .products-cta-bg-text {
        display: none;
    }
}

.au-intro-section {
    background: #fff;
    padding: 5rem 0;
}

.au-body-text {
    font-size: 0.95rem;
    line-height: 1.85;
    color: #000;
    margin-bottom: 1rem;
}

.au-advantages {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.au-advantage {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: #4b5563;
    font-weight: 500;
}

.au-check {
    color: orange;
    font-weight: 700;
    flex-shrink: 0;
}

.au-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: #e5e7eb;
    border: 1px solid #e5e7eb;
}

.au-stat-block {
    background: #f9f9f9;
    padding: 2rem 1.5rem;
    transition: background 0.3s;
}

.au-stat-block:hover {
    background: #f0f0f0;
}

.au-stat-block--dark {
    background: #0a0a0a;
}

.au-stat-block--dark:hover {
    background: #111;
}

.au-stat-block--orange {
    background: orange;
}

.au-stat-block--orange:hover {
    background: #ffb300;
}

.au-stat-big {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #0a0a0a;
    margin-bottom: 0.2rem;
    line-height: 1;
}

.au-stat-block--dark .au-stat-big {
    color: #fff;
}

.au-stat-block--orange .au-stat-big {
    color: #000;
}

.au-stat-sub {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 0.6rem;
}

.au-stat-block--dark .au-stat-sub {
    color: #fff;
}

.au-stat-block--orange .au-stat-sub {
    color: rgba(0, 0, 0, 0.5);
}

.au-stat-desc {
    font-size: 0.78rem;
    line-height: 1.6;
    color: #000;
    margin-bottom: 0;
}

.au-stat-block--dark .au-stat-desc {
    color: #fff;
}

.au-stat-block--orange .au-stat-desc {
    color: rgba(0, 0, 0, 0.55);
}

.au-mv-section {
    background: #f5f5f5;
    padding: 5rem 0;
}

.au-mv-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-top: 4px solid #0a0a0a;
    padding: 2.5rem;
    height: 100%;
    transition: border-top-color 0.3s, transform 0.3s;
}

.au-mv-card:hover {
    border-top-color: orange;
    transform: translateY(-4px);
}

.au-mv-card--dark {
    background: #0a0a0a;
    border: 1px solid #0a0a0a;
    border-top: 4px solid orange;
}

.au-mv-card--dark:hover {
    border-top-color: #fff;
    transform: translateY(-4px);
}

.au-mv-icon {
    color: orange;
    margin-bottom: 1rem;
}

.au-mv-card--dark .au-mv-icon {
    color: orange;
}

.au-mv-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: orange;
    margin-bottom: 0.75rem;
}

.au-mv-heading {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0a0a0a;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.au-mv-card--dark .au-mv-heading {
    color: #fff;
}

.au-mv-text {
    font-size: 0.875rem;
    line-height: 1.8;
    color: #000;
    margin-bottom: 1.5rem;
}

.au-mv-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.au-mv-list li {
    font-size: 0.82rem;
    color: #000;
    padding: 0.45rem 0 0.45rem 1.1rem;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
}

.au-mv-card--dark .au-mv-list li {
    border-bottom-color: #1a1a1a;
}

.au-mv-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: orange;
    font-size: 0.7rem;
    font-weight: 700;
}

.au-mv-list li:last-child {
    border-bottom: none;
}

.au-manufacturing-section {
    background: #fff;
    padding: 5rem 0;
}

.au-facility-card {
    border: 1px solid #e5e7eb;
    border-top: 3px solid #0a0a0a;
    padding: 2rem;
    height: 100%;
    transition: border-top-color 0.3s, transform 0.3s;
}

.au-facility-card:hover {
    border-top-color: orange;
    transform: translateY(-4px);
}

.au-facility-card--bd {
    background: #fafafa;
}

.au-facility-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.au-facility-flag {
    font-size: 2.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.au-facility-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 0.2rem;
}

.au-facility-sub {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 0;
}

.au-facility-divider {
    height: 1px;
    background: #e5e7eb;
    margin-bottom: 1.25rem;
}

.au-facility-feature {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.au-facility-feature-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.au-facility-feature-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 0.15rem;
}

.au-facility-feature-desc {
    font-size: 0.75rem;
    color: #000;
    line-height: 1.5;
    margin-bottom: 0;
}

.au-quality-section {
    background: #f5f5f5;
    padding: 5rem 0;
}

.au-quality-timeline {
    background: #fff;
    border: 1px solid #e5e7eb;
    overflow: hidden;
}

.au-quality-step {
    padding: 2.5rem 1.5rem 2rem;
    border-right: 1px solid #e5e7eb;
    position: relative;
    transition: background 0.3s;
    height: 100%;
}

.au-quality-step:hover {
    background: #fafafa;
}

.au-quality-step--last {
    border-right: none;
}

.au-quality-num {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: #e5e7eb;
    line-height: 1;
    margin-bottom: 1.25rem;
}

.au-quality-num--orange {
    color: orange;
}

.au-quality-line {
    width: 30px;
    height: 2px;
    background: #0a0a0a;
    margin-bottom: 1rem;
}

.au-quality-line--none {
    background: orange;
}

.au-quality-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 0.35rem;
}

.au-quality-desc {
    font-size: 0.75rem;
    color: #000;
    line-height: 1.5;
    margin-bottom: 0;
}

.au-export-section {
    background: #fff;
    padding: 5rem 0;
}

.au-export-inner {
    background: #f9f9f9;
    border: 1px solid #e5e7eb;
    border-left: 4px solid orange;
    padding: 3rem;
}

.au-export-cta {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #0a0a0a;
    text-decoration: none;
    border-bottom: 2px solid #0a0a0a;
    padding-bottom: 2px;
    transition: color 0.3s, border-color 0.3s;
}

.au-export-cta:hover {
    color: orange;
    border-color: orange;
}

.au-doc-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s;
}

.au-doc-card:hover {
    border-color: orange;
    transform: translateY(-3px);
}

.au-doc-card--dark {
    background: #0a0a0a;
    border-color: #0a0a0a;
}

.au-doc-card--dark:hover {
    transform: translateY(-3px);
}

.au-doc-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.au-doc-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 0;
    line-height: 1.3;
}

.au-doc-card--dark .au-doc-name {
    color: #fff;
}

.au-why-section {
    background: #f5f5f5;
    padding: 5rem 0;
}

.au-why-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #e5e7eb;
    padding: 2rem 1.75rem;
    height: 100%;
    transition: border-left-color 0.3s, transform 0.3s;
}

.au-why-card:hover {
    border-left-color: orange;
    transform: translateX(4px);
}

.au-why-card--dark {
    background: #0a0a0a;
    border: 1px solid #0a0a0a;
    border-left: 4px solid orange;
}

.au-why-card--dark:hover {
    border-left-color: #fff;
    transform: translateX(4px);
}

.au-why-number {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: #e5e7eb;
    line-height: 1;
    margin-bottom: 1rem;
}

.au-why-card--dark .au-why-number {
    color: #1f1f1f;
}

.au-why-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 0.6rem;
}

.au-why-card--dark .au-why-title {
    color: #fff;
}

.au-why-desc {
    font-size: 0.82rem;
    line-height: 1.75;
    color: #000;
    margin-bottom: 0;
}

.social_links ul {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social_links ul li img {
    width: 20px;
}

.social_links ul li {
    transition: all 0.5s;
}

.social_links ul li:hover {
    transform: scale(1.5);
    transition: all 0.5s;
}

.footer_link ul {
    padding: 0;
}

.footer_link ul li img {
    margin-top: 22px;
    filter: invert(1);
}

@media (max-width: 768px) {
    .au-stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-hero-heading {
        font-size: 2rem;
    }

    .au-quality-step {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }

    .au-quality-step--last {
        border-bottom: none;
    }

    .au-export-inner {
        padding: 1.5rem;
    }

    .au-mv-card {
        padding: 1.5rem;
    }

    .au-why-card {
        transform: none !important;
    }

    .nav-link.active::after {
        width: 100px;
    }
}

.number-nav {
    position: absolute;
    text-align: center;
    margin-top: 10px;
    top: 39%;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.num-item {
    display: inline-block;
    margin: 0 8px;
    cursor: pointer;
    font-size: 14px;
    color: #888;
    transition: 0.3s;
}

.num-item.active {
    color: #000;
    font-weight: bold;
    font-size: 24px;
}

.is-invalid {
    border: 1px solid red !important;
}


/* ============================================================
   ENQUIRY MODAL — modal.css
   Add <link rel="stylesheet" href="./assets/css/modal.css"> in header.php
   ============================================================ */

/* ── BACKDROP ── */
.eq-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.eq-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

/* ── MODAL SHELL ── */
.eq-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -46%) scale(0.96);
    z-index: 1200;
    width: 94%;
    max-width: 860px;
    max-height: 92vh;
    background: #fff;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.eq-modal.active {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
}

/* ── CLOSE BUTTON ── */
.eq-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 34px;
    height: 34px;
    background: #0a0a0a;
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: background 0.2s, color 0.2s;
    clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}

.eq-close:hover {
    background: orange;
    color: #000;
}

/* ── INNER LAYOUT ── */
.eq-inner {
    display: flex;
    height: 100%;
    max-height: 92vh;
}

/* ── LEFT PANEL ── */
.eq-left {
    width: 38%;
    flex-shrink: 0;
    background: #0a0a0a;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eq-left-bg-text {
    position: absolute;
    bottom: -20px;
    left: -10px;
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: -0.05em;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
    user-select: none;
    line-height: 1;
}

.eq-left-content {
    position: relative;
    z-index: 2;
}

.eq-left .about-label {
    color: #fff;
}

.eq-left .about-label span {
    background: orange;
}

.eq-left-heading {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 0.75rem;
}

.eq-left-heading span {
    color: orange;
}

.eq-left-sub {
    font-size: 0.82rem;
    line-height: 1.75;
    color: #fff;
    margin-bottom: 2rem;
}

/* Contact quick links */
.eq-contact-quick {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.eq-quick-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

.eq-quick-link:hover {
    color: orange;
}

/* ── RIGHT PANEL ── */
.eq-right {
    flex: 1;
    overflow-y: auto;
    padding: 2.5rem 2rem;
    position: relative;
}

.eq-form-header {
    margin-bottom: 1.5rem;
}

.eq-form-title {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0a0a0a;
    margin-bottom: 0.3rem;
}

.eq-form-sub {
    font-size: 0.82rem;
    color: #9ca3af;
    margin-bottom: 0;
}

/* Validation states */
.form-group .form-control-custom.is-invalid {
    border-color: #dc3545;
}

.form-group .form-control-custom.is-valid {
    border-color: #28a745;
}

.form-group .invalid-feedback {
    display: none;
    font-size: 0.72rem;
    color: #dc3545;
    margin-top: 0.3rem;
    font-weight: 600;
}

.form-group .form-control-custom.is-invalid~.invalid-feedback {
    display: block;
}

/* Full-width submit */
.form-submit-btn.w-100 {
    width: 100%;
    justify-content: center;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

/* ── SUCCESS STATE ── */
.eq-success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 3rem 2rem;
    height: 100%;
    min-height: 360px;
    animation: eqFadeIn 0.4s ease both;
}

.eq-success.active {
    display: flex;
}

.eq-success-icon {
    width: 64px;
    height: 64px;
    background: #0a0a0a;
    color: orange;
    font-size: 1.75rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.eq-success-heading {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0a0a0a;
    margin-bottom: 0.5rem;
}

.eq-success-text {
    font-size: 0.875rem;
    line-height: 1.75;
    color: #6b7280;
    max-width: 320px;
    margin-bottom: 1.5rem;
}

.eq-success-close {
    background: #0a0a0a;
    color: #fff;
    border: none;
    padding: 0.7rem 2rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    transition: background 0.2s;
    font-family: 'Poppins', sans-serif;
}

.eq-success-close:hover {
    background: orange;
    color: #000;
}

/* ── ANIMATIONS ── */
@keyframes eqFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .eq-modal {
        width: 96%;
        max-height: 95vh;
    }

    .eq-inner {
        flex-direction: column;
    }

    .eq-left {
        width: 100%;
        padding: 1.75rem 1.25rem;
        min-height: unset;
    }

    .eq-left-bg-text {
        display: none;
    }

    .eq-left-sub {
        display: none;
    }

    .eq-right {
        padding: 1.5rem 1.25rem;
    }

    .eq-contact-quick,
    .eq-markets {
        display: none;
    }
}