/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #1B1B1B;
    background: #FFFFFF;
    overflow-x: hidden;
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

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

/* ===== UTILITY ===== */
.gold-text {
    background: linear-gradient(268.74deg, #AB8234 8.72%, #F6E38F 53.17%, #AB8234 94.99%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #002147;
    line-height: 1.25;
}

.section-title.center {
    text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 250px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    text-align: center;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-white {
    background: #FFFFFF;
    color: #002147;
}

.btn-dark {
    background: #002147;
    color: #FFFFFF;
}

.btn-gold {
    background: linear-gradient(268.74deg, #AB8234 8.72%, #F6E38F 53.17%, #AB8234 94.99%);
    color: #002147;
    font-weight: 700;
}

.btn-submit {
    background: linear-gradient(90deg, #001229 0%, #003870 50%, #005aad 100%);
    color: #FFFFFF;
    padding: 16px 50px;
    border-radius: 10px;
}

/* ===== HEADER (logo + nav above hero box) ===== */
.header {
    position: relative;
    height: 96px;
    z-index: 10;
    margin-bottom: 22px;
}

.header-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 364px;
    height: 96px;
    object-fit: contain;
}

.nav {
    position: absolute;
    top: 33px;
    margin-right: 70px;
    right: 0;
    width: calc(100% - 450px);
    height: 85px;
}

.nav-connector {
    display: none;
}

.nav-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;
    background: #002147;
    clip-path: polygon(
        0px 100%,
        78px 7px,
        82px 4px,
        86px 2px,
        91px 0px,
        95px 0px,
        calc(100% - 25px) 0px,
        calc(100% - 7px) 7px,
        calc(100% - 2px) 15px,
        100% 25px,
        100% 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 25px 0 95px;
    border-radius: 0 30px 0 0;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.nav-link {
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: #F6E38F;
}

.nav-link.active {
    background: linear-gradient(269deg, #AB8234 0%, #F6E38F 52%, #AB8234 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    overflow: hidden;
    background: #002147;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Outer background — faded tableware imagery with top-to-bottom gradient */
.hero-outer-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-outer-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-outer-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 33, 71, 0) 0%, #002147 100%);
    pointer-events: none;
}

/* Box wrapper — centers the logo row + box */
.hero-box-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1220px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 25px 40px;
}

/* The centered hero box — Rectangle 3 */
.hero-box {
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    background: #002147;
    border: 1px solid #AB8234;
}

/* Rectangle 3 inner area */
.hero-inner {
    position: relative;
    overflow: hidden;
    padding: 75px 0 75px 0;
}

.hero-inner-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-inner-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 60px 50px;
    gap: 20px;
}

.hero-text {
    max-width: 480px;
}

.hero-percent {
    display: block;
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
}

.hero-title {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 420px;
}

.hero-image {
    flex-shrink: 0;
    max-width: 600px;
}

.hero-image img {
    width: 100%;
}

/* Hero Banner — attached to bottom of box */
.hero-banner {
    padding: 0;
    border-radius: 0 0 0 25px;
    overflow: hidden;
    margin-left: 70px;
    margin-right: 40px;
}

.banner-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #002147;
    background: #FFFFFF;
    height: 60px;
    padding: 40px 80px 40px 40px;
    clip-path: polygon(
        0 0,
        100% 0,
        calc(100% - 53px) calc(100% - 7px),
        calc(100% - 58px) calc(100% - 3px),
        calc(100% - 64px) calc(100% - 1px),
        calc(100% - 70px) 100%,
        0 100%
    );
    max-width: 55%;
}

.banner-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #002147;
    border-radius: 50%;
}

/* ===== BENEFITS ===== */
.benefits {
    position: relative;
    padding: 100px 25px;
    overflow: hidden;
}

.benefits-container {
    display: flex;
    align-items: center;
    gap: 200px;
    max-width: 1170px;
    margin: 0 auto;
}

.benefits-left {
    flex: 1;
}

.benefits-left .section-title {
    margin-bottom: 48px;
}

.benefit-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.benefit-icon {
    flex-shrink: 0;
    width: 85px;
    height: 85px;
    background: #002147;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.benefit-icon img {
    width: 85px;
    height: 85px;
}

.benefit-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #002147;
    margin-bottom: 4px;
}

.benefit-text p {
    font-size: 1rem;
    color: #3a3a3a;
    line-height: 1.6;
}

.benefits-right {
    position: relative;
    flex-shrink: 0;
    width: 40%;
    height: 500px;
}

.benefits-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: visible;
    z-index: 1;
}

.benefits-image-container img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.decorative-leaf {
    position: absolute;
    left: -30px;
    bottom: 0;
    width: 200px;
    pointer-events: none;
}

/* ===== PRODUCTS ===== */
.products {
    position: relative;
    padding: 100px 25px;
    overflow: hidden;
}

.products-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.products-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 22, 48, 0.85) 0%, rgba(0, 33, 71, 0.8) 100%);
}

.products-content {
    position: relative;
    z-index: 1;
    max-width: 1170px;
    margin: 0 auto;
    text-align: center;
}

.products-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 60px;
    line-height: 1.3;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.product-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
}

.product-image {
    background: #FFFFFF;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
}

.product-image img {
    max-height: 200px;
    object-fit: contain;
    margin: 0 auto;
    border: 1.5px solid;
    border-image: linear-gradient(268.74deg, #AB8234 8.72%, #F6E38F 53.17%, #AB8234 94.99%) 1;
    padding: 10px;
}

.product-label {
    background: linear-gradient(268.74deg, #AB8234 8.72%, #F6E38F 53.17%, #AB8234 94.99%);
    padding: 8px 0;
    text-align: center;
    font-weight: 600;
    font-size: 1.2rem;
    color: #002147;
}

/* ===== FEATURES ===== */
.features {
    position: relative;
    padding: 100px 25px;
    background: linear-gradient(62.47deg, rgba(0, 22, 48, 0.06) 16.09%, rgba(0, 44, 94, 0.06) 71.48%);
    overflow: hidden;
}

.features-container {
    max-width: 1170px;
    margin: 0 auto;
}

.features-container .section-title {
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 350px);
    gap: 30px;
    justify-content: center;
}

.feature-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0, 33, 71, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card::before,
.feature-card::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 7px;
    background: linear-gradient(268.74deg, #AB8234 8.72%, #F6E38F 53.17%, #AB8234 94.99%);
    border-radius: 4px;
}

.feature-card::before {
    top: -3px;
}

.feature-card::after {
    bottom: -3px;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 33, 71, 0.12);
}

.feature-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    background: linear-gradient(268.74deg, #AB8234 8.72%, #F6E38F 53.17%, #AB8234 94.99%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 26px;
}

.feature-icon img {
    width: 60px;
    height: 60px;
    filter: none;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #002147;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.decorative-bowl {
    position: absolute;
    right: -10px;
    bottom: 20px;
    width: 220px;
    pointer-events: none;
    transform: scaleX(-1);
}

/* ===== FAQ ===== */
.faq {
    padding: 100px 25px;
}

.faq-container {
    max-width: 1170px;
    margin: 0 auto;
}

.faq-container .section-title {
    margin-bottom: 50px;
}

.faq-content {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.faq-image {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    position: sticky;
    top: 20px;
}

.faq-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
}

.faq-list {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: #F7F7F7;
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item[open] {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.faq-item summary {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1B1B1B;
    cursor: pointer;
    display: flex;
    align-items: center;
    flex-direction: row;
    list-style: none;
    gap: 12px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::before {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: #1B1B1B;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item[open] summary::before {
    content: '\2212';
}

.faq-item p {
    padding: 0 24px 18px 60px;
    font-size: 0.88rem;
    color: #555;
    line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact {
    position: relative;
    padding: 100px 25px;
    background: linear-gradient(62.47deg, rgba(0, 22, 48, 0.04) 16.09%, rgba(0, 44, 94, 0.04) 71.48%);
    overflow: hidden;
}

.contact-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
}

.contact-container .section-title {
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-columns {
    display: flex;
    gap: 20px;
}

.form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-left input,
.form-right textarea {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #D0D0D0;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #1B1B1B;
    background: #FFFFFF;
    outline: none;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-left input:focus,
.form-right textarea:focus {
    border-color: #002147;
}

.form-left input::placeholder,
.form-right textarea::placeholder {
    color: #999;
}

.form-right textarea {
    flex: 1;
    resize: vertical;
    min-height: 100px;
}

.form-right .btn-submit {
    width: 100%;
}

.contact-decor-left,
.contact-decor-right {
    position: absolute;
    pointer-events: none;
}

.contact-decor-left {
    left: 0;
    top: 0;
    width: 400px;
}

.contact-decor-right {
    right: 0;
    bottom: 0;
    width: 400px;
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    background: #002147;
    padding: 60px 0 20px;
    color: #FFFFFF;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background: linear-gradient(90deg, #001229 0%, #002041 50%, #002f5a 100%);
}

.footer-bg img {
    width: 80%;
    height: auto;
    object-fit: contain;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.footer-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.footer-container {
    max-width: 1170px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 25px;
}

.footer-logo {
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.footer-logo img {
    height: 150px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.2;
}

.footer-brand-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 2px;
}

.footer-brand-sub {
    font-size: 1.2rem;
    font-weight: 400;
    color: #FFFFFF;
    letter-spacing: 3px;
    text-transform: lowercase;
}

.footer-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.15rem;
    color: #FFFFFF;
}

.footer-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(268.74deg, #AB8234 8.72%, #F6E38F 53.17%, #AB8234 94.99%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer-icon svg {
    width: 20px;
    height: 20px;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 36px;
}

.footer-social span {
    font-size: 1.15rem;
    color: #FFFFFF;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px 25px 0;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 40px;
}

.footer-copyright p {
    font-size: 1rem;
    color: #FFFFFF;
}

/* ===== PAGE HERO (About Us & Products pages) ===== */
.page-hero {
    position: relative;
    overflow: hidden;
    background: #002147;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 33, 71, 0.7) 0%, rgba(0, 33, 71, 0.9) 100%);
}

.page-hero-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1220px;
    width: 100%;
    margin: 0 auto;
    padding: 30px 25px 60px;
}

.page-hero-content {
    text-align: center;
    padding: 60px 0 40px;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.page-hero-breadcrumb {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

.page-hero-breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.page-hero-breadcrumb a:hover {
    color: #F6E38F;
}

.page-hero-breadcrumb span {
    background: linear-gradient(268.74deg, #AB8234 8.72%, #F6E38F 53.17%, #AB8234 94.99%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== ABOUT US PAGE ===== */

/* White Header Bar */
.about-header-wrap {
    background: #FFFFFF;
    padding: 0;
    margin-top: 20px;
}

.about-header-inner {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
}

/* Hero Banner (image below navbar) */
.about-hero-banner {
    position: relative;
    overflow: hidden;
    background: #002147;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 33, 71, 0.7) 0%, rgba(0, 33, 71, 0.9) 100%);
}

.about-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 200px 25px;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Hero H1 should appear faster than general reveal elements. */
.about-hero-title.reveal {
    transform: translateY(12px);
    transition: opacity 0.32s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0s !important;
}

/* Story Section */
.about-story {
    padding: 80px 25px;
}

.about-story-title {
    max-width: 1170px;
    margin: 0 auto 50px;
}

.about-story-container {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-story-image {
    flex-shrink: 0;
    width: 42%;
}

.about-image-container {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.about-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.about-story-text {
    flex: 1;
}

.about-story-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #002147;
    margin-bottom: 20px;
}

.about-story-text p {
    font-size: 1.1rem;
    color: #3a3a3a;
    line-height: 1.8;
    margin-bottom: 14px;
}

.about-why {
    padding: 80px 25px;
}

.about-why-container {
    max-width: 1170px;
    margin: 0 auto;
    text-align: center;
}

.about-why-container .section-title {
    margin-bottom: 20px;
}

.about-why-subtitle {
    font-size: 1.1rem;
    color: #3a3a3a;
    line-height: 1.8;
    max-width: 850px;
    margin: 0 auto 50px;
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-why-card {
    border: 1px solid #d0d0d0;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.about-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 33, 71, 0.1);
}

.about-why-header {
    background: linear-gradient(268.74deg, #AB8234 8.72%, #F6E38F 53.17%, #AB8234 94.99%);
    padding: 16px 16px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #002147;
}

.about-why-card p {
    padding: 20px 18px;
    font-size: 1rem;
    color: #3a3a3a;
    line-height: 1.7;
    background: rgba(0, 33, 71, 0.03);
    flex: 1;
    margin: 0;
}

/* Solutions Section */
.about-solutions {
    padding: 80px 25px;
    background: linear-gradient(62.47deg, rgba(0, 22, 48, 0.04) 16.09%, rgba(0, 44, 94, 0.04) 71.48%);
}

.about-solutions-container {
    max-width: 1170px;
    margin: 0 auto;
    text-align: center;
}

.about-solutions-container .section-title {
    margin-bottom: 16px;
}

.about-solutions-subtitle {
    font-size: 1.1rem;
    color: #3a3a3a;
    line-height: 1.8;
    margin-bottom: 50px;
}

.about-solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.about-solutions-card {
    background: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    padding: 32px 28px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-solutions-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 33, 71, 0.08);
}

.about-solutions-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #002147;
    margin-bottom: 10px;
}

.about-solutions-card p {
    font-size: 1.05rem;
    color: #3a3a3a;
    line-height: 1.7;
}

/* ===== PRODUCTS PAGE ===== */
.products-page-grid-section {
    padding: 60px 25px 100px;
    background-color: #EBEBEB;
}

.products-page-container {
    max-width: 1170px;
    margin: 0 auto;
}



/* ===== RESPONSIVE ===== */
/* Hide decorative assets below laptop */
@media (max-width: 1024px) {
    .decorative-leaf,
    .decorative-bowl,
    .contact-decor-left,
    .contact-decor-right {
        display: none;
    }
}

@media (max-width: 1200px) {
    .hero-box-wrapper {
        padding: 24px 20px 50px;
    }

    .hero-content {
        padding: 30px 40px 40px;
    }

    .hero-percent {
        font-size: 3.5rem;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-image {
        max-width: 380px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .header {
        padding: 0;
    }

    .header-logo {
        width: 300px;
        height: auto;
    }

    .nav {
        left: 295px;
        width: calc(100% - 295px);
    }

    .hero-box-wrapper {
        padding: 20px 16px 40px;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        padding: 30px 30px 40px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        max-width: 350px;
    }

    .hero-banner {
        margin-left: 10px;
        border-radius: 5px;
        margin-right: 10px;
    }

    .banner-content {
        max-width: 100%;
        width: 100%;
        clip-path: none;
        padding: 0 30px;
    }

    .benefits-container {
        flex-direction: column-reverse;
        gap: 50px;
    }

    .benefits-right {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .faq-content {
        flex-direction: column;
    }

    .faq-image {
        width: 100%;
        max-width: 380px;
        margin: 0 auto;
        position: static;
    }

    .about-story-container {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .about-story-image {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-solutions-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .nav, .nav-bg, .nav-links, .nav-connector {
        display: none;
    }

    .header-logo {
        width: 180px;
        height: auto;
    }

    /* Keep 100% Biodegradable text prominent */
    .hero-percent {
        font-size: 3rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-banner {
        margin-left: 10px;
        border-radius: 5px;
        margin-right: 10px;
    }

    .banner-content {
        max-width: 100%;
        width: 100%;
        clip-path: none;
        padding: 0 24px;
        height: 50px;
    }

    .hero-inner {
        padding: 40px 0 40px 0;
    }

    .benefits,
    .products,
    .features,
    .faq,
    .contact {
        padding: 60px 30px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .products-title {
        font-size: 2rem;
    }

    .form-columns {
        flex-direction: column;
    }

    .form-right .btn-submit {
        align-self: flex-start;
    }

    .footer {
        padding: 40px 20px 24px;
    }

    .footer-info {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .page-hero-title {
        font-size: 2.2rem;
    }

    .about-story,
    .about-why,
    .about-solutions,
    .products-page-grid-section {
        padding-left: 30px;
        padding-right: 30px;
    }

    .about-why-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .about-solutions-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .about-hero-content {
        padding: 120px 30px;
    }
}

@media (max-width: 480px) {
    .hero-box-wrapper {
        padding: 16px 10px 30px;
    }

    .hero-content {
        padding: 16px 14px 20px;
    }

    /* Keep 100% Biodegradable prominent even on small screens */
    .hero-percent {
        font-size: 2.8rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-box {
        border-radius: 20px;
    }

    .hero-inner {
        padding: 20px 0 20px 0;
    }

    .hero-banner {
        padding: 0;
        margin-left: 20px;
        border-radius: 0 0 10px 10px;
        margin-right: 20px;
    }

    .banner-content {
        font-size: 0.85rem;
        height: 46px;
        padding: 0 20px;
        clip-path: none;
        max-width: 100%;
        width: 100%;
    }

    .header-logo {
        width: 150px;
        height: auto;
    }

    .section-title {
        font-size: 1.5rem;
    }

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

    .benefits,
    .products,
    .features,
    .faq,
    .contact {
        padding: 40px 20px;
    }

    .about-story,
    .about-why,
    .about-solutions,
    .products-page-grid-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-hero-content {
        padding: 80px 20px;
    }
}

/* ===== HAMBURGER MENU (hidden on desktop) ===== */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
    position: absolute;
    right: 0;
    top: 30px;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #002147;
    border-radius: 3px;
    margin: 5px 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* When inside light header (about/products pages) */
.about-header-wrap .hamburger span {
    background: #002147;
}

/* Hamburger → X animation (white when active on dark sidebar) */
.hamburger.active span {
    background: #FFFFFF;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ===== MOBILE SIDEBAR ===== */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: #002147;
    z-index: 10000;
    transition: right 0.35s ease;
    padding: 80px 30px 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-sidebar.active {
    right: 0;
}

/* Sidebar Close Button */
.sidebar-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s;
    line-height: 1;
}

.sidebar-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-sidebar .sidebar-link {
    display: block;
    color: #FFFFFF;
    font-size: 1.15rem;
    font-weight: 500;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s, padding-left 0.3s;
}

.mobile-sidebar .sidebar-link:hover {
    color: #F6E38F;
    padding-left: 10px;
}

.mobile-sidebar .sidebar-link.active {
    background: linear-gradient(269deg, #AB8234 0%, #F6E38F 52%, #AB8234 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== MOBILE NAV BREAKPOINT ===== */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav {
        display: none;
    }

    .about-header-wrap {
        overflow: hidden;
    }

    .about-header-inner {
        overflow: hidden;
    }

    .header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: auto;
    }

    .header-logo {
        position: static;
        width: 180px;
        height: auto;
    }

    .hamburger {
        position: static;
    }
}

/* ===== PAGE LOADER ===== */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #002147;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    animation: loaderPulse 0.5s ease-in-out infinite alternate;
}

.loader-logo {
    width: 200px;
    height: auto;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(171, 130, 52, 0.4));
}

.loader-bar {
    width: 180px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    margin: 0 auto;
    overflow: hidden;
}

.loader-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(268.74deg, #AB8234 8.72%, #F6E38F 53.17%, #AB8234 94.99%);
    border-radius: 4px;
    animation: loaderFill 1s ease-in-out forwards;
}

@keyframes loaderFill {
    0% { width: 0%; }
    60% { width: 75%; }
    100% { width: 100%; }
}

@keyframes loaderPulse {
    from { transform: scale(1); }
    to { transform: scale(1.03); }
}

/* ===== PAGE TRANSITIONS ===== */
body.page-leaving {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ENHANCED TRANSITIONS ===== */

/* Links */
a {
    transition: color 0.3s ease, opacity 0.3s ease;
}

a:active {
    opacity: 0.7;
    transform: scale(0.97);
}

/* Nav link hover glow */
.nav-link {
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-link:hover {
    text-shadow: 0 0 12px rgba(246, 227, 143, 0.5);
}

/* Nav ripple */
.nav-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(246, 227, 143, 0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rippleOut 0.6s ease-out forwards;
    pointer-events: none;
}

@keyframes rippleOut {
    to {
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}

/* Buttons — enhanced hover/active */
.btn {
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, filter 0.3s ease;
}

.btn:active {
    transform: translateY(1px) scale(0.97);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-gold:hover {
    filter: brightness(1.08);
    box-shadow: 0 8px 28px rgba(171, 130, 52, 0.35);
}

.btn-dark:hover {
    box-shadow: 0 8px 28px rgba(0, 33, 71, 0.35);
}

.btn-white:hover {
    box-shadow: 0 8px 28px rgba(255, 255, 255, 0.25);
}

/* Product cards — smooth lift */
.product-card {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 33, 71, 0.12);
}

/* Product image — subtle scale on hover */
.product-image img {
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Feature cards */
.feature-card {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s ease;
}

.feature-card:hover {
    box-shadow: 0 16px 40px rgba(0, 33, 71, 0.12);
}

/* FAQ item open/close */
.faq-item {
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.faq-item p {
    animation: fadeSlideDown 0.35s ease forwards;
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About cards */
.about-why-card,
.about-solutions-card {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s ease;
}

/* Footer items */
.footer-item {
    transition: transform 0.3s ease;
}

.footer-item:hover {
    transform: translateX(4px);
}

.social-links a {
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(246, 227, 143, 0.3);
}

/* Form inputs */
.form-left input,
.form-right textarea {
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.form-left input:focus,
.form-right textarea:focus {
    box-shadow: 0 0 0 3px rgba(0, 33, 71, 0.08);
    transform: translateY(-1px);
}

/* Input error shake */
.input-error {
    animation: inputShake 0.4s ease;
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15) !important;
}

@keyframes inputShake {
    0%, 100% { transform: translateX(0); }
    20% { transform: translateX(-6px); }
    40% { transform: translateX(6px); }
    60% { transform: translateX(-4px); }
    80% { transform: translateX(4px); }
}

/* Send button states */
.btn-sending {
    opacity: 0.8;
    pointer-events: none;
}

.btn-sent {
    background: linear-gradient(90deg, #1a8a4a 0%, #27ae60 50%, #2ecc71 100%) !important;
    pointer-events: none;
    animation: sentPop 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes sentPop {
    0% { transform: scale(0.95); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.btn-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    animation: checkFadeIn 0.4s ease forwards;
}

.btn-check svg {
    animation: checkDraw 0.5s ease forwards;
}

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

@keyframes checkDraw {
    from { stroke-dasharray: 30; stroke-dashoffset: 30; }
    to { stroke-dasharray: 30; stroke-dashoffset: 0; }
}

/* Benefits image — subtle float */
.benefits-right {
    animation: gentleFloat 4s ease-in-out infinite alternate;
}

@keyframes gentleFloat {
    from { transform: translateY(0); }
    to { transform: translateY(-8px); }
}

/* Hero image entrance */
.hero-image {
    animation: heroSlideIn 1s cubic-bezier(0.22, 1, 0.36, 1) 2s both;
}

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

.hero-text {
    animation: heroFadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 2.2s both;
}

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

/* About hero title entrance */
.about-hero-title {
    animation: heroTitleIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 2s both;
}

@keyframes heroTitleIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Image hover zoom */
.faq-image img,
.about-image-container img {
    transition: transform 0.5s ease;
}

.faq-image:hover img,
.about-image-container:hover img {
    transform: scale(1.03);
}

