:root {
    --navy: #0B1F3A;
    --teal: #20B2AA;
    --white: #ffffff;
    --light: #F5F7FA;
    --dark: #071527;
    --gray: #64748b;
    --gold: #D4A017;
    --shadow: 0 25px 80px rgba(11, 31, 58, 0.16);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--white);
    color: var(--dark);
    overflow-x: hidden;
}

html[dir="ltr"] body {
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

.page-bg {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(32, 178, 170, 0.16), transparent 35%),
        radial-gradient(circle at bottom left, rgba(11, 31, 58, 0.10), transparent 35%);
    z-index: -1;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(11, 31, 58, 0.08);
}

.nav-content {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-box img {
    height: 62px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    font-weight: 700;
    color: var(--navy);
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    background: var(--teal);
    bottom: -8px;
    right: 0;
    transition: 0.3s;
}

html[dir="ltr"] .nav-links a::after {
    right: auto;
    left: 0;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lang-btn,
.menu-btn {
    border: none;
    background: var(--navy);
    color: white;
    padding: 10px 14px;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 800;
}

.menu-btn {
    display: none;
}

.quote-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: white;
    border-radius: 30px;
    font-weight: 800;
    box-shadow: var(--shadow);
}

/* Hero */
.hero {
    min-height: calc(100vh - 86px);
    display: flex;
    align-items: center;
    padding: 70px 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 50px;
}

.hero-badge {
    display: inline-flex;
    padding: 10px 18px;
    background: rgba(32, 178, 170, 0.12);
    color: var(--teal);
    border: 1px solid rgba(32, 178, 170, 0.25);
    border-radius: 30px;
    font-weight: 800;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(38px, 6vw, 76px);
    line-height: 1.18;
    color: var(--navy);
    margin-bottom: 24px;
}

.hero h1 strong {
    background: linear-gradient(135deg, var(--navy), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 19px;
    line-height: 2;
    color: var(--gray);
    max-width: 720px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 34px;
    flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
    padding: 15px 28px;
    border-radius: 34px;
    font-weight: 900;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.primary-btn {
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: white;
    box-shadow: var(--shadow);
}

.secondary-btn {
    border: 2px solid var(--navy);
    color: var(--navy);
}

.primary-btn:hover,
.secondary-btn:hover {
    transform: translateY(-5px);
}

.hero-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glass-card {
    background: transparent;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.main-logo-card {
    width: 440px;
    max-width: 100%;
    padding: 0;
    animation: float 5s ease-in-out infinite;
}

.main-logo-card img {
    width: 100%;
    display: block;
}

.floating-card {
    position: absolute;
    background: white;
    color: var(--navy);
    padding: 18px 24px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    font-weight: 900;
    animation: float 4s ease-in-out infinite;
}

.card-one {
    top: 55px;
    left: 20px;
}

.card-two {
    bottom: 70px;
    right: 20px;
    animation-delay: 1s;
}

/* Features */
.features {
    padding: 90px 0;
    background: var(--light);
}

.section-head {
    text-align: center;
    margin-bottom: 45px;
}

.section-head span,
.service-box span {
    color: var(--teal);
    font-weight: 900;
}

.section-head h2,
.service-box h2 {
    color: var(--navy);
    font-size: clamp(30px, 4vw, 48px);
    margin-top: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: white;
    padding: 34px 24px;
    border-radius: 26px;
    box-shadow: 0 18px 50px rgba(11, 31, 58, 0.08);
    transition: 0.3s;
    border: 1px solid rgba(11, 31, 58, 0.06);
}

.feature-card:hover {
    transform: translateY(-12px);
}

.icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(32, 178, 170, 0.12);
    display: grid;
    place-items: center;
    font-size: 28px;
    margin-bottom: 18px;
}

.feature-card h3 {
    color: var(--navy);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray);
    line-height: 1.8;
}

/* Service Preview */
.services-preview {
    padding: 90px 0;
}

.service-box {
    background: linear-gradient(135deg, var(--navy), #103a63);
    color: white;
    border-radius: 34px;
    padding: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    box-shadow: var(--shadow);
}

.service-box h2 {
    color: white;
}

.service-box p {
    color: rgba(255,255,255,0.78);
    line-height: 2;
    max-width: 750px;
    margin-top: 15px;
}

/* Inner Page Hero */
.page-hero {
    padding: 95px 0 70px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(11,31,58,0.95), rgba(32,178,170,0.80)),
        radial-gradient(circle at top, rgba(255,255,255,0.2), transparent 40%);
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 60px solid rgba(255,255,255,0.06);
    top: -160px;
    right: -120px;
}

.page-hero::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    bottom: -130px;
    left: 8%;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero span {
    display: inline-flex;
    margin-bottom: 16px;
    color: #d8fffc;
    font-weight: 900;
}

.page-hero h1 {
    font-size: clamp(36px, 5vw, 62px);
    margin-bottom: 16px;
}

.page-hero p {
    max-width: 760px;
    margin: auto;
    color: rgba(255,255,255,0.82);
    line-height: 2;
    font-size: 18px;
}

/* Categories & Products - Unified Premium Corporate Style */
.categories-section,
.products-section {
    padding: 95px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
}

.categories-grid,
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* Same base style for category and product cards */
.category-card,
.product-card {
    position: relative;
    min-height: 340px;
    padding: 34px;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(11, 31, 58, 0.10);
    box-shadow: 0 20px 55px rgba(11, 31, 58, 0.08);
    transition: 0.35s ease;
}

.category-card::before,
.product-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 31, 58, 0.96), rgba(32, 178, 170, 0.88));
    opacity: 0;
    transition: 0.35s ease;
    z-index: 0;
}

.category-card::after,
.product-card::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    border: 28px solid rgba(32, 178, 170, 0.12);
    border-radius: 50%;
    top: -70px;
    left: -70px;
    transition: 0.35s ease;
    z-index: 1;
}

html[dir="ltr"] .category-card::after,
html[dir="ltr"] .product-card::after {
    left: auto;
    right: -70px;
}

.category-card:hover,
.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 32px 90px rgba(11, 31, 58, 0.22);
    border-color: transparent;
}

.category-card:hover::before,
.product-card:hover::before {
    opacity: 1;
}

.category-card:hover::after,
.product-card:hover::after {
    border-color: rgba(255, 255, 255, 0.12);
    transform: scale(1.3);
}

.category-card > *,
.product-card > * {
    position: relative;
    z-index: 2;
}

/* Category header */
.category-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 36px;
}

.category-number {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(32, 178, 170, 0.12);
    color: var(--teal);
    display: grid;
    place-items: center;
    font-weight: 900;
    font-size: 15px;
    transition: 0.35s ease;
}

.category-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(
        90deg,
        rgba(32, 178, 170, 0.65),
        rgba(11, 31, 58, 0.08)
    );
}

.category-icon,
.product-image span {
    width: fit-content;
    min-width: 86px;
    height: 42px;
    padding: 0 18px;
    border-radius: 30px;
    background: rgba(11, 31, 58, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.4px;
    margin-bottom: 24px;
    transition: 0.35s ease;
}

/* Category text */
.category-card h3,
.product-content h3 {
    color: var(--navy);
    font-size: 27px;
    font-weight: 900;
    margin-bottom: 14px;
    transition: 0.35s ease;
}

.category-card p,
.product-content p {
    color: var(--gray);
    line-height: 2;
    font-size: 16px;
    margin-bottom: 28px;
    transition: 0.35s ease;
}

.category-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.category-footer span {
    color: var(--teal);
    font-weight: 900;
    transition: 0.35s ease;
}

.category-footer b {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy);
    color: white;
    display: grid;
    place-items: center;
    font-size: 20px;
    transition: 0.35s ease;
}

/* Product card special reset */
.product-card {
    padding: 0;
}

.product-image {
    height: auto;
    min-height: 105px;
    padding: 34px 28px 0;
    background: transparent;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: 2px;
}

.product-image::after {
    display: none;
}

.product-content {
    padding: 18px 28px 30px;
}

.product-tag {
    width: fit-content;
    padding: 7px 14px;
    border-radius: 30px;
    background: rgba(32, 178, 170, 0.12);
    color: var(--teal);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 14px;
    transition: 0.35s ease;
}

.product-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.product-actions a {
    padding: 11px 18px;
    border-radius: 24px;
    font-weight: 800;
    transition: 0.35s ease;
}

.product-actions a:first-child {
    background: var(--navy);
    color: white;
}

.product-actions a:last-child {
    background: rgba(32, 178, 170, 0.12);
    color: var(--teal);
}

/* Hover colors */
.category-card:hover .category-number,
.product-card:hover .category-number {
    background: rgba(255, 255, 255, 0.18);
    color: white;
}

.category-card:hover .category-icon,
.product-card:hover .product-image span,
.product-card:hover .product-tag {
    background: rgba(255, 255, 255, 0.16);
    color: white;
}

.category-card:hover h3,
.category-card:hover p,
.category-card:hover .category-footer span,
.product-card:hover .product-content h3,
.product-card:hover .product-content p {
    color: white;
}

.category-card:hover .category-footer b {
    background: white;
    color: var(--navy);
    transform: translateX(-6px);
}

html[dir="ltr"] .category-card:hover .category-footer b {
    transform: translateX(6px);
}

.product-card:hover .product-actions a:first-child {
    background: white;
    color: var(--navy);
}

.product-card:hover .product-actions a:last-child {
    background: rgba(255, 255, 255, 0.16);
    color: white;
}

/* Category Details */
.category-info-section {
    padding: 70px 0 20px;
    background: #ffffff;
}

.category-info-box {
    background:
        linear-gradient(135deg, rgba(11, 31, 58, 0.96), rgba(32, 178, 170, 0.86));
    color: white;
    border-radius: 34px;
    padding: 42px;
    display: grid;
    grid-template-columns: 1.5fr 0.7fr;
    gap: 30px;
    align-items: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.category-info-box::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    border: 45px solid rgba(255, 255, 255, 0.08);
    top: -120px;
    left: -80px;
}

html[dir="ltr"] .category-info-box::before {
    left: auto;
    right: -80px;
}

.category-info-box > * {
    position: relative;
    z-index: 2;
}

.category-info-box span {
    color: #d8fffc;
    font-weight: 900;
}

.category-info-box h2 {
    font-size: clamp(26px, 4vw, 42px);
    margin: 12px 0;
}

.category-info-box p {
    color: rgba(255,255,255,0.80);
    line-height: 2;
}

.category-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.category-stats div {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 24px;
    padding: 24px;
    text-align: center;
}

.category-stats strong {
    display: block;
    font-size: 34px;
    color: white;
    margin-bottom: 8px;
}

.category-stats span {
    color: rgba(255,255,255,0.76);
}

/* Products */
.products-section {
    padding: 90px 0;
    background: var(--light);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.product-card {
    background: white;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(11,31,58,0.08);
    box-shadow: 0 20px 60px rgba(11,31,58,0.08);
    transition: 0.35s ease;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 28px 85px rgba(11,31,58,0.16);
}

.product-image {
    height: 230px;
    background:
        linear-gradient(135deg, rgba(11,31,58,0.95), rgba(32,178,170,0.82)),
        radial-gradient(circle at top right, rgba(255,255,255,0.22), transparent 40%);
    display: grid;
    place-items: center;
    color: white;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.product-image::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 26px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    bottom: -80px;
    right: -70px;
}

html[dir="ltr"] .product-image::after {
    right: auto;
    left: -70px;
}

.product-content {
    padding: 28px;
}

.product-tag {
    width: fit-content;
    padding: 7px 14px;
    border-radius: 30px;
    background: rgba(32,178,170,0.12);
    color: var(--teal);
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 14px;
}

.product-content h3 {
    color: var(--navy);
    font-size: 25px;
    margin-bottom: 10px;
}

.product-content p {
    color: var(--gray);
    line-height: 1.9;
    margin-bottom: 22px;
}

.product-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.product-actions a {
    padding: 11px 18px;
    border-radius: 24px;
    font-weight: 800;
}

.product-actions a:first-child {
    background: var(--navy);
    color: white;
}

.product-actions a:last-child {
    background: rgba(32,178,170,0.12);
    color: var(--teal);
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding-top: 65px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    width: 210px;
    background: white;
    border-radius: 18px;
    padding: 10px;
    margin-bottom: 18px;
}

.footer p {
    color: rgba(255,255,255,0.72);
    line-height: 1.9;
}

.footer h3 {
    margin-bottom: 18px;
    color: var(--teal);
}

.footer a {
    display: block;
    color: rgba(255,255,255,0.74);
    margin-bottom: 12px;
}

.footer-bottom {
    margin-top: 45px;
    padding: 22px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.65);
}

/* Animation */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-18px);
    }
}

/* Responsive */
@media (max-width: 1000px) {
    .features-grid,
    .categories-grid,
    .products-grid {
        grid-template-columns: 1fr 1fr;
    }

    .category-info-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .menu-btn {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 86px;
        right: 4%;
        left: 4%;
        background: white;
        flex-direction: column;
        padding: 25px;
        border-radius: 24px;
        box-shadow: var(--shadow);
        display: none;
    }

    .nav-links.show {
        display: flex;
    }

    .quote-btn {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero p {
        margin: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .service-box {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        margin-inline: auto;
    }
}

@media (max-width: 560px) {
    .features-grid,
    .categories-grid,
    .products-grid,
    .category-stats {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 70px 0 55px;
    }

    .hero-visual {
        min-height: 390px;
    }

    .floating-card {
        display: none;
    }

    .category-info-box {
        padding: 28px;
    }
}

/* Product Details */
.product-detail-section {
    padding: 95px 0;
    background: #ffffff;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.product-detail-image {
    background: var(--light);
    border-radius: 34px;
    padding: 28px;
    box-shadow: 0 22px 70px rgba(11,31,58,0.10);
}

.product-image-placeholder {
    height: 460px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(11,31,58,0.96), rgba(32,178,170,0.84)),
        radial-gradient(circle at top right, rgba(255,255,255,0.25), transparent 45%);
    color: white;
    display: grid;
    place-items: center;
    font-size: clamp(52px, 7vw, 90px);
    font-weight: 900;
    letter-spacing: 4px;
    position: relative;
    overflow: hidden;
}

.product-image-placeholder::before {
    content: "";
    position: absolute;
    width: 270px;
    height: 270px;
    border: 40px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -120px;
    right: -100px;
}

html[dir="ltr"] .product-image-placeholder::before {
    right: auto;
    left: -100px;
}

.product-detail-content h2 {
    color: var(--navy);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.35;
    margin: 18px 0;
}

.product-detail-content p {
    color: var(--gray);
    line-height: 2;
    font-size: 18px;
}

.product-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 30px 0;
}

.product-specs div {
    background: var(--light);
    border-radius: 20px;
    padding: 20px;
    border: 1px solid rgba(11,31,58,0.06);
}

.product-specs strong {
    display: block;
    color: var(--navy);
    margin-bottom: 8px;
    font-weight: 900;
}

.product-specs span {
    color: var(--gray);
    line-height: 1.7;
}

.detail-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.whatsapp-btn {
    padding: 15px 28px;
    border-radius: 34px;
    font-weight: 900;
    background: rgba(32,178,170,0.12);
    color: var(--teal);
    border: 2px solid rgba(32,178,170,0.24);
    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform: translateY(-5px);
    background: var(--teal);
    color: white;
}

.related-section {
    padding: 90px 0;
    background: var(--light);
}

@media (max-width: 900px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .product-detail-content {
        text-align: center;
    }

    .product-specs {
        grid-template-columns: 1fr;
    }

    .detail-actions {
        justify-content: center;
    }
}

/* Services Page */
.services-page-section {
    padding: 95px 0;
    background: #ffffff;
}

.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.service-item {
    background: #ffffff;
    border: 1px solid rgba(11,31,58,0.09);
    border-radius: 28px;
    padding: 34px;
    min-height: 300px;
    box-shadow: 0 20px 55px rgba(11,31,58,0.08);
    position: relative;
    overflow: hidden;
    transition: 0.35s ease;
}

.service-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,31,58,0.96), rgba(32,178,170,0.86));
    opacity: 0;
    transition: 0.35s ease;
}

.service-item::after {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    border: 28px solid rgba(32,178,170,0.12);
    top: -80px;
    left: -70px;
    transition: 0.35s ease;
}

html[dir="ltr"] .service-item::after {
    left: auto;
    right: -70px;
}

.service-item > * {
    position: relative;
    z-index: 2;
}

.service-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 32px 90px rgba(11,31,58,0.20);
}

.service-item:hover::before {
    opacity: 1;
}

.service-item:hover::after {
    border-color: rgba(255,255,255,0.12);
    transform: scale(1.2);
}

.service-number {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(32,178,170,0.12);
    color: var(--teal);
    display: grid;
    place-items: center;
    font-weight: 900;
    margin-bottom: 26px;
    transition: 0.35s ease;
}

.service-item h3 {
    color: var(--navy);
    font-size: 25px;
    margin-bottom: 14px;
    transition: 0.35s ease;
}

.service-item p {
    color: var(--gray);
    line-height: 2;
    transition: 0.35s ease;
}

.service-item:hover .service-number {
    background: rgba(255,255,255,0.16);
    color: white;
}

.service-item:hover h3,
.service-item:hover p {
    color: white;
}

/* Process */
.process-section {
    padding: 90px 0;
    background: var(--light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.process-card {
    background: white;
    border-radius: 26px;
    padding: 30px;
    border: 1px solid rgba(11,31,58,0.08);
    box-shadow: 0 18px 50px rgba(11,31,58,0.07);
    transition: 0.35s ease;
}

.process-card:hover {
    transform: translateY(-10px);
}

.process-card span {
    color: var(--teal);
    font-weight: 900;
    display: inline-flex;
    margin-bottom: 16px;
}

.process-card h3 {
    color: var(--navy);
    margin-bottom: 12px;
}

.process-card p {
    color: var(--gray);
    line-height: 1.9;
}

@media (max-width: 1000px) {
    .services-page-grid,
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 560px) {
    .services-page-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
}

/* About Page */
.about-section {
    padding: 95px 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 55px;
    align-items: center;
}

.about-content span,
.why-box span {
    color: var(--teal);
    font-weight: 900;
}

.about-content h2,
.why-box h2 {
    color: var(--navy);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.35;
    margin: 14px 0 20px;
}

.about-content p {
    color: var(--gray);
    line-height: 2;
    font-size: 18px;
    margin-bottom: 18px;
}

.about-content .primary-btn {
    margin-top: 18px;
}

.about-visual {
    position: relative;
    min-height: 440px;
    display: grid;
    place-items: center;
}

.about-card-main {
    width: 390px;
    max-width: 100%;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: none;
    animation: float 5s ease-in-out infinite;
}

.about-card-main img {
    width: 100%;
    display: block;
}

.about-mini-card {
    position: absolute;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: white;
    padding: 18px 24px;
    border-radius: 22px;
    box-shadow: var(--shadow);
    min-width: 130px;
    text-align: center;
}

.about-mini-card strong {
    display: block;
    font-size: 20px;
}

.about-mini-card span {
    color: rgba(255,255,255,0.76);
    font-size: 14px;
}

.card-a {
    top: 40px;
    right: 0;
}

.card-b {
    bottom: 50px;
    left: 0;
}

html[dir="ltr"] .card-a {
    right: auto;
    left: 0;
}

html[dir="ltr"] .card-b {
    left: auto;
    right: 0;
}

/* Mission */
.mission-section {
    padding: 90px 0;
    background: var(--light);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.mission-card {
    background: white;
    border-radius: 30px;
    padding: 36px;
    border: 1px solid rgba(11,31,58,0.08);
    box-shadow: 0 20px 60px rgba(11,31,58,0.08);
    transition: 0.35s ease;
}

.mission-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 32px 90px rgba(11,31,58,0.16);
}

.mission-number {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: rgba(32,178,170,0.12);
    color: var(--teal);
    display: grid;
    place-items: center;
    font-weight: 900;
    margin-bottom: 24px;
}

.mission-card h3 {
    color: var(--navy);
    font-size: 25px;
    margin-bottom: 12px;
}

.mission-card p {
    color: var(--gray);
    line-height: 2;
}

/* Why */
.why-section {
    padding: 95px 0;
    background: #ffffff;
}

.why-box {
    background:
        linear-gradient(135deg, rgba(11,31,58,0.96), rgba(32,178,170,0.86));
    color: white;
    border-radius: 34px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    align-items: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.why-box::before {
    content: "";
    position: absolute;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    border: 45px solid rgba(255,255,255,0.08);
    top: -130px;
    right: -90px;
}

html[dir="ltr"] .why-box::before {
    right: auto;
    left: -90px;
}

.why-box > * {
    position: relative;
    z-index: 2;
}

.why-box h2 {
    color: white;
}

.why-list {
    display: grid;
    gap: 16px;
}

.why-list div {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 20px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.why-list b {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: white;
    color: var(--teal);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .about-grid,
    .why-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-content .primary-btn {
        margin-inline: auto;
    }

    .mission-grid {
        grid-template-columns: 1fr;
    }

    .about-mini-card {
        display: none;
    }
}

/* Contact Page */
.contact-section {
    padding: 95px 0;
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
    align-items: start;
}

.contact-info span {
    color: var(--teal);
    font-weight: 900;
}

.contact-info h2 {
    color: var(--navy);
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.35;
    margin: 14px 0 18px;
}

.contact-info p {
    color: var(--gray);
    line-height: 2;
    font-size: 18px;
    margin-bottom: 28px;
}

.contact-cards {
    display: grid;
    gap: 16px;
}

.contact-card {
    background: var(--light);
    border: 1px solid rgba(11,31,58,0.08);
    border-radius: 22px;
    padding: 18px;
    display: flex;
    gap: 14px;
    align-items: center;
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-6px);
    background: white;
    box-shadow: 0 18px 50px rgba(11,31,58,0.08);
}

.contact-card b {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: white;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.contact-card strong {
    display: block;
    color: var(--navy);
    margin-bottom: 4px;
}

.contact-card span {
    color: var(--gray);
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.social-links a {
    padding: 11px 16px;
    border-radius: 24px;
    background: rgba(32,178,170,0.12);
    color: var(--teal);
    font-weight: 900;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--teal);
    color: white;
    transform: translateY(-4px);
}

/* Contact Form */
.contact-form-box {
    background: white;
    border-radius: 34px;
    padding: 34px;
    border: 1px solid rgba(11,31,58,0.08);
    box-shadow: 0 25px 80px rgba(11,31,58,0.12);
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group {
    display: grid;
    gap: 9px;
}

.form-group label {
    color: var(--navy);
    font-weight: 900;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    border: 1px solid rgba(11,31,58,0.12);
    background: var(--light);
    border-radius: 18px;
    padding: 15px 16px;
    outline: none;
    font-family: inherit;
    color: var(--dark);
    transition: 0.3s;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    background: white;
    box-shadow: 0 0 0 4px rgba(32,178,170,0.10);
}

.submit-btn {
    border: none;
    padding: 16px 26px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: white;
    font-family: inherit;
    font-weight: 900;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: 0.3s;
}

.submit-btn:hover {
    transform: translateY(-5px);
}

.map-section {
    padding: 0 0 95px;
    background: #ffffff;
}

.map-box {
    min-height: 310px;
    border-radius: 34px;
    background:
        linear-gradient(135deg, rgba(11,31,58,0.96), rgba(32,178,170,0.84)),
        radial-gradient(circle at top right, rgba(255,255,255,0.2), transparent 45%);
    color: white;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 34px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.map-box::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border: 44px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    top: -130px;
    right: -100px;
}

html[dir="ltr"] .map-box::before {
    right: auto;
    left: -100px;
}

.map-box span {
    position: relative;
    z-index: 2;
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
}

.map-box p {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.80);
    line-height: 2;
    max-width: 650px;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-box {
        padding: 24px;
    }
}

/* Home Extra Sections */
.home-stats {
    padding: 30px 0 80px;
    background: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.stat-card {
    background: white;
    border: 1px solid rgba(11,31,58,0.08);
    box-shadow: 0 18px 50px rgba(11,31,58,0.07);
    border-radius: 24px;
    padding: 26px;
    text-align: center;
    transition: 0.35s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 80px rgba(11,31,58,0.14);
}

.stat-card strong {
    display: block;
    color: var(--navy);
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 8px;
}

.stat-card span {
    color: var(--gray);
    font-weight: 800;
}

.home-categories {
    padding: 95px 0;
    background: #ffffff;
}

.home-category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.home-category-card {
    background: white;
    border-radius: 28px;
    padding: 34px;
    border: 1px solid rgba(11,31,58,0.08);
    box-shadow: 0 20px 60px rgba(11,31,58,0.08);
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

.home-category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11,31,58,0.96), rgba(32,178,170,0.86));
    opacity: 0;
    transition: 0.35s ease;
}

.home-category-card > * {
    position: relative;
    z-index: 2;
}

.home-category-card:hover {
    transform: translateY(-12px);
}

.home-category-card:hover::before {
    opacity: 1;
}

.home-category-card span {
    color: var(--teal);
    font-weight: 900;
}

.home-category-card h3 {
    color: var(--navy);
    font-size: 25px;
    margin: 20px 0 12px;
    transition: 0.35s ease;
}

.home-category-card p {
    color: var(--gray);
    line-height: 1.9;
    transition: 0.35s ease;
}

.home-category-card:hover span,
.home-category-card:hover h3,
.home-category-card:hover p {
    color: white;
}

.center-btn {
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.home-services {
    padding: 95px 0;
    background: var(--light);
}

.home-services-box {
    background:
        linear-gradient(135deg, rgba(11,31,58,0.96), rgba(32,178,170,0.86));
    border-radius: 36px;
    padding: 48px;
    color: white;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
    align-items: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.home-services-box::before {
    content: "";
    position: absolute;
    width: 290px;
    height: 290px;
    border-radius: 50%;
    border: 45px solid rgba(255,255,255,0.08);
    top: -140px;
    left: -110px;
}

html[dir="ltr"] .home-services-box::before {
    left: auto;
    right: -110px;
}

.home-services-box > * {
    position: relative;
    z-index: 2;
}

.home-services-content span {
    color: #d8fffc;
    font-weight: 900;
}

.home-services-content h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.35;
    margin: 14px 0;
}

.home-services-content p {
    color: rgba(255,255,255,0.78);
    line-height: 2;
    margin-bottom: 28px;
}

.home-services-list {
    display: grid;
    gap: 16px;
}

.home-services-list div {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 22px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.home-services-list b {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: white;
    color: var(--teal);
    display: grid;
    place-items: center;
}

.home-services-list span {
    font-weight: 900;
}

.home-cta {
    padding: 95px 0;
    background: #ffffff;
}

.cta-box {
    background: white;
    border-radius: 36px;
    padding: 46px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    border: 1px solid rgba(11,31,58,0.08);
    box-shadow: 0 25px 80px rgba(11,31,58,0.12);
}

.cta-box span {
    color: var(--teal);
    font-weight: 900;
}

.cta-box h2 {
    color: var(--navy);
    font-size: clamp(30px, 4vw, 48px);
    margin: 12px 0;
}

.cta-box p {
    color: var(--gray);
    line-height: 1.9;
}

@media (max-width: 1000px) {
    .stats-grid,
    .home-category-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-services-box,
    .cta-box {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .stats-grid,
    .home-category-grid {
        grid-template-columns: 1fr;
    }

    .home-services-box,
    .cta-box {
        padding: 30px;
    }
}

/* Active Links */
.nav-links a.active-link,
.footer a.active-link,
.footer-links a.active-link {
    color: var(--teal) !important;
}

.nav-links a.active-link::after {
    width: 100%;
}

/* Footer Links Without Title */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: rgba(255,255,255,0.74);
    font-weight: 700;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--teal);
    transform: translateX(-4px);
}

html[dir="ltr"] .footer-links a:hover {
    transform: translateX(4px);
}

/* Footer Social SVG Icons */
.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(32, 178, 170, 0.12);
    color: var(--teal);
    display: grid;
    place-items: center;
    border: 1px solid rgba(32, 178, 170, 0.28);
    transition: 0.3s ease;
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-social a:hover {
    background: var(--teal);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(32, 178, 170, 0.25);
}

@media (max-width: 900px) {
    .footer-social {
        justify-content: center;
    }
}

/* Mobile Overflow Fix */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

* {
    max-width: 100%;
}

/* Fix mobile navbar */
@media (max-width: 900px) {
    .nav-content {
        height: 76px;
    }

    .logo-box img {
        height: 52px;
    }

    .nav-actions {
        gap: 8px;
    }

    .lang-btn,
    .menu-btn {
        padding: 9px 13px;
        border-radius: 14px;
    }

    .nav-links {
        top: 76px;
        width: auto;
        max-width: 92%;
        right: 4%;
        left: 4%;
    }
}

/* Fix sections on mobile */
@media (max-width: 560px) {
    .container {
        width: 90%;
    }

    .hero {
        padding: 45px 0;
        min-height: auto;
    }

    .hero-content,
    .about-grid,
    .why-box,
    .home-services-box,
    .cta-box,
    .contact-grid,
    .product-detail-grid,
    .category-info-box {
        width: 100%;
        grid-template-columns: 1fr !important;
    }

    .hero-text,
    .about-content,
    .product-detail-content,
    .contact-info {
        text-align: center;
    }

    .hero h1 {
        font-size: 34px;
    }

    .hero p,
    .about-content p,
    .contact-info p,
    .product-detail-content p {
        font-size: 16px;
    }

    .hero-buttons,
    .detail-actions,
    .social-links {
        justify-content: center;
    }

    .primary-btn,
    .secondary-btn,
    .whatsapp-btn,
    .submit-btn {
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }

    .center-btn {
        width: 100%;
        padding-inline: 0;
    }

    .center-btn .primary-btn {
        width: 100%;
    }

    .home-category-card,
    .category-card,
    .feature-card,
    .service-item,
    .mission-card,
    .product-card,
    .stat-card,
    .process-card {
        width: 100%;
    }

    .home-services-box,
    .cta-box,
    .why-box,
    .category-info-box,
    .contact-form-box {
        padding: 28px 22px;
        border-radius: 26px;
    }

    .floating-card,
    .about-mini-card {
        display: none !important;
    }

    .main-logo-card,
    .about-card-main {
        width: 300px;
        margin: auto;
    }

    .footer-content {
        width: 90%;
    }
}

/* Premium Marine-inspired Hero */
.lux-hero {
    position: relative;
    min-height: calc(100vh - 86px);
    padding: 80px 0 120px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(135deg, #061426 0%, #0b1f3a 48%, #0d8f91 100%);
    color: white;
}

.lux-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.lux-hero-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(32,178,170,0.32), transparent 28%),
        radial-gradient(circle at 80% 60%, rgba(255,255,255,0.16), transparent 26%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.16);
    animation: slowSpin 18s linear infinite;
}

.orb-one {
    width: 520px;
    height: 520px;
    top: -190px;
    right: -120px;
}

.orb-two {
    width: 340px;
    height: 340px;
    bottom: -150px;
    left: -80px;
    animation-duration: 24s;
}

.trade-line {
    position: absolute;
    height: 2px;
    width: 420px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
    transform: rotate(-28deg);
    animation: tradeMove 5s ease-in-out infinite;
}

.line-one {
    top: 28%;
    left: -90px;
}

.line-two {
    bottom: 26%;
    right: -80px;
    animation-delay: 1.5s;
}

.lux-hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.lux-kicker {
    display: inline-flex;
    letter-spacing: 4px;
    color: #9ff3ed;
    font-weight: 900;
    margin-bottom: 18px;
}

.lux-hero h1 {
    font-size: clamp(42px, 6vw, 82px);
    line-height: 1.08;
    margin-bottom: 26px;
}

.lux-hero h1 span {
    display: block;
    color: white;
}

.lux-hero h1 strong {
    display: block;
    color: #9ff3ed;
    font-weight: 900;
}

.lux-hero p {
    color: rgba(255,255,255,0.78);
    font-size: 19px;
    line-height: 2;
    max-width: 760px;
}

.lux-hero-actions {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 34px;
}

.hero-explore {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 900;
}

.hero-explore b,
.scroll-cue b {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.14);
    display: grid;
    place-items: center;
    animation: bounceDown 1.6s ease-in-out infinite;
}

.lux-hero-visual {
    position: relative;
    min-height: 520px;
    display: grid;
    place-items: center;
}

.hero-logo-ring {
    width: 430px;
    max-width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255,255,255,0.96);
    display: grid;
    place-items: center;
    padding: 56px;
    position: relative;
    box-shadow: 0 45px 120px rgba(0,0,0,0.28);
    animation: float 5s ease-in-out infinite;
}

.hero-logo-ring::before {
    content: "";
    position: absolute;
    inset: -22px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.28);
}

.hero-logo-ring::after {
    content: "";
    position: absolute;
    inset: 24px;
    border-radius: 50%;
    border: 2px dashed rgba(32,178,170,0.24);
    animation: slowSpin 16s linear infinite;
}

.hero-logo-ring img {
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-chip {
    position: absolute;
    background: linear-gradient(135deg, rgba(11,31,58,0.95), rgba(32,178,170,0.94));
    color: white;
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 26px;
    padding: 20px 28px;
    box-shadow: 0 22px 70px rgba(0,0,0,0.24);
    text-align: center;
}

.hero-chip strong {
    display: block;
    font-size: 24px;
    margin-bottom: 6px;
}

.hero-chip span {
    color: rgba(255,255,255,0.72);
}

.chip-a {
    top: 60px;
    right: 20px;
}

.chip-b {
    bottom: 60px;
    right: 0;
}

.chip-c {
    bottom: 120px;
    left: 0;
}

.scroll-cue {
    position: absolute;
    bottom: 28px;
    right: 50%;
    transform: translateX(50%);
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    font-weight: 900;
}

/* Mobile Fullscreen Menu */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(7,21,39,0.98), rgba(11,31,58,0.96)),
        radial-gradient(circle at top right, rgba(32,178,170,0.30), transparent 35%);
    z-index: 5000;
    display: none;
    place-items: center;
    text-align: center;
    color: white;
    padding: 30px;
}

.mobile-menu-overlay.show {
    display: grid;
}

.mobile-menu-close {
    position: absolute;
    top: 22px;
    left: 22px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: var(--teal);
    color: white;
    font-size: 30px;
    cursor: pointer;
}

html[dir="ltr"] .mobile-menu-close {
    left: auto;
    right: 22px;
}

.mobile-menu-logo img {
    width: 210px;
    background: white;
    padding: 12px;
    border-radius: 22px;
    margin-bottom: 34px;
}

.mobile-menu-links {
    display: grid;
    gap: 18px;
}

.mobile-menu-links a {
    font-size: 34px;
    font-weight: 900;
    color: white;
    transition: 0.3s;
}

.mobile-menu-links a:hover {
    color: var(--teal);
}

.mobile-menu-footer {
    margin-top: 40px;
    color: rgba(255,255,255,0.72);
}

.mobile-menu-footer span {
    color: var(--teal);
    font-weight: 900;
}

/* Animated Map */
.uxuan-map-section {
    padding: 100px 0;
    background: #ffffff;
}

.uxuan-map-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 48px;
    align-items: center;
}

.map-text span {
    color: var(--teal);
    font-weight: 900;
}

.map-text h2 {
    color: var(--navy);
    font-size: clamp(32px, 4vw, 54px);
    line-height: 1.35;
    margin: 14px 0;
}

.map-text p {
    color: var(--gray);
    line-height: 2;
    font-size: 18px;
    margin-bottom: 28px;
}

.world-map {
    height: 430px;
    border-radius: 38px;
    background:
        linear-gradient(135deg, rgba(11,31,58,0.95), rgba(32,178,170,0.78)),
        radial-gradient(circle at 30% 40%, rgba(255,255,255,0.18), transparent 22%);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.world-map::before {
    content: "";
    position: absolute;
    inset: 45px;
    background:
        radial-gradient(circle at 18% 45%, rgba(255,255,255,0.14) 0 16px, transparent 17px),
        radial-gradient(circle at 43% 34%, rgba(255,255,255,0.14) 0 20px, transparent 21px),
        radial-gradient(circle at 64% 55%, rgba(255,255,255,0.14) 0 18px, transparent 19px),
        radial-gradient(circle at 78% 32%, rgba(255,255,255,0.14) 0 14px, transparent 15px);
    opacity: 0.9;
}

.world-map svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.route {
    fill: none;
    stroke: rgba(255,255,255,0.72);
    stroke-width: 3;
    stroke-dasharray: 12;
    animation: dashRoute 4s linear infinite;
}

.route-2 {
    stroke: rgba(159,243,237,0.85);
    animation-duration: 5.5s;
}

.route-3 {
    stroke: rgba(255,255,255,0.42);
    animation-duration: 6s;
}

.map-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: white;
    border: 4px solid var(--teal);
    border-radius: 50%;
    z-index: 2;
    animation: pulseDot 2s ease-in-out infinite;
}

.dot-1 { top: 58%; left: 18%; }
.dot-2 { top: 36%; left: 44%; animation-delay: .5s; }
.dot-3 { top: 52%; left: 66%; animation-delay: 1s; }
.dot-4 { top: 32%; left: 78%; animation-delay: 1.5s; }

.map-label {
    position: absolute;
    right: 28px;
    bottom: 28px;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 22px;
    padding: 18px 22px;
    color: white;
    z-index: 3;
}

.map-label strong {
    display: block;
    font-size: 22px;
}

.map-label span {
    color: rgba(255,255,255,0.72);
}

/* New animations */
@keyframes slowSpin {
    to { transform: rotate(360deg); }
}

@keyframes tradeMove {
    0%, 100% { opacity: .15; transform: translateX(0) rotate(-28deg); }
    50% { opacity: .8; transform: translateX(80px) rotate(-28deg); }
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

@keyframes dashRoute {
    to { stroke-dashoffset: -120; }
}

@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.45); }
    50% { box-shadow: 0 0 0 18px rgba(255,255,255,0); }
}

/* Responsive */
@media (max-width: 900px) {
    .lux-hero {
        padding: 70px 0 110px;
    }

    .lux-hero-content,
    .uxuan-map-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .lux-hero-actions {
        justify-content: center;
    }

    .hero-logo-ring {
        width: 320px;
        padding: 38px;
    }

    .hero-chip {
        display: none;
    }

    .nav-links {
        display: none !important;
    }
}

@media (max-width: 560px) {
    .lux-hero h1 {
        font-size: 38px;
    }

    .lux-hero p {
        font-size: 16px;
    }

    .world-map {
        height: 330px;
        border-radius: 28px;
    }

    .mobile-menu-links a {
        font-size: 28px;
    }
}

/* Flying Planes Animation - About Page */
.flying-planes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.plane {
    position: absolute;
    color: rgba(32, 178, 170, 0.28);
    font-size: 34px;
    filter: drop-shadow(0 12px 18px rgba(11, 31, 58, 0.18));
    animation: flyPlane 16s linear infinite;
}

.plane-1 {
    top: 22%;
    right: -80px;
    animation-delay: 0s;
}

.plane-2 {
    top: 52%;
    right: -120px;
    font-size: 26px;
    animation-delay: 5s;
    animation-duration: 20s;
}

.plane-3 {
    top: 75%;
    right: -100px;
    font-size: 30px;
    animation-delay: 10s;
    animation-duration: 18s;
}

@keyframes flyPlane {
    0% {
        transform: translateX(0) translateY(0) rotate(-18deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform: translateX(-55vw) translateY(-45px) rotate(-18deg);
        opacity: 0.7;
    }

    100% {
        transform: translateX(-115vw) translateY(-90px) rotate(-18deg);
        opacity: 0;
    }
}

html[dir="ltr"] .plane-1,
html[dir="ltr"] .plane-2,
html[dir="ltr"] .plane-3 {
    right: auto;
    left: -100px;
}

html[dir="ltr"] .plane {
    animation-name: flyPlaneLtr;
}

@keyframes flyPlaneLtr {
    0% {
        transform: translateX(0) translateY(0) rotate(18deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform: translateX(55vw) translateY(-45px) rotate(18deg);
        opacity: 0.7;
    }

    100% {
        transform: translateX(115vw) translateY(-90px) rotate(18deg);
        opacity: 0;
    }
}

/* Falling Containers Animation - Services Page */
.falling-containers {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.container-box {
    position: absolute;
    top: -90px;
    width: 58px;
    height: 38px;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(11, 31, 58, 0.35), rgba(32, 178, 170, 0.35));
    border: 1px solid rgba(32, 178, 170, 0.26);
    box-shadow: 0 18px 35px rgba(11, 31, 58, 0.12);
    animation: fallContainer 11s linear infinite;
}

.container-box::before,
.container-box::after {
    content: "";
    position: absolute;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: rgba(255, 255, 255, 0.32);
}

.container-box::before {
    left: 18px;
}

.container-box::after {
    right: 18px;
}

.box-1 {
    left: 12%;
    animation-delay: 0s;
}

.box-2 {
    left: 32%;
    animation-delay: 3s;
    animation-duration: 13s;
}

.box-3 {
    left: 55%;
    animation-delay: 1.5s;
    animation-duration: 10s;
}

.box-4 {
    left: 74%;
    animation-delay: 5s;
    animation-duration: 14s;
}

.box-5 {
    left: 88%;
    animation-delay: 7s;
    animation-duration: 12s;
}

@keyframes fallContainer {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    70% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(120vh) rotate(220deg);
        opacity: 0;
    }
}

/* Soft Hover Animation for Categories & Products */
.category-card,
.product-card {
    animation: softCardEntrance 0.7s ease both;
}

.category-card:nth-child(2),
.product-card:nth-child(2) {
    animation-delay: 0.08s;
}

.category-card:nth-child(3),
.product-card:nth-child(3) {
    animation-delay: 0.16s;
}

.category-card:nth-child(4),
.product-card:nth-child(4) {
    animation-delay: 0.24s;
}

.category-card:nth-child(5),
.product-card:nth-child(5) {
    animation-delay: 0.32s;
}

.category-card:nth-child(6),
.product-card:nth-child(6) {
    animation-delay: 0.40s;
}

@keyframes softCardEntrance {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hero Social Icons */
.hero-social {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-social > span {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
}

.hero-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(159, 243, 237, 0.28);
    color: #9ff3ed;
    display: grid;
    place-items: center;
    transition: 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-social-icons a svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.hero-social-icons a:hover {
    background: var(--teal);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(32, 178, 170, 0.28);
}

@media (max-width: 900px) {
    .hero-social {
        justify-content: center;
        text-align: center;
    }

    .hero-social-icons {
        justify-content: center;
    }
}

@media (max-width: 560px) {
    .hero-social {
        margin-top: 24px;
        gap: 12px;
        flex-direction: column;
    }

    .hero-social-icons a {
        width: 40px;
        height: 40px;
    }

    .hero-social-icons a svg {
        width: 18px;
        height: 18px;
    }
}

.form-success,
.form-error {
    padding: 16px 18px;
    border-radius: 18px;
    margin-bottom: 18px;
    font-weight: 800;
}

.form-success {
    background: rgba(32, 178, 170, 0.12);
    color: var(--teal);
    border: 1px solid rgba(32, 178, 170, 0.25);
}

.form-error {
    background: rgba(220, 38, 38, 0.10);
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.20);
}

/* Contact Page Social Icons */
.contact-social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.contact-social-icons a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(32, 178, 170, 0.12);
    color: var(--teal);
    display: grid;
    place-items: center;
    border: 1px solid rgba(32, 178, 170, 0.28);
    transition: 0.3s ease;
}

.contact-social-icons a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.contact-social-icons a:hover {
    background: var(--teal);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 14px 35px rgba(32, 178, 170, 0.25);
}

@media (max-width: 900px) {
    .contact-social-icons {
        justify-content: center;
    }
}

/* ===== Improved Stats Cards ===== */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.stat-card {
    position: relative;
    min-height: 170px;
    padding: 32px 24px;
    border-radius: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #f6fbfb 100%);
    border: 1px solid rgba(32, 178, 170, 0.16);
    box-shadow: 0 18px 45px rgba(7, 28, 51, 0.08);
    overflow: hidden;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.35s ease;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: -55px;
    right: -55px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(32, 178, 170, 0.14);
}

.stat-card::after {
    content: "";
    position: absolute;
    bottom: -45px;
    left: -45px;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: rgba(7, 28, 51, 0.06);
}

.stat-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 28px 65px rgba(7, 28, 51, 0.14);
    border-color: rgba(32, 178, 170, 0.42);
}

.stat-card strong {
    position: relative;
    z-index: 2;
    font-size: 34px;
    font-weight: 900;
    color: #071c33;
    margin-bottom: 12px;
    line-height: 1.2;
}

.stat-card span {
    position: relative;
    z-index: 2;
    font-size: 16px;
    font-weight: 700;
    color: #66758a;
    line-height: 1.7;
}

.stat-card strong::after {
    content: "";
    display: block;
    width: 46px;
    height: 4px;
    background: linear-gradient(90deg, #20b2aa, #0b2b46);
    border-radius: 20px;
    margin: 14px auto 0;
}

@media (max-width: 1100px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        min-height: 145px;
        padding: 28px 20px;
        border-radius: 22px;
    }

    .stat-card strong {
        font-size: 28px;
    }

    .stat-card span {
        font-size: 15px;
    }
}

/* ===== Improved Feature Cards ===== */

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.feature-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfd 100%);
    border: 1px solid rgba(12, 43, 68, 0.08);
    border-radius: 26px;
    padding: 34px 26px;
    min-height: 250px;
    box-shadow: 0 18px 45px rgba(10, 36, 58, 0.08);
    overflow: hidden;
    text-align: right;
    transition: 0.35s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: -70px;
    left: -70px;
    width: 160px;
    height: 160px;
    background: rgba(32, 178, 170, 0.12);
    border-radius: 50%;
    transition: 0.35s ease;
}

.feature-card::after {
    content: "";
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 130px;
    height: 130px;
    background: rgba(8, 36, 60, 0.06);
    border-radius: 50%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 65px rgba(10, 36, 58, 0.15);
    border-color: rgba(32, 178, 170, 0.35);
}

.feature-card:hover::before {
    transform: scale(1.2);
    background: rgba(32, 178, 170, 0.18);
}

.feature-card .icon {
    position: relative;
    z-index: 2;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, #20b2aa, #0b2b46);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 24px;
    box-shadow: 0 14px 28px rgba(32, 178, 170, 0.26);
}

.feature-card h3 {
    position: relative;
    z-index: 2;
    color: #071c33;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 14px;
    line-height: 1.4;
}

.feature-card p {
    position: relative;
    z-index: 2;
    color: #66758a;
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.9;
    margin: 0;
}

@media (max-width: 1100px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .feature-card {
        min-height: auto;
        padding: 28px 22px;
        border-radius: 22px;
    }

    .feature-card h3 {
        font-size: 21px;
    }
}
.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px 10px 10px;
    background: #ffffff;
    color: #0d2b5c;
    text-decoration: none;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(13, 43, 92, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    direction: ltr;
}

.floating-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.18);
}

.whatsapp-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon svg {
    width: 48px;
    height: 48px;
    display: block;
}

.whatsapp-text {
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    color: #0d2b5c;
}

@media (max-width: 768px) {
    .floating-whatsapp {
        right: 14px;
        bottom: 14px;
        padding: 8px;
        border-radius: 50%;
    }

    .whatsapp-text {
        display: none;
    }

    .whatsapp-icon,
    .whatsapp-icon svg {
        width: 46px;
        height: 46px;
    }
}
/* ===== UXUAN Floating WhatsApp Button ===== */

.uxuan-whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 64px;
    height: 64px;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 16px 35px rgba(7, 28, 51, 0.28);
    transition: 0.3s ease;
    animation: uxuanWhatsappPulse 2.4s infinite;
}

.uxuan-whatsapp-float svg {
    width: 64px;
    height: 64px;
    display: block;
    border-radius: 50%;
}

.uxuan-whatsapp-float:hover {
    transform: translateY(-6px) scale(1.06);
    box-shadow: 0 22px 45px rgba(7, 28, 51, 0.35);
}

@keyframes uxuanWhatsappPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(32, 178, 170, 0.45),
                    0 16px 35px rgba(7, 28, 51, 0.28);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(32, 178, 170, 0),
                    0 16px 35px rgba(7, 28, 51, 0.28);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(32, 178, 170, 0),
                    0 16px 35px rgba(7, 28, 51, 0.28);
    }
}

@media (max-width: 768px) {
    .uxuan-whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }

    .uxuan-whatsapp-float svg {
        width: 56px;
        height: 56px;
    }
}
.product-description-box {
    margin: 22px 0;
    padding: 24px;
    background: #f7fbfc;
    border: 1px solid rgba(7, 28, 51, 0.08);
    border-radius: 22px;
}

.product-description-box h3,
.product-features-box h3 {
    color: #071c33;
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 12px;
}

.product-description-box p {
    color: #66758a;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.9;
    margin: 0;
}

.product-features-box {
    margin-top: 24px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid rgba(32, 178, 170, 0.16);
    border-radius: 22px;
    box-shadow: 0 14px 35px rgba(7, 28, 51, 0.06);
}

.product-features-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features-box li {
    position: relative;
    padding: 12px 42px 12px 14px;
    margin-bottom: 10px;
    background: #f7fbfc;
    border-radius: 16px;
    color: #66758a;
    font-weight: 700;
    line-height: 1.7;
}

.product-features-box li::before {
    content: "✓";
    position: absolute;
    right: 14px;
    top: 12px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b2b46, #20b2aa);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 900;
}

/* ===== Search Page & Suggestions ===== */

.search-page-section {
    padding: 80px 0;
}

.search-page-form {
    max-width: 820px;
    margin: 0 auto 50px;
}

.search-input-wrap {
    position: relative;
    display: flex;
    gap: 12px;
    background: #fff;
    padding: 12px;
    border-radius: 999px;
    border: 1px solid rgba(7, 28, 51, 0.1);
    box-shadow: 0 18px 45px rgba(7, 28, 51, 0.08);
}

.search-input-wrap input {
    flex: 1;
    border: none;
    outline: none;
    padding: 16px 22px;
    font-size: 17px;
    font-weight: 700;
    color: #071c33;
    background: transparent;
}

.search-input-wrap button {
    border: none;
    outline: none;
    padding: 14px 32px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0b2b46, #20b2aa);
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.3s ease;
}

.search-input-wrap button:hover {
    transform: translateY(-3px);
}

.search-suggestions-box {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 22px 55px rgba(7, 28, 51, 0.16);
    border: 1px solid rgba(7, 28, 51, 0.08);
    overflow: hidden;
    z-index: 9999;
    display: none;
}

.search-suggestion-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 20px;
    text-decoration: none;
    border-bottom: 1px solid rgba(7, 28, 51, 0.06);
    transition: 0.25s ease;
}

.search-suggestion-item:hover {
    background: #f7fbfc;
}

.suggestion-info strong {
    display: block;
    color: #071c33;
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 4px;
}

.suggestion-info span {
    color: #66758a;
    font-size: 13px;
    font-weight: 700;
}

.suggestion-badge {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(32, 178, 170, 0.12);
    color: #0b2b46;
    font-size: 12px;
    font-weight: 900;
}

.search-result-title {
    text-align: center;
    margin-bottom: 45px;
}

.search-result-title h2 {
    color: #071c33;
    font-size: 30px;
    font-weight: 900;
}

.search-result-title strong {
    color: #20b2aa;
}

.search-head {
    margin-top: 60px;
}

.search-grid {
    margin-bottom: 50px;
}

.product-search-code {
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 12px;
    background: rgba(32, 178, 170, 0.1);
    color: #0b2b46;
    border-radius: 999px;
    font-weight: 900;
}

.empty-search-box {
    text-align: center;
    max-width: 600px;
    margin: 50px auto 0;
    padding: 45px 30px;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(7, 28, 51, 0.08);
}

.empty-search-box h3 {
    color: #071c33;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 12px;
}

.empty-search-box p {
    color: #66758a;
    font-weight: 700;
}

@media (max-width: 650px) {
    .search-input-wrap {
        border-radius: 24px;
        flex-direction: column;
    }

    .search-input-wrap button {
        width: 100%;
    }
}

.mobile-search-btn {
    width: auto;
    height: auto;
    padding: 0;
    border-radius: 0;
    background: transparent !important;
    color: #071c33;
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: none !important;
    transition: 0.3s ease;
}

.mobile-search-btn svg {
    width: 33px;
    height: 33px;
    fill: currentColor;
}

.mobile-search-btn:hover {
    transform: scale(1.08);
    background: transparent !important;
    color: #0b2b46;
}

@media (max-width: 768px) {
    .mobile-search-btn {
        display: flex !important;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .nav-actions .quote-btn {
        display: none;
    }
}

.category-sub-section {
    padding: 80px 0;
}

.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.subcategory-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 28px;
    border: 1px solid rgba(7, 28, 51, 0.08);
    box-shadow: 0 18px 45px rgba(7, 28, 51, 0.07);
}

.subcategory-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.subcategory-header span {
    display: inline-block;
    margin-bottom: 8px;
    color: #20b2aa;
    font-weight: 900;
    font-size: 13px;
}

.subcategory-header h3 {
    margin: 0;
    color: #071c33;
    font-size: 26px;
    font-weight: 900;
}

.subcategory-header a {
    color: #20b2aa;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.leaf-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.leaf-list a {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(32, 178, 170, 0.10);
    color: #071c33;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
}

.mini-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.mini-product {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 18px;
    background: #f7fbfc;
    color: #071c33;
    text-decoration: none;
    font-weight: 900;
}

.mini-product-img {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
    background: #eef2f6;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mini-product-img span {
    font-weight: 900;
    color: #20b2aa;
}

.mini-product strong {
    display: block;
    font-size: 14px;
    line-height: 1.5;
}

.mini-product small {
    display: block;
    margin-top: 4px;
    color: #66758a;
    font-size: 12px;
}

.no-mini-products {
    color: #66758a;
    font-weight: 700;
    margin: 0;
}

@media (max-width: 768px) {
    .subcategories-grid {
        grid-template-columns: 1fr;
    }

    .subcategory-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .mini-products {
        grid-template-columns: 1fr;
    }
}
.search-category-path {
    margin: 12px 0;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(32, 178, 170, 0.10);
    color: #071c33;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.6;
}