/* =========================================================
   NEW UNIVERSAL R O SYSTEM
   DESIGN 3 - COMPACT PRODUCT PHOTO ENQUIRY
========================================================= */

:root {
    --blue: #087dcc;
    --blue-dark: #073f68;
    --cyan: #00a8ee;
    --text: #17384f;
    --muted: #718694;
    --soft: #f4fbff;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text);
    background: var(--soft);
    overflow-x: hidden;
}

button,
input,
textarea {
    font: inherit;
}

/* =========================================================
   PAGE BACKGROUND
========================================================= */

body::before,
body::after {
    content: "";
    position: fixed;
    z-index: -2;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

body::before {
    width: 500px;
    height: 500px;
    top: 100px;
    left: -200px;
    background: rgba(0, 157, 255, 0.08);
    animation: pageBlobOne 9s ease-in-out infinite alternate;
}

body::after {
    width: 450px;
    height: 450px;
    right: -200px;
    bottom: 100px;
    background: rgba(0, 208, 255, 0.07);
    animation: pageBlobTwo 11s ease-in-out infinite alternate;
}

@keyframes pageBlobOne {
    from {
        transform: translateY(0) scale(1);
    }

    to {
        transform: translateY(100px) scale(1.15);
    }
}

@keyframes pageBlobTwo {
    from {
        transform: translateY(0) scale(1);
    }

    to {
        transform: translateY(-100px) scale(1.15);
    }
}

/* =========================================================
   HEADER
========================================================= */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 125, 204, 0.12);
    box-shadow: 0 5px 25px rgba(0, 80, 140, 0.07);
    animation: headerDrop 0.7s ease;
}

@keyframes headerDrop {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-top {
    max-width: 1250px;
    margin: auto;
    padding: 16px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

/* LOGO */

.logo {
    min-width: 305px;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
}

.logo-image {
    width: 58px;
    height: 56px;
    flex: 0 0 58px;
    object-fit: contain;
    filter: drop-shadow(0 5px 9px rgba(7, 63, 104, 0.16));
    transition: transform 0.3s ease;
}

.logo:hover .logo-image {
    transform: translateY(-2px) scale(1.04);
}

.logo-text {
    min-width: 0;
    display: block;
}

.logo-main {
    display: block;
    color: var(--blue);
    font-size: 25px;
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(8, 125, 204, 0.15);
}

.logo-sub {
    display: block;
    margin-top: 3px;
    color: #174b70;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 5px;
}

/* SEARCH */

.search-box {
    flex: 1;
    max-width: 530px;
    display: flex;
    overflow: hidden;
    background: rgba(245, 251, 255, 0.95);
    border: 1px solid #cfe5f2;
    border-radius: 40px;
    box-shadow:
        inset 0 0 15px rgba(0, 100, 170, 0.03),
        0 5px 20px rgba(0, 100, 170, 0.04);
    transition: 0.3s;
}

.search-box:focus-within {
    border-color: #0794e8;
    box-shadow:
        0 0 0 4px rgba(8, 125, 204, 0.08),
        0 8px 25px rgba(0, 100, 170, 0.10);
    transform: translateY(-2px);
}

.search-box input {
    width: 100%;
    min-width: 0;
    padding: 14px 20px;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
}

.search-box button {
    padding: 0 25px;
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border: none;
    cursor: pointer;
    font-size: 17px;
    transition: 0.3s;
}

.search-box button:hover {
    padding-left: 30px;
}

/* LOGIN */

.login-area {
    position: relative;
    white-space: nowrap;
}

.login-btn {
    padding: 11px 19px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(8, 125, 204, 0.20);
    transition: 0.3s;
}

.login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(8, 125, 204, 0.30);
}

.customer-menu {
    position: relative;
}

.customer-menu-button {
    min-width: 178px;
    padding: 7px 10px 7px 8px;
    display: flex;
    align-items: center;
    gap: 9px;
    color: #174b70;
    background: linear-gradient(135deg, #f5fbff, #e9f7ff);
    border: 1px solid #cde8f6;
    border-radius: 16px;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(7, 94, 147, 0.10);
    transition: 0.25s ease;
}

.customer-menu-button:hover,
.customer-menu-button:focus-visible,
.customer-menu.is-open .customer-menu-button {
    background: white;
    border-color: #83cfee;
    box-shadow: 0 12px 28px rgba(7, 94, 147, 0.16);
    transform: translateY(-2px);
}

.customer-avatar {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    border-radius: 11px;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 6px 15px rgba(8, 125, 204, 0.22);
}

.customer-greeting {
    min-width: 0;
    flex: 1;
    text-align: left;
    line-height: 1.25;
}

.customer-greeting small {
    display: block;
    color: #6f8b9e;
    font-size: 9px;
    font-weight: 700;
}

.customer-greeting strong {
    max-width: 110px;
    display: block;
    overflow: hidden;
    color: #154b6e;
    font-size: 12px;
    font-weight: 900;
    text-overflow: ellipsis;
}

.customer-chevron {
    color: var(--blue);
    font-size: 11px;
    transition: 0.25s ease;
}

.customer-menu.is-open .customer-chevron {
    transform: rotate(180deg);
}

.customer-dropdown {
    position: absolute;
    top: calc(100% + 11px);
    right: 0;
    z-index: 3000;
    width: 285px;
    padding: 13px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    color: #163f5b;
    background: white;
    border: 1px solid #d4e8f3;
    border-radius: 17px;
    box-shadow: 0 22px 55px rgba(9, 68, 105, 0.20);
    transform: translateY(-8px) scale(0.98);
    transform-origin: top right;
    transition: 0.22s ease;
}

.customer-dropdown[hidden] {
    display: none;
}

.customer-dropdown::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 24px;
    width: 13px;
    height: 13px;
    background: white;
    border-top: 1px solid #d4e8f3;
    border-left: 1px solid #d4e8f3;
    transform: rotate(45deg);
}

.customer-menu.is-open .customer-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.customer-dropdown-head {
    padding: 4px 4px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #e8f2f7;
}

.customer-dropdown-avatar {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, #0b73ba, #16b8dc);
    border-radius: 13px;
    font-size: 16px;
    font-weight: 900;
}

.customer-dropdown-head strong,
.customer-dropdown-head small {
    display: block;
}

.customer-dropdown-head strong {
    max-width: 195px;
    overflow: hidden;
    color: #103d5c;
    font-size: 13px;
    text-overflow: ellipsis;
}

.customer-dropdown-head small {
    margin-top: 2px;
    color: #7990a0;
    font-size: 10px;
}

.customer-detail-row {
    padding: 10px 4px;
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    border-bottom: 1px solid #eef5f8;
}

.customer-detail-row span {
    color: #7890a0;
    font-size: 10px;
    font-weight: 700;
}

.customer-detail-row strong {
    overflow-wrap: anywhere;
    color: #164866;
    font-size: 11px;
    font-weight: 800;
    text-align: right;
    white-space: normal;
}

.customer-dropdown-actions {
    padding-top: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.customer-dropdown-actions a,
.customer-dropdown-actions button {
    width: 100%;
    padding: 10px;
    display: block;
    border: 0;
    border-radius: 9px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-family: inherit;
    font-size: 11px;
    font-weight: 900;
    transition: 0.2s ease;
}

.customer-dropdown-actions a:hover,
.customer-dropdown-actions button:hover {
    transform: translateY(-1px);
}

.customer-logout-form {
    margin: 0;
}

.account-link {
    color: var(--blue);
    background: #eaf7ff;
}

.customer-logout {
    color: #b52e3e;
    background: #fff0f2;
}

.home-flash {
    max-width: 1250px;
    margin: 13px auto 0;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    border: 1px solid;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(12, 73, 106, 0.08);
}

.home-flash-success {
    color: #087341;
    background: #edfff6;
    border-color: #bcebd4;
}

.home-flash-error {
    color: #9f2736;
    background: #fff2f3;
    border-color: #ffd1d6;
}

.home-flash button {
    padding: 0 2px;
    color: inherit;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
}

/* =========================================================
   NAVIGATION
========================================================= */

.nav {
    border-top: 1px solid #edf5f9;
}

.nav-inner {
    max-width: 1250px;
    margin: auto;
    padding: 8px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.nav a {
    padding: 10px 20px;
    position: relative;
    color: #214b67;
    border-radius: 9px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 3px;
    width: 0;
    height: 2px;
    background: var(--blue);
    transform: translateX(-50%);
    transition: 0.3s;
}

.nav a:hover {
    color: var(--blue);
    background: #eef9ff;
}

.nav a:hover::after {
    width: 45%;
}

.nav .cart {
    color: var(--blue);
}

/* =========================================================
   HERO
========================================================= */

.hero {
    max-width: 1250px;
    margin: 35px auto 20px;
    padding: 65px 55px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background:
        radial-gradient(
            circle at 85% 30%,
            rgba(0, 177, 255, 0.17),
            transparent 30%
        ),
        linear-gradient(120deg, #e8f8ff, #ffffff);
    border: 1px solid #d8edf8;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 90, 150, 0.09);
    animation: heroAppear 1s ease;
}

.hero::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -120px;
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.50);
    border-radius: 50%;
    filter: blur(30px);
}

@keyframes heroAppear {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.hero-small {
    margin-bottom: 14px;
    color: var(--blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
}

.hero h1 {
    margin-bottom: 18px;
    color: var(--blue-dark);
    font-size: 48px;
    line-height: 1.08;
}

.hero h1 span {
    color: var(--blue);
}

.hero p {
    max-width: 600px;
    margin-bottom: 28px;
    color: #587080;
    font-size: 16px;
    line-height: 1.7;
}

.hero-btn {
    padding: 14px 26px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    background: linear-gradient(135deg, var(--blue), #00a9ef);
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(8, 125, 204, 0.25);
    transition: 0.3s;
}

.hero-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(8, 125, 204, 0.35);
}

.hero-icon {
    position: relative;
    font-size: 130px;
    filter: drop-shadow(0 15px 15px rgba(0, 130, 200, 0.20));
    animation: heroDropFloat 4s ease-in-out infinite;
}

@keyframes heroDropFloat {
    0%,
    100% {
        transform: translateY(0) rotate(-3deg);
    }

    50% {
        transform: translateY(-18px) rotate(3deg);
    }
}

/* =========================================================
   SECTION
========================================================= */

.section {
    max-width: 1250px;
    margin: 65px auto;
    padding: 0 25px;
}

.section-title {
    margin-bottom: 35px;
    text-align: center;
}

.section-title h2 {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--blue-dark);
    font-size: 32px;
}

.section-title h2::after {
    content: "";
    display: block;
    width: 55px;
    height: 3px;
    margin: 10px auto 0;
    background: linear-gradient(90deg, var(--blue), #00b9ff);
    border-radius: 5px;
}

.section-title p {
    color: var(--muted);
}

/* =========================================================
   PRODUCT CARDS
========================================================= */

.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 23px;
}

.product-card {
    position: relative;
    overflow: hidden;
    background: white;
    border: 1px solid #e0edf4;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 70, 120, 0.06);
    transition: 0.4s;
}

.product-card::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 180px;
    height: 180px;
    background: rgba(0, 170, 255, 0.10);
    border-radius: 50%;
    transition: 0.5s;
}

.product-card:hover::before {
    width: 350px;
    height: 350px;
}

.product-card:hover {
    border-color: #a9dcf5;
    transform: translateY(-12px) scale(1.015);
    box-shadow: 0 25px 55px rgba(0, 100, 160, 0.16);
}

.product-image {
    height: 230px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, #ffffff, #eef9ff);
}

.product-image::after {
    content: "";
    position: absolute;
    bottom: 15px;
    width: 140px;
    height: 30px;
    background: rgba(0, 120, 200, 0.12);
    border-radius: 50%;
    filter: blur(12px);
}

.product-image img {
    max-width: 100%;
    max-height: 205px;
    position: relative;
    z-index: 2;
    object-fit: contain;
    transition: 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.09) translateY(-6px);
    filter: drop-shadow(0 12px 15px rgba(0, 80, 130, 0.15));
}

.no-image {
    position: relative;
    z-index: 2;
    color: #66b9e8;
    font-size: 72px;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 8px;
    color: #174b70;
    font-size: 19px;
}

.product-info p {
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 14px;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.price {
    color: var(--blue);
    font-size: 19px;
    font-weight: 800;
}

.price del {
    margin-bottom: 1px;
    display: block;
    color: #8a9da9;
    font-size: 10px;
    font-weight: 600;
}

.details-btn {
    padding: 9px 14px;
    color: var(--blue);
    background: #e9f6ff;
    border: none;
    border-radius: 20px;
    font-weight: 700;
    cursor: pointer;
}

.product-card:hover .details-btn {
    color: white;
    background: var(--blue);
}

/* =========================================================
   DESIGN 3 - COMPACT ENQUIRY SECTION
========================================================= */

.enquiry-section {
    max-width: 1040px;
    margin: 65px auto;
    padding: 0 22px;
}

.enquiry-box {
    width: 100%;
    display: grid;
    grid-template-columns:
        minmax(300px, 0.85fr)
        minmax(410px, 1.15fr);
    overflow: hidden;
    background: white;
    border: 1px solid #d5e9f5;
    border-radius: 25px;
    box-shadow:
        0 25px 65px rgba(0, 82, 145, 0.13),
        0 8px 22px rgba(0, 82, 145, 0.06);
}

/* =========================================================
   LEFT PRODUCT SHOWCASE
========================================================= */

.enquiry-left {
    min-height: 455px;
    padding: 26px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle at 76% 20%,
            rgba(96, 224, 255, 0.27),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 90%,
            rgba(0, 196, 255, 0.20),
            transparent 34%
        ),
        linear-gradient(
            145deg,
            #032a4c 0%,
            #075f99 52%,
            #0794d4 100%
        );
}

.enquiry-left::before {
    content: "";
    position: absolute;
    top: -130px;
    right: -130px;
    z-index: -1;
    width: 280px;
    height: 280px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.enquiry-left::after {
    content: "";
    position: absolute;
    left: -90px;
    bottom: -110px;
    z-index: -1;
    width: 230px;
    height: 230px;
    background: rgba(255, 255, 255, 0.055);
    border-radius: 50%;
}

.product-showcase {
    width: 100%;
    max-width: 330px;
    height: 395px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* BACKGROUND GLOWS */

.showcase-glow {
    position: absolute;
    left: 50%;
    border-radius: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.showcase-glow-one {
    top: 55px;
    width: 235px;
    height: 235px;
    background: rgba(80, 222, 255, 0.20);
    filter: blur(28px);
    animation: showcaseGlow 4s ease-in-out infinite;
}

.showcase-glow-two {
    bottom: 25px;
    width: 245px;
    height: 52px;
    background: rgba(0, 190, 255, 0.26);
    filter: blur(24px);
}

@keyframes showcaseGlow {
    0%,
    100% {
        opacity: 0.55;
        transform: translateX(-50%) scale(0.90);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.10);
    }
}

/* DECORATIVE CIRCLES */

.showcase-circle {
    position: absolute;
    left: 50%;
    top: 48%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.circle-one {
    width: 292px;
    height: 292px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    animation: showcaseRotate 15s linear infinite;
}

.circle-two {
    width: 245px;
    height: 245px;
    opacity: 0.70;
    border: 1px dashed rgba(255, 255, 255, 0.20);
    animation: showcaseRotate 20s linear infinite reverse;
}

.circle-one::before,
.circle-one::after {
    content: "";
    position: absolute;
    background: #79e8ff;
    border-radius: 50%;
    box-shadow: 0 0 18px rgba(121, 232, 255, 0.90);
}

.circle-one::before {
    top: 14%;
    left: 8%;
    width: 9px;
    height: 9px;
}

.circle-one::after {
    right: 5%;
    bottom: 26%;
    width: 7px;
    height: 7px;
}

@keyframes showcaseRotate {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* FLOATING BUBBLES */

.showcase-bubble {
    position: absolute;
    z-index: 3;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 50%;
    box-shadow:
        inset 2px 2px 6px rgba(255, 255, 255, 0.38),
        0 6px 14px rgba(0, 30, 65, 0.14);
    animation: showcaseBubble 4s ease-in-out infinite;
}

.bubble-one {
    top: 40px;
    right: 38px;
    width: 28px;
    height: 28px;
}

.bubble-two {
    left: 20px;
    bottom: 90px;
    width: 17px;
    height: 17px;
    animation-delay: -1.3s;
}

.bubble-three {
    right: 16px;
    bottom: 56px;
    width: 10px;
    height: 10px;
    animation-delay: -2.3s;
}

@keyframes showcaseBubble {
    0%,
    100% {
        opacity: 0.50;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(-14px);
    }
}

/* =========================================================
   PRODUCT PHOTO CARD
========================================================= */

.product-photo-card {
    width: 230px;
    height: 320px;
    padding: 16px;
    position: relative;
    z-index: 6;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(
            circle at 50% 44%,
            rgba(255, 255, 255, 0.98),
            rgba(239, 249, 255, 0.90)
        );
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 22px;
    box-shadow:
        inset 0 0 30px rgba(255, 255, 255, 0.58),
        0 25px 45px rgba(0, 27, 65, 0.28);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: photoCardFloat 4s ease-in-out infinite;
}

.product-photo-card::before {
    content: "";
    position: absolute;
    inset: 7px;
    z-index: 0;
    border: 1px solid rgba(8, 125, 204, 0.10);
    border-radius: 16px;
}

@keyframes photoCardFloat {
    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-8px) rotate(1deg);
    }
}

/* CARD SHINE */

.photo-card-shine {
    position: absolute;
    top: -30%;
    left: -80%;
    z-index: 10;
    width: 55%;
    height: 160%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.65),
        transparent
    );
    transform: rotate(20deg);
    animation: photoShine 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes photoShine {
    0%,
    22% {
        left: -80%;
    }

    58%,
    100% {
        left: 145%;
    }
}

/* PRODUCT PHOTO */

.enquiry-product-photo {
    max-width: 100%;
    max-height: 280px;
    position: relative;
    z-index: 5;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 15px 13px rgba(0, 67, 110, 0.18));
}

/* =========================================================
   PHOTO PLACEHOLDER
========================================================= */

.product-photo-placeholder {
    width: 145px;
    height: 220px;
    position: relative;
    z-index: 5;
    display: none;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            105deg,
            #8b9aa4 0%,
            #eff4f7 18%,
            #9eabb4 34%,
            #ffffff 52%,
            #aab6be 70%,
            #eaf0f3 88%,
            #8998a2 100%
        );
    border: 1px solid #aebbc4;
    border-radius: 8px 8px 12px 12px;
    box-shadow:
        inset 8px 0 15px rgba(255, 255, 255, 0.40),
        inset -8px 0 15px rgba(40, 57, 68, 0.18),
        0 18px 24px rgba(0, 45, 80, 0.20);
}

.product-photo-placeholder::before {
    content: "";
    position: absolute;
    top: 58px;
    left: 50%;
    width: 105px;
    height: 70px;
    background: linear-gradient(145deg, #4a5a64, #18252d);
    border: 1px solid #abb7be;
    border-radius: 8px;
    transform: translateX(-50%);
}

.product-photo-placeholder::after {
    content: "";
    position: absolute;
    top: 82px;
    left: 50%;
    width: 72px;
    height: 15px;
    background: linear-gradient(180deg, #65757f, #202e36);
    border: 1px solid #9ba8af;
    border-radius: 5px;
    transform: translateX(-50%);
}

.placeholder-drop {
    position: absolute;
    top: 23px;
    left: 50%;
    width: 15px;
    height: 19px;
    z-index: 3;
    background: linear-gradient(145deg, #38d2f5, #087dcc);
    border-radius: 62% 38% 64% 36%;
    box-shadow: 0 3px 7px rgba(8, 125, 204, 0.35);
    transform: translateX(-50%) rotate(45deg);
}

.placeholder-line {
    position: absolute;
    left: 50%;
    width: 68px;
    height: 3px;
    z-index: 3;
    background: rgba(48, 65, 75, 0.50);
    border-radius: 5px;
    transform: translateX(-50%);
}

.line-one {
    bottom: 49px;
}

.line-two {
    bottom: 41px;
}

.line-three {
    bottom: 33px;
}

/* PRODUCT SHADOW */

.photo-product-shadow {
    position: absolute;
    left: 50%;
    bottom: 16px;
    z-index: 2;
    width: 150px;
    height: 21px;
    background: rgba(0, 72, 120, 0.15);
    border-radius: 50%;
    filter: blur(9px);
    transform: translateX(-50%);
}

/* =========================================================
   DIRECTION TOWARDS FORM
========================================================= */

.showcase-direction {
    position: absolute;
    top: 50%;
    right: -42px;
    z-index: 10;
    width: 85px;
    height: 38px;
    display: flex;
    align-items: center;
}

.showcase-direction::before {
    content: "";
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.90)
    );
}

.showcase-direction::after {
    content: "";
    width: 12px;
    height: 12px;
    margin-left: -11px;
    border-top: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
}

.showcase-direction-light {
    position: absolute;
    left: 5%;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    box-shadow:
        0 0 8px white,
        0 0 16px #72e7ff;
    animation: directionMove 2s ease-in-out infinite;
}

@keyframes directionMove {
    from {
        left: 5%;
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    to {
        left: 87%;
        opacity: 0;
    }
}

/* =========================================================
   COMPACT RIGHT FORM
========================================================= */

.enquiry-right {
    padding: 32px 36px;
    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(0, 169, 239, 0.07),
            transparent 28%
        ),
        linear-gradient(180deg, #ffffff, #fbfdff);
}

.enquiry-title {
    margin-bottom: 18px;
}

.form-kicker {
    display: block;
    margin-bottom: 6px;
    color: var(--blue);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.8px;
}

.enquiry-title h2 {
    margin-bottom: 6px;
    color: var(--blue-dark);
    font-size: 25px;
    line-height: 1.2;
    letter-spacing: -0.40px;
}

.enquiry-title p {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.5;
}

.enquiry-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px;
}

.form-group {
    min-width: 0;
}

.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #315c78;
    font-size: 10px;
    font-weight: 800;
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    padding: 10px 12px;
    color: #173d56;
    background: #f8fcff;
    border: 1px solid #d4e6f0;
    border-radius: 9px;
    outline: none;
    font-size: 12px;
    transition:
        border-color 0.25s,
        box-shadow 0.25s,
        background 0.25s;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
    color: #93a5b1;
}

.enquiry-form input:hover,
.enquiry-form textarea:hover {
    border-color: #b4dced;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    background: white;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(8, 125, 204, 0.08);
}

.enquiry-form textarea {
    min-height: 65px;
    resize: vertical;
}

.enquiry-submit {
    grid-column: 1 / -1;
    width: 100%;
    padding: 11px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    background: linear-gradient(135deg, var(--blue), #00a8eb);
    border: none;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 9px 20px rgba(8, 125, 204, 0.20);
    transition: 0.3s;
}

.enquiry-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 13px 27px rgba(8, 125, 204, 0.29);
}

.submit-arrow {
    transition: transform 0.3s;
}

.enquiry-submit:hover .submit-arrow {
    transform: translateX(5px);
}

.enquiry-note {
    grid-column: 1 / -1;
    color: #8498a5;
    text-align: center;
    font-size: 9.5px;
    line-height: 1.4;
}

/* =========================================================
   FOOTER
========================================================= */

footer {
    margin-top: 75px;
    color: white;
    background: #073f68;
}

.footer-main {
    max-width: 1250px;
    margin: auto;
    padding: 52px 25px;
    display: grid;
    grid-template-columns: 1.65fr 0.8fr 1fr 1.55fr;
    gap: 40px;
}

.footer-logo {
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 800;
}

.footer-about {
    max-width: 430px;
    color: #c6dfef;
    font-size: 14px;
    line-height: 1.7;
}

footer h3 {
    margin-bottom: 18px;
    font-size: 16px;
}

footer ul {
    list-style: none;
}

footer li {
    margin-bottom: 11px;
    color: #c6dfef;
    font-size: 14px;
}

footer a {
    color: #c6dfef;
    text-decoration: none;
    transition: 0.25s;
}

footer a:hover {
    color: white;
}

.footer-contact-list {
    display: grid;
    gap: 13px;
}

.footer-contact-list li {
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.45;
}

.footer-contact-icon {
    width: 31px;
    height: 31px;
    flex: 0 0 31px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 9px;
    font-size: 14px;
}

.footer-contact-list small {
    margin-bottom: 2px;
    display: block;
    color: #7ed8ff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.footer-contact-list a {
    display: inline-block;
    overflow-wrap: anywhere;
}

.footer-address a {
    font-size: 13px;
}

.footer-bottom {
    padding: 18px;
    color: #c6dfef;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    font-size: 13px;
}

/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 2000;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25d366;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    animation: whatsappPulse 2s infinite;
    transition: 0.3s;
}

.whatsapp svg {
    width: 34px;
    height: 34px;
    display: block;
    fill: white;
}

.whatsapp:hover {
    transform: scale(1.10);
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.50);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* =========================================================
   RESPONSIVE 950PX
========================================================= */

@media (max-width: 950px) {
    .header-top {
        flex-wrap: wrap;
    }

    .search-box {
        order: 3;
        width: 100%;
        max-width: none;
    }

    .products {
        grid-template-columns: repeat(2, 1fr);
    }

    .enquiry-box {
        grid-template-columns:
            minmax(280px, 0.85fr)
            minmax(380px, 1.15fr);
    }

    .enquiry-left {
        padding: 20px;
    }

    .product-showcase {
        transform: scale(0.90);
    }

    .enquiry-right {
        padding: 28px 27px;
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================================
   RESPONSIVE 760PX
========================================================= */

@media (max-width: 760px) {
    .header-top {
        flex-direction: column;
    }

    .login-area {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .customer-dropdown {
        right: auto;
        left: 50%;
        transform: translate(-50%, -8px) scale(0.98);
        transform-origin: top center;
    }

    .customer-dropdown::before {
        right: 50%;
        margin-right: -7px;
    }

    .customer-menu.is-open .customer-dropdown {
        transform: translate(-50%, 0) scale(1);
    }

    .logo {
        min-width: 0;
        justify-content: center;
        text-align: left;
    }

    .logo-image {
        width: 54px;
        height: 52px;
        flex-basis: 54px;
    }

    .nav-inner {
        overflow-x: auto;
        justify-content: flex-start;
        white-space: nowrap;
    }

    .hero {
        margin: 20px 15px;
        padding: 40px 25px;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero-icon {
        display: none;
    }

    .products {
        grid-template-columns: 1fr;
    }

    .enquiry-section {
        margin: 50px auto;
        padding: 0 14px;
    }

    .enquiry-box {
        grid-template-columns: 1fr;
        border-radius: 21px;
    }

    .enquiry-left {
        min-height: 400px;
        padding: 15px;
    }

    .product-showcase {
        height: 365px;
        transform: scale(0.90);
    }

    .showcase-direction {
        top: auto;
        right: 50%;
        bottom: -6px;
        width: 75px;
        transform: translateX(50%) rotate(90deg);
    }

    .enquiry-right {
        padding: 28px 24px;
    }

    .footer-main {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   RESPONSIVE 560PX
========================================================= */

@media (max-width: 560px) {
    .header-top {
        padding: 13px 16px;
        gap: 15px;
    }

    .logo {
        gap: 9px;
    }

    .logo-image {
        width: 48px;
        height: 47px;
        flex-basis: 48px;
    }

    .logo-main {
        font-size: 21px;
    }

    .logo-sub {
        font-size: 12px;
        letter-spacing: 4px;
    }

    .customer-menu-button {
        min-width: 170px;
    }

    .customer-dropdown {
        width: min(285px, calc(100vw - 30px));
    }

    .home-flash {
        margin: 10px 15px 0;
    }

    .hero h1 {
        font-size: 30px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .enquiry-left {
        min-height: 360px;
    }

    .product-showcase {
        height: 350px;
        transform: scale(0.82);
    }

    .enquiry-form {
        grid-template-columns: 1fr;
    }

    .form-group.full,
    .enquiry-submit,
    .enquiry-note {
        grid-column: 1;
    }

    .enquiry-title h2 {
        font-size: 23px;
    }

    .whatsapp {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }

    .whatsapp svg {
        width: 31px;
        height: 31px;
    }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
