/* ================================
   1. Global Settings
================================ */

:root {
    --primary-blue: #0456c8;
    --dark-blue: #032b66;
    --deep-blue: #021c42;
    --gold: #d5aa35;
    --gold-dark: #b78b19;
    --white: #ffffff;
    --light-background: #f4f7fb;
    --text-dark: #172033;
    --text-gray: #657086;
    --border-color: #dde4ed;
    --shadow: 0 20px 50px rgba(1, 34, 80, 0.1);
    --transition: 0.3s ease;
}

/* ==================================
   Premium Website Preloader
================================== */

.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            #073b83 0%,
            #03275c 45%,
            #011637 100%
        );

    opacity: 1;
    visibility: visible;

    transition:
        opacity 0.8s ease,
        visibility 0.8s ease;
}

.site-preloader.hide-preloader {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    width: min(340px, 82%);
    text-align: center;
}

.preloader-logo {
    width: 210px;
    max-width: 75%;
    height: auto;

    opacity: 0;
    transform: translateY(20px) scale(0.94);

    animation:
        preloaderLogoReveal 1s ease forwards;
}

.preloader-gold-line {
    position: relative;
    overflow: hidden;

    width: 100%;
    height: 3px;

    margin: 30px auto 18px;

    background: rgba(255, 255, 255, 0.13);
    border-radius: 50px;
}

.preloader-gold-line span {
    position: absolute;
    top: 0;
    left: -45%;

    width: 45%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d5a630,
            #ffe7a2,
            #d5a630,
            transparent
        );

    border-radius: 50px;

    box-shadow:
        0 0 8px rgba(213, 166, 48, 0.8),
        0 0 18px rgba(255, 215, 112, 0.5);

    animation:
        preloaderGoldLine 1.15s ease-in-out infinite;
}

.preloader-content p {
    margin: 0;

    color: rgba(255, 255, 255, 0.8);

    font-size: 0.76rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;

    opacity: 0;

    animation:
        preloaderTextReveal 0.8s ease 0.45s forwards;
}

.preloader-loading body {
    overflow: hidden;
}


/* Preloader Animations */

@keyframes preloaderLogoReveal {

    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.94);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

@keyframes preloaderGoldLine {

    0% {
        left: -45%;
    }

    100% {
        left: 105%;
    }

}

@keyframes preloaderTextReveal {

    0% {
        opacity: 0;
        transform: translateY(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}


/* Smooth Website Reveal */

body.preloader-active {
    overflow: hidden;
}

body.website-ready {
    overflow-x: hidden;
}

body > header,
body > main,
body > footer,
body > .floating-whatsapp {
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

body.preloader-active > header,
body.preloader-active > main,
body.preloader-active > footer,
body.preloader-active > .floating-whatsapp {
    opacity: 0;
    transform: translateY(12px);
}

body.website-ready > header,
body.website-ready > main,
body.website-ready > footer,
body.website-ready > .floating-whatsapp {
    opacity: 1;
    transform: translateY(0);
}


/* Accessibility */

@media (prefers-reduced-motion: reduce) {

    .preloader-logo,
    .preloader-gold-line span,
    .preloader-content p {
        animation: none;
        opacity: 1;
        transform: none;
    }

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.7;
}

body.menu-open {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: none;
    cursor: pointer;
}

.container {
    width: min(1140px, calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.section-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary-blue);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.section-heading {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-heading h2,
.about-content h2,
.cta-content h2 {
    color: var(--dark-blue);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

.section-heading p {
    margin-top: 16px;
    color: var(--text-gray);
}

/* ==================================
   Smooth Scroll Reveal Animations
================================== */



.reveal-on-scroll.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}


.reveal-on-scroll {
    opacity: 0;
    transform: translateY(45px);
    transition:
        opacity 0.85s ease,
        transform 0.85s ease;
}

/* Reveal from Left */

.reveal-from-left {
    opacity: 0;
    transform: translateX(-55px);

    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}

.reveal-from-left.reveal-visible {
    opacity: 1;
    transform: translateX(0);
}


/* Reveal from Right */

.reveal-from-right {
    opacity: 0;
    transform: translateX(55px);

    transition:
        opacity 0.9s ease,
        transform 0.9s ease;
}

.reveal-from-right.reveal-visible {
    opacity: 1;
    transform: translateX(0);
}


/* Reveal with Scale */

.reveal-scale {
    opacity: 0;
    transform: scale(0.92);

    transition:
        opacity 0.85s ease,
        transform 0.85s ease;
}

.reveal-scale.reveal-visible {
    opacity: 1;
    transform: scale(1);
}


/* Staggered Animation Delay */

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}


/* Prevent Horizontal Scrolling */

html,
body {
    overflow-x: hidden;
}


/* Accessibility */

@media (prefers-reduced-motion: reduce) {

    .reveal-on-scroll,
    .reveal-from-left,
    .reveal-from-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
        transition: none;
    }

}

/* ==================================
   Premium Back-to-Top Button
================================== */

.back-to-top {
    position: fixed;
    right: 28px;
    bottom: 100px;
    z-index: 9990;

    width: 50px;
    height: 50px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    background:
        linear-gradient(
            145deg,
            var(--primary-blue),
            var(--dark-blue)
        );

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;

    box-shadow:
        0 12px 28px rgba(2, 28, 66, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);

    font-size: 1rem;
    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(18px) scale(0.88);

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease,
        transform 0.35s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    color: var(--dark-blue);
    background: var(--gold);

    transform: translateY(-5px) scale(1.05);

    box-shadow:
        0 16px 34px rgba(2, 28, 66, 0.32),
        0 0 20px rgba(213, 166, 48, 0.35);
}

.back-to-top:active {
    transform: translateY(-2px) scale(0.96);
}

.back-to-top i {
    transition: transform 0.3s ease;
}

.back-to-top:hover i {
    transform: translateY(-3px);
}

.back-to-top:focus-visible {
    outline: 3px solid rgba(213, 166, 48, 0.55);
    outline-offset: 4px;
}


/* Small gold ring animation */

.back-to-top::before {
    content: "";

    position: absolute;
    inset: -5px;

    border: 1px solid rgba(213, 166, 48, 0.5);
    border-radius: 50%;

    opacity: 0;
    transform: scale(0.85);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.back-to-top:hover::before {
    opacity: 1;
    transform: scale(1);
}

/* ==================================
   Animated Statistics Counters
================================== */

.counter {
    display: inline-block;
    min-width: 1ch;
    font-variant-numeric: tabular-nums;

    transition:
        color 0.3s ease,
        text-shadow 0.3s ease;
}

.stat-card.counter-active h3 {
    color: var(--primary-blue);

    text-shadow:
        0 0 18px rgba(4, 86, 200, 0.2);
}

.stat-card h3 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 12px;
    text-align: center;
}

.stat-card p {
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.5;
}

.stat-card::after {
    content: "";

    position: absolute;
    top: 20px;
    left: 50%;

    width: 80px;
    height: 80px;

    background:
        radial-gradient(
            circle,
            rgba(213, 166, 48, 0.18),
            transparent 70%
        );

    border-radius: 50%;

    opacity: 0;
    transform:
        translateX(-50%)
        scale(0.7);

    transition:
        opacity 0.5s ease,
        transform 0.5s ease;

    pointer-events: none;
}

.stat-card.counter-active::after {
    opacity: 1;

    transform:
        translateX(-50%)
        scale(1);
}



/* ================================
   2. Header and Navigation
================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(221, 228, 237, 0.7);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 10px 30px rgba(2, 28, 66, 0.1);
}

.navbar {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    color: var(--primary-blue); 
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-sub {
    margin-top: 5px;
    color: var(--gold-dark);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 4px;
}
.logo-image{
    height:65px;
    width:auto;
    display:block;
    transition:.3s;
}

.logo-image:hover{
    transform:scale(1.05);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu > a {
    position: relative;
    color: var(--text-dark);
    font-size: 0.92rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-menu > a:not(.nav-button)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: var(--transition);
}

.nav-menu > a:hover,
.nav-menu > a.active {
    color: var(--primary-blue);
}

.nav-menu > a:hover::after,
.nav-menu > a.active::after {
    width: 100%;
}

.nav-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    color: var(--white) !important;
    background: var(--primary-blue);
    border-radius: 8px;
}

.nav-button:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    color: var(--white);
    background: var(--primary-blue);
    border-radius: 8px;
    font-size: 1.2rem;
}

/* ================================
   3. Hero Section
================================ */

.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    padding-top: 84px;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(2, 20, 55, 0.96) 0%,
            rgba(2, 28, 66, 0.88) 30%,
            rgba(2, 28, 66, 0.48) 52%,
            rgba(2, 28, 66, 0.08) 72%,
            rgba(2, 28, 66, 0) 100%
        ),
        url("../images/hero/hero-banner.png") center/cover no-repeat;
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 75% 30%,
            rgba(255, 255, 255, 0.13),
            transparent 30%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 720px;
    padding: 100px 0px;
  
}
.hero-label {
    display: inline-block;
    margin-bottom: 22px;
    padding: 9px 16px;
    color: #ffe19a;
    background: rgba(213, 170, 53, 0.13);
    border: 1px solid rgba(213, 170, 53, 0.35);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 700px;
    color: var(--white);
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: 1.05;
    letter-spacing: -2px;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.45);

}

.hero h1 span {
    color: #e4bd54;
}

.hero-text > p {
    max-width: 570px;
    margin-top: 26px;
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.8;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 14px 26px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    color: var(--white);
    background: var(--primary-blue);
    box-shadow: 0 15px 35px rgba(4, 86, 200, 0.35);
}

.button-primary:hover {
    background: #176de0;
}

.button-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

.button-outline:hover {
    color: var(--dark-blue);
    background: var(--white);
    border-color: var(--white);
}

.button-gold {
    flex-shrink: 0;
    color: var(--deep-blue);
    background: var(--gold);
}

.button-gold:hover {
    background: #edc552;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 42px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.highlight-item i {
    color: var(--gold);
}

/* ================================
   Helagraa Foods Product Page
================================ */

/* ===========================
   HELAGRAA HERO
=========================== */

.helagraa-category-hero{
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: auto;

    background-image: url("../images/hero/helagraa-hero.png");
    background-size:cover;
    background-position:right center;
    background-repeat: no-repeat;
}

.helagraa-category-hero .hero-label {
    color: #e9ffd9;
    background: rgba(79, 174, 92, 0.18);
    border-color: rgba(159, 225, 151, 0.45);
}

/* ================================
   4. About Preview
================================ */

.about-preview {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    min-height: 500px;
}

.image-placeholder {
    height: 100%;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    color: var(--text-gray);
    background:
        linear-gradient(
            135deg,
            rgba(4, 86, 200, 0.12),
            rgba(213, 170, 53, 0.14)
        );
    border: 1px solid var(--border-color);
    border-radius: 22px;
}

.image-placeholder i {
    color: var(--primary-blue);
    font-size: 4rem;
}

.experience-box {
    position: absolute;
    right: -30px;
    bottom: 38px;
    min-width: 210px;
    padding: 24px;
    color: var(--white);
    background: var(--primary-blue);
    border: 7px solid var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.experience-box strong,
.experience-box span {
    display: block;
}

.experience-box strong {
    font-size: 1.4rem;
}

.experience-box span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
}

.about-content > p {
    margin-top: 18px;
    color: var(--text-gray);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 30px 0;
}

.about-features div {
    display: flex;
    align-items: center;
    gap: 11px;
    font-weight: 600;
}

.about-features i {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    background: rgba(4, 86, 200, 0.1);
    border-radius: 50%;
}

.about-photo {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.about-image::before {
    content: "";
    position: absolute;
    top: -18px;
    left: -18px;
    width: 120px;
    height: 120px;
    border-top: 5px solid var(--gold);
    border-left: 5px solid var(--gold);
    border-radius: 20px 0 0 0;
    z-index: -1;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--primary-blue);
    font-weight: 700;
}

.text-link i,
.brand-card a i {
    transition: var(--transition);
}

.text-link:hover i,
.brand-card a:hover i {
    transform: translateX(5px);
}

/* ================================
   Electronics Hero Section
================================ */

.electrical-category-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    padding: 160px 0 100px;
    overflow: hidden;
    color: #ffffff;

    background-image:
        linear-gradient(
            90deg,
            rgba(2, 20, 55, 0.98) 0%,
            rgba(2, 28, 66, 0.95) 28%,
            rgba(2, 28, 66, 0.74) 46%,
            rgba(2, 28, 66, 0.30) 64%,
            rgba(2, 28, 66, 0.02) 100%
        ),
        url("../images/products/electrical/electronics-hero.png");

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.electrical-category-hero .hero-label {
    color: #dff1ff;
    background: rgba(23, 109, 224, 0.18);
    border-color: rgba(144, 202, 249, 0.45);
}


/* ================================
   5. Brand Cards
================================ */

.brands-preview {
    background: var(--light-background);
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.brand-card {
    padding: 34px 28px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.brand-card:hover {
    transform: translateY(-10px);
    border-color: rgba(4, 86, 200, 0.3);
    box-shadow: var(--shadow);
}

.brand-icon {
    width: 64px;
    height: 64px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--white);
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--dark-blue)
    );
    border-radius: 15px;
    font-size: 1.5rem;
}

.brand-card h3 {
    margin-bottom: 12px;
    color: var(--dark-blue);
    font-size: 1.2rem;
}

.brand-card p {
    margin-bottom: 22px;
    color: var(--text-gray);
    font-size: 0.92rem;
}

.brand-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-size: 0.9rem;
    font-weight: 700;
}
.brand-logo-box {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    padding: 18px;
    background: #f7f9fc;
    border-radius: 14px;
}

.brand-logo {
    max-width: 100%;
    max-height: 85px;
    object-fit: contain;
    transition: var(--transition);
}

.brand-card:hover .brand-logo {
    transform: scale(1.06);
}

.brand-card:nth-child(1) {
    border-top: 4px solid var(--primary-blue);
}

.brand-card:nth-child(2) {
    border-top: 4px solid #1f77d0;
}

.brand-card:nth-child(3) {
    border-top: 4px solid #c49a2c;
}

.brand-card:nth-child(4) {
    border-top: 4px solid #3c9b58;
}
/* ================================
   6. Call to Action
================================ */
/* ================================
   Featured Products
================================ */

.featured-products {
    background: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    transition: var(--transition);
   
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(4, 86, 200, 0.25);
    box-shadow: var(--shadow);
}

.product-image-box {
    position: relative;
    height: 270px;
    overflow: hidden;
    background: var(--light-background);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.06);
}

.product-category {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 8px 13px;
    color: var(--white);
    background: rgba(2, 28, 66, 0.88);
    border-radius: 50px;
    font-size: 0.74rem;
    font-weight: 600;
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    color: var(--dark-blue);
    font-size: 1.17rem;
}

.product-content p {
    margin: 12px 0 20px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-size: 0.9rem;
    font-weight: 700;
}

.product-link i {
    transition: var(--transition);
}

.product-link:hover i {
    transform: translateX(5px);
}

.products-button-wrapper {
    margin-top: 45px;
    text-align: center;
}

.cta-section {
    padding: 80px 0;
    background:
        linear-gradient(
            120deg,
            rgba(2, 28, 66, 0.98),
            rgba(4, 86, 200, 0.9)
        );
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.cta-label {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.cta-content h2 {
    color: var(--white);
}

.cta-content p {
    max-width: 720px;
    margin-top: 13px;
    color: rgba(255, 255, 255, 0.75);
}

/* ================================
   7. Footer
================================ */

.footer {
    color: rgba(255, 255, 255, 0.75);
    background: var(--deep-blue);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: 50px;
    padding: 80px 0 60px;
}

.footer-logo-img {
    width: 180px;
    height: auto;
    object-fit: contain;
}

.footer-company > p {
    max-width: 360px;
    margin-top: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--deep-blue);
    background: var(--gold);
    transform: translateY(-3px);
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.footer-column h3 {
    margin-bottom: 11px;
    color: var(--white);
    font-size: 1.05rem;
}

.footer-column a {
    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.footer-contact i {
    margin-top: 6px;
    color: var(--gold);
}

.footer-bottom {
    padding: 22px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.87rem;
}

/* ================================
   8. Floating WhatsApp
================================ */

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 900;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: #25d366;
    border: 4px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
    font-size: 1.8rem;
    transition: var(--transition);
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.05);
}

.page-hero {
    padding: 180px 0 90px;
    color: var(--white);
    text-align: center;
    background:
        linear-gradient(
            135deg,
            rgba(2, 28, 66, 0.98),
            rgba(4, 86, 200, 0.9)
        );
}

.page-hero h1 {
    margin-top: 10px;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.15;
}

.page-hero p {
    max-width: 700px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.82);
}

.product-category-section {
    scroll-margin-top: 100px;
}

.product-category-section h2 {
    margin-bottom: 16px;
    color: var(--dark-blue);
    font-size: clamp(2rem, 4vw, 3rem);
}

.product-category-section p {
    max-width: 750px;
    color: var(--text-gray);
}

.alternate-section {
    background: var(--light-background);
}
/* ================================
   9. Responsive Design
================================ */

/* ================================
   Creative Products Main Page
================================ */

.products-main-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    padding: 160px 0 100px;
    overflow: hidden;
    color: var(--white);

    background-image:
        linear-gradient(
            90deg,
            rgba(2,20,55,.98) 0%,
            rgba(2,28,66,.94) 30%,
            rgba(2,28,66,.70) 52%,
            rgba(2,28,66,.25) 72%,
            rgba(2,28,66,.03) 100%
        ),
        url("../images/products/Products-hero.jpeg");

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.products-main-content {
    position: relative;
    z-index: 2;
}
.products-main-content h1 {
    max-width: 760px;
    color: var(--white);
    font-size: clamp(3rem, 7vw, 5.6rem);
    line-height: 1.05;
    letter-spacing: -2px;
}

.products-main-content h1 span {
    color: var(--gold);
}

.products-main-content > p {
    max-width: 650px;
    margin: 24px 0 34px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

.products-category-section {
    background: var(--light-background);
    scroll-margin-top: 90px;
}

.products-category-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(270px, auto)) auto;
    gap: 26px;
    align-items: stretch;
}
/* Featured Home Essentials card */

.products-category-featured {
    grid-column: 1 / span 7;
    grid-row: 1 / span 2;
}


/* Electrical card */

.products-category-electrical {
    grid-column: 8 / -1;
    grid-row: 1;
}


/* Clothing card */

.products-category-clothing {
    grid-column: 8 / -1;
    grid-row: 2;
}


/* Helagraa card */

.products-category-helagraa {
    grid-column: 1 / span 6;
    grid-row: 3;
}


/* Furniture card */

.products-category-furniture {
    grid-column: 7 / -1;
    grid-row: 3;
}

.products-category-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #dfe5ef;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(14, 42, 88, 0.07);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.products-category-card:hover {
    transform: translateY(-7px);
    border-color: rgba(23, 74, 170, 0.35);
    box-shadow: 0 22px 48px rgba(14, 42, 88, 0.14);
}

.products-category-content {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.products-category-content .category-browse-button {
    margin-top: auto;
}

.products-category-featured .products-category-image {
    min-height: 360px;
}

.products-category-featured .products-category-content {
    padding: 34px;
}

.products-category-featured .products-category-label {
    font-size: 0.82rem;
}

.products-category-featured h3 {
    font-size: clamp(1.8rem, 3vw, 2.7rem);
    line-height: 1.15;
}

.products-category-featured .products-category-content > p {
    max-width: 620px;
    font-size: 1rem;
    line-height: 1.75;
}

.products-category-icon {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 5;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    color: #ffffff;
    background: linear-gradient(
        135deg,
        #1746aa,
        #2867df
    );

    border: 3px solid #ffffff;
    border-radius: 14px;

    font-size: 1rem;

    box-shadow:
        0 10px 22px rgba(15, 55, 130, 0.25);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.products-category-card:hover .products-category-icon {
    transform: translateY(-3px) rotate(-4deg);

    box-shadow:
        0 14px 28px rgba(15, 55, 130, 0.32);
}


.products-category-electrical,
.products-category-clothing {
    display: grid;
    grid-template-columns: 42% 58%;
}

.products-category-electrical .products-category-image,
.products-category-clothing .products-category-image {
    height: 100%;
    min-height: 270px;
}

.products-category-electrical .products-category-content,
.products-category-clothing .products-category-content {
    padding: 26px;
    position: relative;
    overflow: visible;
}

.products-category-electrical .products-category-tags,
.products-category-clothing .products-category-tags {
    margin-bottom: 20px;
}

.products-category-helagraa,
.products-category-furniture {
    display: grid;
    grid-template-columns: 44% 56%;
}

.products-category-helagraa .products-category-image,
.products-category-furniture .products-category-image {
    height: 100%;
    min-height: 300px;
}

.products-category-helagraa .products-category-content,
.products-category-furniture .products-category-content {
    padding: 30px;
}

.products-category-featured .products-category-icon {
    top: 20px;
    left: 24px;
}

.products-category-featured .products-category-content {
    padding-top: 82px;
}

.products-category-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 22px;
    padding-top: 76px;
    transition: var(--transition);
}

.products-category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.products-category-image {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.products-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.55s ease;
}

.products-category-card:hover
.products-category-image img {
    transform: scale(1.07);
}

.products-category-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(2, 28, 66, 0.04),
            rgba(2, 28, 66, 0.62)
        );
}

.products-category-number {
    position: absolute;
    top: 22px;
    right: 24px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 2.1rem;
    font-weight: 800;
}

.products-category-content {
    position: relative;
    padding: 34px;
}

.products-category-icon {
    position: absolute;
    top: -34px;
    left: 34px;
    width: 68px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            var(--primary-blue),
            var(--dark-blue)
        );
    border: 5px solid var(--white);
    border-radius: 16px;
    box-shadow: 0 12px 25px rgba(2, 28, 66, 0.2);
    font-size: 1.5rem;
}

.products-category-label {
    display: inline-block;
    margin-top: 26px;
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.products-category-content h3 {
    margin-top: 8px;
    color: var(--dark-blue);
    font-size: 1.7rem;
}

.products-category-content > p {
    margin: 14px 0 20px;
    color: var(--text-gray);
}

.products-category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
}

.products-category-tags span {
    padding: 7px 11px;
    color: var(--primary-blue);
    background: rgba(4, 86, 200, 0.08);
    border-radius: 50px;
    font-size: 0.73rem;
    font-weight: 600;
}

.category-browse-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 12px 20px;
    color: var(--white);
    background: var(--primary-blue);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.category-browse-button:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.category-browse-button i {
    transition: var(--transition);
}

.category-browse-button:hover i {
    transform: translateX(5px);
}

.products-service-strip {
    padding: 55px 0;
    background: var(--white);
}

.products-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.products-service-grid > div {
    display: flex;
    align-items: center;
    gap: 15px;
}

.products-service-grid i {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--primary-blue);
    border-radius: 14px;
    font-size: 1.2rem;
}

.products-service-grid span,
.products-service-grid strong {
    display: block;
}

.products-service-grid strong {
    color: var(--dark-blue);
    font-size: 0.92rem;
}

.products-service-grid span {
    color: var(--text-gray);
    font-size: 0.78rem;
}
/* ================================
   Category Product Pages
================================ */

.category-hero {
    min-height: 620px;
    display: flex;
    align-items: center;
    padding: 160px 0 100px;
    color: var(--white);
}

.home-category-hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(2, 20, 55, 0.97) 0%,
            rgba(2, 28, 66, 0.90) 32%,
            rgba(2, 28, 66, 0.55) 53%,
            rgba(2, 28, 66, 0.16) 76%,
            rgba(2, 28, 66, 0.03) 100%
        ),
        url("../images/products/home-essentials/home-hero.png")
        center center / cover no-repeat;
}


.category-hero-content {
    position: relative;
    z-index: 2;
}

.category-hero-content > * {
    max-width: 680px;
}

.category-hero-content h1 {
    margin-top: 15px;
    color: #ffffff;
    font-size: clamp(3.2rem, 7vw, 5.8rem);
    line-height: 1.05;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
}

.category-hero-content > p {
    max-width: 600px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.8;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.category-introduction {
    background: var(--white);
}

.category-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.category-intro-grid h2 {
    color: var(--dark-blue);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.2;
}

.category-intro-grid p {
    color: var(--text-gray);
}

.category-intro-grid p + p {
    margin-top: 18px;
}

.category-products-section {
    background: var(--light-background);
    scroll-margin-top: 100px;
}

/* Helagraa Products Grid */
.helagraa-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.category-product-card {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    transition: var(--transition);
    width: 100%;
    height: auto;
}

.category-product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.category-product-image {
    height: 320px; /* Increase from 220-250px */
    overflow: hidden;
}

.category-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Change from cover */
    object-position: center bottom;
    background: #f8f8f8; /* Optional */
}

.category-product-card:hover .category-product-image img {
    transform: scale(1.05);
}   

.category-product-card:hover img {
    transform: scale(1.06);
    
}

.category-product-content {
    padding: 18px 20px; /* Reduce padding */
}
.category-product-content > span {
    color: var(--gold-dark);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.category-product-content h3 {
    margin: 8px 0;
}

.category-product-content p {
    margin-bottom: 12px;
    line-height: 1.5;
}

.category-product-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-size: 0.9rem;
    font-weight: 700;
}

.category-product-content a i {
    transition: var(--transition);
}

.category-product-content a:hover i {
    transform: translateX(5px);
}

.category-benefits {
    background: var(--white);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    padding: 30px 24px;
    background: var(--light-background);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-7px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.benefit-card i {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    background: var(--primary-blue);
    border-radius: 14px;
    font-size: 1.35rem;
}

.benefit-card h3 {
    color: var(--dark-blue);
    font-size: 1.05rem;
}

.benefit-card p {
    margin-top: 10px;
    color: var(--text-gray);
    font-size: 0.88rem;
}

/* ================================
   Clothing Product Page
================================ */

.clothing-category-hero{
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-image: url("../images/hero/clothing-hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.clothing-category-hero .hero-label {
    color: #ffe6a8;
    background: rgba(213, 170, 53, 0.16);
    border-color: rgba(213, 170, 53, 0.45);
}

/* ================================
   About Page
================================ */

.about-story-section {
    scroll-margin-top: 90px;
    background: var(--white);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-story-image {
    position: relative;
}

.about-story-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.about-year-badge {
    position: absolute;
    right: -25px;
    bottom: 35px;
    min-width: 170px;
    padding: 24px;
    color: var(--white);
    text-align: center;
    background: var(--primary-blue);
    border: 7px solid var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.about-year-badge strong,
.about-year-badge span {
    display: block;
}

.about-year-badge strong {
    color: var(--gold);
    font-size: 2rem;
}

.about-year-badge span {
    font-size: 0.85rem;
}

.about-story-content h2 {
    color: var(--dark-blue);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.2;
}

.about-story-content > p {
    margin-top: 18px;
    color: var(--text-gray);
}

.story-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 30px;
}

.story-highlights div {
    display: flex;
    align-items: center;
    gap: 11px;
    font-weight: 600;
}

.story-highlights i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--primary-blue);
    border-radius: 50%;
    font-size: 0.8rem;
}

.mission-vision-section {
    background: var(--light-background);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mission-vision-card {
    padding: 42px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: var(--transition);
}

.mission-vision-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.mission-vision-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            var(--primary-blue),
            var(--dark-blue)
        );
    border-radius: 17px;
    font-size: 1.6rem;
}

.mission-vision-card > span {
    color: var(--gold-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.mission-vision-card h3 {
    margin: 10px 0 14px;
    color: var(--dark-blue);
    font-size: 1.45rem;
}

.mission-vision-card p {
    color: var(--text-gray);
}

.values-section {
    background: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.value-card {
    padding: 32px 27px;
    background: var(--light-background);
    border: 1px solid var(--border-color);
    border-radius: 17px;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-7px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.value-card i {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    background: var(--primary-blue);
    border-radius: 15px;
    font-size: 1.35rem;
}

.value-card h3 {
    color: var(--dark-blue);
    font-size: 1.12rem;
}

.value-card p {
    margin-top: 10px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.timeline-section {
    background: var(--light-background);
}

.company-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.company-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 105px;
    width: 3px;
    background: rgba(4, 86, 200, 0.18);
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 55px;
    margin-bottom: 32px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-year {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 58px;
    color: var(--white);
    background: var(--primary-blue);
    border: 6px solid var(--light-background);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 800;
}

.timeline-content {
    padding: 26px 28px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 15px;
}

.timeline-content h3 {
    color: var(--dark-blue);
    font-size: 1.15rem;
}

.timeline-content p {
    margin-top: 8px;
    color: var(--text-gray);
}

.about-statistics-section {
    padding: 75px 0;
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            var(--deep-blue),
            var(--primary-blue)
        );
}

.about-statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.about-stat-card {
    text-align: center;
}

.about-stat-card i {
    display: block;
    margin-bottom: 15px;
    color: var(--gold);
    font-size: 2rem;
}

.about-stat-card strong {
    display: block;
    color: var(--white);
    font-size: 2.4rem;
}

.about-stat-card span {
    color: rgba(255, 255, 255, 0.78);
}

/* ================================
   Our Brands Page
================================ */

.about-brands-section {
    background: var(--white);
}

.about-brand-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}

.about-brand-card {
    padding: 28px 22px;
    text-align: center;
    background: var(--light-background);
    border: 1px solid var(--border-color);
    border-radius: 17px;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-brand-card:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.about-brand-card img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
}

.about-brand-card h3 {
    color: var(--dark-blue);
    font-size: 1.05rem;
}

.about-brand-card span {
    display: block;
    margin-top: 5px;
    color: var(--text-gray);
    font-size: 0.82rem;
}

/* Responsive */

@media (max-width: 1200px) {
    .about-brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .about-brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .about-brand-grid {
        grid-template-columns: 1fr;
    }
}


/* ================================
   Our Brands Hero Section
================================ */

.brands-page-hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    padding: 160px 0 100px;
    overflow: hidden;
    color: #ffffff;

    background-image:
        linear-gradient(
            90deg,
            rgba(2, 20, 55, 0.98) 0%,
            rgba(2, 28, 66, 0.94) 25%,
            rgba(2, 28, 66, 0.72) 42%,
            rgba(2, 28, 66, 0.28) 58%,
            rgba(2, 28, 66, 0.02) 78%
        ),
        url("../images/brands/brands-hero.png");

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}
.brands-page-hero-content {
    position: relative;
    z-index: 2;
}

.brands-page-hero-content > * {
    max-width: 610px;
}

.brands-page-hero-content h1 {
    margin-top: 20px;
    color: #ffffff;
    font-size: clamp(3.2rem, 6.5vw, 5.6rem);
    line-height: 1.04;
    letter-spacing: -2px;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.38);
}

.brands-page-hero-content h1 span {
    display: block;
    color: var(--gold);
}

.brands-page-hero-content > p {
    max-width: 560px;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.brands-page-hero .hero-buttons {
    margin-top: 34px;
}


.brands-introduction {
    background: var(--white);
    scroll-margin-top: 90px;
}

.brands-introduction-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.brands-introduction-grid h2 {
    color: var(--dark-blue);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.2;
}

.brands-introduction-grid p {
    color: var(--text-gray);
}

.brands-introduction-grid p + p {
    margin-top: 18px;
}

.brands-quick-navigation {
    padding: 42px 0;
    background: var(--light-background);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.brands-quick-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}
.brands-quick-grid a {
    padding: 22px 18px;
    text-align: center;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    transition: var(--transition);
}

.brands-quick-grid a:hover {
    transform: translateY(-6px);
    border-color: rgba(4, 86, 200, 0.28);
    box-shadow: var(--shadow);
}

.brands-quick-grid img {
    width: 100%;
    height: 75px;
    object-fit: contain;
}

.brands-quick-grid span {
    display: block;
    margin-top: 14px;
    color: var(--dark-blue);
    font-size: 0.88rem;
    font-weight: 600;
}

.brand-showcase-section {
    background: var(--white);
    scroll-margin-top: 90px;
}

.alternate-brand-showcase {
    background: var(--light-background);
}

.brand-showcase-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 75px;
    align-items: center;
}

.brand-showcase-reverse .brand-showcase-image {
    order: 2;
}

.brand-showcase-reverse .brand-showcase-content {
    order: 1;
}

.brand-showcase-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.brand-showcase-image img {
    width: 100%;
    height: 570px;
    object-fit: cover;
    transition: 0.6s ease;
}

.brand-showcase-image:hover img {
    transform: scale(1.04);
}

.brand-showcase-number {
    position: absolute;
    top: 24px;
    right: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
}

.brand-showcase-logo {
    width: 230px;
    min-height: 105px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    padding: 16px;
    background: var(--light-background);
    border: 1px solid var(--border-color);
    border-radius: 15px;
}

.alternate-brand-showcase .brand-showcase-logo {
    background: var(--white);
}

.brand-showcase-logo img {
    width: 100%;
    max-height: 75px;
    object-fit: contain;
}

.brand-showcase-content h2 {
    color: var(--dark-blue);
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.2;
}

.brand-showcase-content > p {
    margin-top: 18px;
    color: var(--text-gray);
}

.brand-product-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 13px 18px;
    margin: 28px 0 32px;
}

.brand-product-list span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 600;
}

.brand-product-list i {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--primary-blue);
    border-radius: 50%;
    font-size: 0.68rem;
}

.brand-collection-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 54px;
    padding: 14px 24px;
    color: var(--white);
    background: var(--primary-blue);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.brand-collection-button:hover {
    background: var(--dark-blue);
    transform: translateY(-3px);
}

.brand-collection-button i {
    transition: var(--transition);
}

.brand-collection-button:hover i {
    transform: translateX(5px);
}

.brand-promise-section {
    background: var(--white);
}

.brand-promise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.brand-promise-grid article {
    padding: 32px 25px;
    text-align: center;
    background: var(--light-background);
    border: 1px solid var(--border-color);
    border-radius: 17px;
    transition: var(--transition);
}

.brand-promise-grid article:hover {
    transform: translateY(-8px);
    background: var(--white);
    box-shadow: var(--shadow);
}

.brand-promise-grid i {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            var(--primary-blue),
            var(--dark-blue)
        );
    border-radius: 16px;
    font-size: 1.4rem;
}

.brand-promise-grid h3 {
    color: var(--dark-blue);
    font-size: 1.08rem;
}

.brand-promise-grid p {
    margin-top: 10px;
    color: var(--text-gray);
    font-size: 0.88rem;
}

.brands-statistics-section {
    padding: 75px 0;
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            var(--deep-blue),
            var(--primary-blue)
        );
}

.brands-statistics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.brands-statistics-grid strong {
    display: block;
    color: var(--gold);
    font-size: 2.5rem;
}

.brands-statistics-grid span {
    color: rgba(255, 255, 255, 0.82);
}

.brand-card.furniture {
    border-top: 4px solid #8b5e3c;
}

.brand-card.electronics {
    border-top: 4px solid #036374;
}
/* ================================
   Company Gallery Page
================================ */

.gallery-page-hero {
    min-height: 680px;
    display: flex;
    align-items: center;
    padding: 160px 0 100px;
    color: var(--white);

    background:
        linear-gradient(
            90deg,
            rgba(2, 20, 55, 0.97) 10%,
            rgba(2, 28, 66, 0.88) 20%,
            rgba(2, 28, 66, 0.35) 30%,
            rgba(2, 28, 66, 0.04) 40%
        ),
        url("../images/galary/gallery-hero.png")
        center center / cover no-repeat;
}

.gallery-page-hero-content {
    position: relative;
    z-index: 2;
}

.gallery-page-hero-content h1 {
    max-width: 790px;
    color: var(--white);
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: 1.05;
    letter-spacing: -2px;
}

.gallery-page-hero-content h1 span {
    display: block;
    color: var(--gold);
}

.gallery-page-hero-content > p {
    max-width: 650px;
    margin: 25px 0 34px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.8;
}

.gallery-introduction {
    background: var(--white);
}

.gallery-introduction-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.gallery-introduction-grid h2 {
    color: var(--dark-blue);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.2;
}

.gallery-introduction-grid p {
    color: var(--text-gray);
}

.gallery-introduction-grid p + p {
    margin-top: 18px;
}

.featured-memory-section {
    padding: 90px 0;
    background: var(--light-background);
}

.featured-memory-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 65px;
    align-items: center;
}

.featured-memory-image {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.featured-memory-image img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.featured-memory-year {
    position: absolute;
    top: 24px;
    right: 25px;
    padding: 11px 17px;
    color: var(--deep-blue);
    background: var(--gold);
    border-radius: 50px;
    font-weight: 800;
}

.featured-memory-content h2 {
    color: var(--dark-blue);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.2;
}

.featured-memory-content > p {
    margin-top: 18px;
    color: var(--text-gray);
}

.featured-memory-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 28px;
}

.featured-memory-details span {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--dark-blue);
    font-weight: 600;
}

.featured-memory-details i {
    color: var(--gold-dark);
}

.company-gallery-section {
    background: var(--white);
    scroll-margin-top: 90px;
}

.gallery-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
}

.gallery-filter {
    min-height: 44px;
    padding: 10px 19px;
    color: var(--text-dark);
    background: var(--light-background);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
}

.gallery-filter:hover,
.gallery-filter.active {
    color: var(--white);
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.company-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 20px;
}

.company-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: var(--light-background);
    transition: 0.4s ease;
}

.company-gallery-item.gallery-large {
    grid-column: span 2;
}

.company-gallery-item.gallery-tall {
    grid-row: span 2;
}

.company-gallery-item.hidden {
    display: none;
}

.company-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.company-gallery-item:hover img {
    transform: scale(1.08);
}

.company-gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: var(--white);
    background:
        linear-gradient(
            180deg,
            transparent 30%,
            rgba(2, 20, 55, 0.88) 100%
        );
    opacity: 0;
    transition: var(--transition);
}

.company-gallery-item:hover .company-gallery-overlay {
    opacity: 1;
}

.company-gallery-overlay > span {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.company-gallery-overlay h3 {
    margin-top: 6px;
    font-size: 1.15rem;
}

.gallery-view-button {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-blue);
    background: var(--white);
    border-radius: 50%;
    font-size: 1rem;
    transition: var(--transition);
}

.gallery-view-button:hover {
    color: var(--white);
    background: var(--primary-blue);
    transform: scale(1.08);
}

.gallery-quote-section {
    padding: 90px 0;
    color: var(--white);
    text-align: center;
    background:
        linear-gradient(
            135deg,
            var(--deep-blue),
            var(--primary-blue)
        );
}

.gallery-quote-content {
    max-width: 850px;
}

.gallery-quote-content > i {
    margin-bottom: 24px;
    color: var(--gold);
    font-size: 2.4rem;
}

.gallery-quote-content blockquote {
    color: var(--white);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 600;
    line-height: 1.5;
}

.gallery-quote-content span {
    display: block;
    margin-top: 22px;
    color: var(--gold);
    font-weight: 700;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: rgba(1, 12, 31, 0.94);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.gallery-lightbox.open {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox img {
    max-width: min(1100px, 92vw);
    max-height: 78vh;
    object-fit: contain;
    border-radius: 14px;
}

.gallery-lightbox-close {
    position: absolute;
    top: 25px;
    right: 28px;
    width: 48px;
    height: 48px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    font-size: 1.4rem;
}

.gallery-lightbox-caption {
    position: absolute;
    left: 50%;
    bottom: 25px;
    width: min(700px, calc(100% - 40px));
    color: var(--white);
    text-align: center;
    transform: translateX(-50%);
}

.gallery-lightbox-caption span {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gallery-lightbox-caption h3 {
    margin-top: 5px;
}

/* =========================
   CONTACT PAGE HERO
========================= */

.contact-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background-image: url("../images/contact/contact-hero.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.93) 32%,
        rgba(255, 255, 255, 0.45) 56%,
        rgba(255, 255, 255, 0.03) 100%
    );
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
}

.contact-hero-content > * {
    max-width: 590px;
}

.contact-hero-label {
    display: inline-block;
    margin-bottom: 20px;

    color: #2854c5;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-hero h1 {
    margin: 0 0 24px;

    color: #102f72;
    font-size: clamp(44px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.05;
}

.contact-hero h1 span {
    display: block;
    color: #2f5bd3;
}

.contact-hero p {
    margin: 0 0 34px;

    color: #5e6675;
    font-size: 18px;
    line-height: 1.8;
}

.contact-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.contact-primary-btn,
.contact-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 54px;
    padding: 0 28px;

    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.contact-primary-btn {
    color: #ffffff;
    background: #2d57c8;
    box-shadow: 0 12px 28px rgba(45, 87, 200, 0.24);
}

.contact-primary-btn:hover {
    transform: translateY(-3px);
    background: #183f9f;
    box-shadow: 0 16px 32px rgba(45, 87, 200, 0.32);
}

.contact-secondary-btn {
    color: #173b91;
    border: 1px solid rgba(23, 59, 145, 0.25);
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(8px);
}

.contact-secondary-btn:hover {
    transform: translateY(-3px);
    background: #ffffff;
}


/* Quick Contact Cards */

.contact-quick-section {
    position: relative;
    z-index: 5;
    margin-top: -55px;
    padding-bottom: 40px;
}

.contact-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-quick-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    min-height: 180px;
    padding: 27px 22px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(2, 28, 66, 0.1);
    transition: var(--transition);
}

.contact-quick-card:hover {
    transform: translateY(-8px);
    border-color: rgba(4, 86, 200, 0.25);
    box-shadow: var(--shadow);
}

.contact-quick-icon {
    flex-shrink: 0;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--primary-blue);
    border-radius: 14px;
    font-size: 1.25rem;
}

.contact-quick-icon.whatsapp-icon {
    background: #25d366;
}

.contact-quick-card span {
    color: var(--gold-dark);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-quick-card h3 {
    margin-top: 5px;
    color: var(--dark-blue);
    font-size: 0.95rem;
    overflow-wrap: anywhere;
}

.contact-quick-card p {
    margin-top: 8px;
    color: var(--text-gray);
    font-size: 0.8rem;
}

.contact-quick-card .card-arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: var(--primary-blue);
    transition: var(--transition);
}

.contact-quick-card:hover .card-arrow {
    transform: translateX(5px);
}


/* Main Contact Section */

.contact-main-section {
    background: var(--white);
    scroll-margin-top: 90px;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.88fr;
    gap: 45px;
    align-items: start;
}

.contact-form-wrapper {
    padding: 48px;
    background: var(--light-background);
    border: 1px solid var(--border-color);
    border-radius: 24px;
}

.contact-form-wrapper h2 {
    color: var(--dark-blue);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.2;
}

.contact-form-introduction {
    margin-top: 14px;
    color: var(--text-gray);
}

.contact-form {
    margin-top: 32px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-form-group {
    margin-bottom: 22px;
}

.contact-form-group label {
    display: block;
    margin-bottom: 9px;
    color: var(--dark-blue);
    font-size: 0.86rem;
    font-weight: 600;
}

.contact-form-group label span {
    color: #d92929;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    width: 100%;
    padding: 15px 16px;
    color: var(--text-dark);
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

.contact-form-group input,
.contact-form-group select {
    min-height: 52px;
}

.contact-form-group textarea {
    resize: vertical;
    min-height: 170px;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(4, 86, 200, 0.1);
}

.contact-consent {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin-bottom: 24px;
    color: var(--text-gray);
    font-size: 0.82rem;
    cursor: pointer;
}

.contact-consent input {
    width: 17px;
    height: 17px;
    margin-top: 2px;
    accent-color: var(--primary-blue);
}

.contact-submit-button {
    width: 100%;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 14px 25px;
    color: var(--white);
    background: var(--primary-blue);
    border-radius: 9px;
    font-family: inherit;
    font-size: 0.93rem;
    font-weight: 700;
    transition: var(--transition);
}

.contact-submit-button:hover {
    background: var(--dark-blue);
    transform: translateY(-3px);
}

.contact-submit-button .fa-arrow-right {
    transition: var(--transition);
}

.contact-submit-button:hover .fa-arrow-right {
    transform: translateX(5px);
}

.contact-form-status {
    min-height: 22px;
    margin-top: 13px;
    color: var(--primary-blue);
    font-size: 0.84rem;
    font-weight: 600;
    text-align: center;
}


/* Information Panel */

.contact-information-panel {
    overflow: hidden;
    color: var(--white);
    background:
        linear-gradient(
            145deg,
            var(--deep-blue),
            var(--primary-blue)
        );
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.contact-information-header {
    padding: 45px 40px 32px;
}

.contact-information-header .section-label {
    color: var(--gold);
}

.contact-information-header h2 {
    margin-top: 9px;
    color: var(--white);
    font-size: 2rem;
    line-height: 1.25;
}

.contact-information-header h2 small {
    display: block;
    color: var(--gold);
    font-size: 0.58em;
}

.contact-information-header p {
    margin-top: 15px;
    color: rgba(255, 255, 255, 0.78);
}

.contact-information-list {
    padding: 0 40px;
}

.contact-information-item {
    display: flex;
    gap: 17px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-information-item > div {
    flex-shrink: 0;
    width: 43px;
    height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-blue);
    background: var(--gold);
    border-radius: 12px;
}

.contact-information-item section span {
    display: block;
    margin-bottom: 5px;
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.contact-information-item section p,
.contact-information-item section a {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    line-height: 1.7;
}

.contact-information-item section a:hover {
    color: var(--gold);
}


/* Business Hours */

.business-hours-card {
    margin: 30px 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
}

.business-hours-title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.business-hours-title i {
    color: var(--gold);
}

.business-hours-title h3 {
    color: var(--white);
    font-size: 1rem;
}

.business-hours-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding-top: 15px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.8rem;
}

.business-hours-row strong {
    color: var(--white);
    text-align: right;
}

.business-hours-row .business-closed {
    color: var(--gold);
}

.contact-social-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 25px 40px;
    background: rgba(0, 0, 0, 0.15);
}

.contact-social-section > span {
    font-size: 0.82rem;
    font-weight: 600;
}

.contact-social-links {
    display: flex;
    gap: 10px;
}

.contact-social-links a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-blue);
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}

.contact-social-links a:hover {
    color: var(--deep-blue);
    background: var(--gold);
    transform: translateY(-4px);
}


/* Contact Reasons */

.contact-reasons-section {
    background: var(--light-background);
}

.contact-reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-reason-card {
    position: relative;
    overflow: hidden;
    padding: 34px 27px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 17px;
    transition: var(--transition);
}

.contact-reason-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.contact-reason-number {
    position: absolute;
    top: 15px;
    right: 18px;
    color: rgba(4, 86, 200, 0.08);
    font-size: 3.5rem;
    font-weight: 800;
}

.contact-reason-card > i {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            var(--primary-blue),
            var(--dark-blue)
        );
    border-radius: 15px;
    font-size: 1.35rem;
}

.contact-reason-card h3 {
    color: var(--dark-blue);
    font-size: 1.08rem;
}

.contact-reason-card p {
    margin-top: 10px;
    color: var(--text-gray);
    font-size: 0.87rem;
}


/* Map */

.contact-map-section {
    padding: 100px 0;
    background: var(--white);
    scroll-margin-top: 90px;
}

.contact-map-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 35px;
}

.contact-map-heading h2 {
    color: var(--dark-blue);
    font-size: clamp(2rem, 4vw, 3rem);
}

.map-direction-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 50px;
    padding: 13px 21px;
    color: var(--white);
    background: var(--primary-blue);
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
}

.map-direction-button:hover {
    background: var(--dark-blue);
    transform: translateY(-3px);
}

.contact-map-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.contact-map-wrapper iframe {
    display: block;
    width: 100%;
}

.contact-map-address {
    position: absolute;
    left: 25px;
    bottom: 25px;
    max-width: 380px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 22px;
    color: var(--white);
    background: rgba(2, 20, 55, 0.94);
    border-radius: 14px;
    backdrop-filter: blur(10px);
}

.contact-map-address > i {
    margin-top: 3px;
    color: var(--gold);
    font-size: 1.35rem;
}

.contact-map-address strong,
.contact-map-address span {
    display: block;
}

.contact-map-address strong {
    margin-bottom: 5px;
    color: var(--white);
}

.contact-map-address span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.8rem;
}


/* FAQ */

.contact-faq-section {
    background: var(--light-background);
}

.contact-faq-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 70px;
    align-items: start;
}

.contact-faq-introduction {
    position: sticky;
    top: 120px;
}

.contact-faq-introduction h2 {
    color: var(--dark-blue);
    font-size: clamp(2rem, 4vw, 3rem);
}

.contact-faq-introduction p {
    margin: 17px 0 28px;
    color: var(--text-gray);
}

.contact-faq-list {
    display: grid;
    gap: 14px;
}

.contact-faq-item {
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    transition: var(--transition);
}

.contact-faq-item.active {
    border-color: rgba(4, 86, 200, 0.3);
    box-shadow: 0 12px 32px rgba(2, 28, 66, 0.08);
}

.contact-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    color: var(--dark-blue);
    background: transparent;
    text-align: left;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
}

.contact-faq-question i {
    flex-shrink: 0;
    color: var(--primary-blue);
    transition: var(--transition);
}

.contact-faq-item.active .contact-faq-question i {
    transform: rotate(45deg);
}

.contact-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.contact-faq-answer p {
    padding: 0 24px 23px;
    color: var(--text-gray);
    font-size: 0.88rem;
    line-height: 1.75;
}

/* ==================================
   Limo Furniture Category Page
================================== */

.furniture-page-hero {
    background:
        linear-gradient(
            135deg,
            #f3f7ff 0%,
            #ffffff 52%,
            #f5eee8 100%
        );
}

.category-page-hero {
    padding: 85px 0;
}

.category-page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 65px;
}

.category-page-label,
.section-label {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--primary-blue);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.category-page-hero-content h1 {
    margin-bottom: 22px;
    color: var(--dark-blue);
    font-size: clamp(2.6rem, 5vw, 4.5rem);
    line-height: 1.08;
}

.category-page-hero-content h1 span {
    display: block;
    color: #9a6b3f;
}

.category-page-hero-content p {
    max-width: 600px;
    margin-bottom: 30px;
    color: #667085;
    font-size: 1.05rem;
    line-height: 1.8;
}

.category-page-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 24px;
    color: #ffffff;
    background: var(--primary-blue);
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(20, 67, 145, 0.22);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.category-page-button:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(20, 67, 145, 0.28);
}

.category-page-hero-image {
    min-height: 480px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 26px 58px rgba(28, 52, 89, 0.16);
}

.category-page-hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
}


/* Introduction */

.category-introduction-section {
    padding: 90px 0;
    background: #ffffff;
}

.category-introduction-content {
    max-width: 850px;
    text-align: center;
}

.category-introduction-content h2 {
    margin-bottom: 20px;
    color: var(--dark-blue);
    font-size: clamp(2rem, 4vw, 3.1rem);
}

.category-introduction-content p {
    margin: 0 auto 14px;
    color: #667085;
    line-height: 1.8;
}


/* Product Collection */

.category-products-section {
    padding: 95px 0;
    background: #f5f7fb;
}

.category-products-section .section-heading {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.category-products-section .section-heading h2 {
    margin-bottom: 15px;
    color: var(--dark-blue);
    font-size: clamp(2rem, 4vw, 3rem);
}

.category-products-section .section-heading p {
    color: #667085;
    line-height: 1.75;
}

.category-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.category-product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e1e6ee;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(24, 47, 85, 0.06);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.category-product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(154, 107, 63, 0.5);
    box-shadow: 0 22px 44px rgba(24, 47, 85, 0.14);
}

.category-product-image {
    height: 260px;
    overflow: hidden;
    background: #eef1f5;
}

.category-product-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-product-card:hover .category-product-image img {
    transform: scale(1.06);
}

.category-product-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 24px;
}

.category-product-content h3 {
    margin-bottom: 11px;
    color: var(--dark-blue);
    font-size: 1.18rem;
}

.category-product-content p {
    margin-bottom: 20px;
    color: #667085;
    font-size: 0.94rem;
    line-height: 1.7;
}

.category-product-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    color: var(--primary-blue);
    font-weight: 700;
    text-decoration: none;
}

.category-product-content a i {
    transition: transform 0.3s ease;
}

.category-product-content a:hover i {
    transform: translateX(5px);
}


/* Bottom Contact Section */

.category-contact-section {
    padding: 75px 0;
    background:
        linear-gradient(
            120deg,
            #08204d,
            #13449e
        );
}

.category-contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.category-contact-content .section-label {
    color: var(--gold);
}

.category-contact-content h2 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: clamp(1.9rem, 3vw, 2.7rem);
}

.category-contact-content p {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}

.category-contact-button {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 14px 24px;
    color: #ffffff;
    background: #1ebc5b;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.category-contact-button:hover {
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(30, 188, 91, 0.26);
}


/* ================================
   Responsive Design
================================ */

/* Tablets and smaller laptops */

@media (max-width: 700px) {
    .brands-quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 480px) {
    .brands-quick-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 1024px) {

    .products-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
}

    .brands-quick-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }


.products-category-featured {
    grid-column: 1 / -1;
    grid-row: auto;
}

.products-category-electrical,
.products-category-clothing,
.products-category-helagraa,
.products-category-furniture {
    grid-column: auto;
    grid-row: auto;
    display: flex;
    flex-direction: column;
}

.products-category-electrical .products-category-image,
.products-category-clothing .products-category-image,
.products-category-helagraa .products-category-image,
.products-category-furniture .products-category-image {
    height: 250px;
    min-height: 250px;
}


    .contact-quick-grid,
.contact-reasons-grid {
    grid-template-columns: repeat(2, 1fr);
}

.contact-main-grid {
    gap: 30px;
}

.contact-form-wrapper {
    padding: 38px 30px;
}

.contact-information-header,
.contact-information-list {
    padding-left: 30px;
    padding-right: 30px;
}

.business-hours-card {
    margin-left: 30px;
    margin-right: 30px;
}

.contact-social-section {
    padding-left: 30px;
    padding-right: 30px;
}


    .brands-quick-grid,
.brand-promise-grid,
.brands-statistics-grid {
    grid-template-columns: repeat(2, 1fr);
}

.brand-showcase-grid {
    gap: 45px;
}
    .nav-menu {
        gap: 18px;
    }

    .brand-grid,
    .product-grid,
    .category-product-grid,
    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
    grid-template-columns: repeat(2, 1fr);
}

.about-brand-grid,
.about-statistics-grid {
    grid-template-columns: repeat(2, 1fr);
}

}


/* Tablets */
@media (max-width: 850px) {


    .contact-main-grid,
.contact-faq-grid {
    grid-template-columns: 1fr;
}

.contact-information-panel {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
}

.contact-faq-introduction {
    position: static;
}

.contact-map-heading {
    align-items: flex-start;
    flex-direction: column;
}


    .gallery-introduction-grid,
.featured-memory-grid {
    grid-template-columns: 1fr;
}

.featured-memory-image {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
}

.company-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
}


    .brands-introduction-grid,
.brand-showcase-grid {
    grid-template-columns: 1fr;
}

.brand-showcase-reverse .brand-showcase-image,
.brand-showcase-reverse .brand-showcase-content {
    order: initial;
}

.brand-showcase-image {
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
}

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        position: fixed;
        top: 84px;
        left: 0;
        width: 100%;
        height: calc(100vh - 84px);
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 30px 20px;
        background: var(--white);
        transform: translateX(100%);
        transition: var(--transition);
        overflow-y: auto;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-menu > a {
        width: 100%;
        padding: 16px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu > a::after {
        display: none;
    }

    .nav-button {
        justify-content: center;
        margin-top: 20px;
        padding: 14px 20px !important;
        border-bottom: none !important;
    }

    .hero {
        min-height: 700px;
    }

    .hero-text {
        padding: 80px 0;
    }

    .about-grid,
    .category-intro-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        gap: 60px;
    }

    .category-intro-grid {
        gap: 30px;
    }

    .about-image {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
    }

    .experience-box {
        right: 20px;
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

.about-story-grid {
    grid-template-columns: 1fr;
    gap: 55px;
}

.mission-vision-grid {
    grid-template-columns: 1fr;
}

.about-story-image {
    max-width: 700px;
    margin: 0 auto;
}

}

/* Mobile */

@media(max-width:768px){

.about-page-hero{

min-height:620px;
padding:130px 0 80px;
background-position:68% center;

}

.about-page-hero-content h1{

font-size:3rem;

}

.about-page-hero .hero-buttons{

flex-direction:column;

}

.about-page-hero .button{

width:100%;

}

}

/* Mobile phones */
@media (max-width: 600px) {

        .electrical-category-hero {
        min-height: 620px;
        padding: 130px 0 75px;
        background-position: 72% center;
    }


    .brands-page-hero {
    min-height: 620px;
    padding: 130px 0 75px;
    background-position: 72% center;
}

.brands-page-hero-content h1 {
    font-size: 3rem;
}

.products-category-grid {
    grid-template-columns: 1fr;
    gap: 20px;
}

.products-category-featured,
.products-category-electrical,
.products-category-clothing,
.products-category-helagraa,
.products-category-furniture {
    grid-column: 1;
    grid-row: auto;
}

.products-category-featured .products-category-image,
.products-category-electrical .products-category-image,
.products-category-clothing .products-category-image,
.products-category-helagraa .products-category-image,
.products-category-furniture .products-category-image {
    min-height: 230px;
    height: 230px;
}

.products-category-featured .products-category-content,
.products-category-electrical .products-category-content,
.products-category-clothing .products-category-content,
.products-category-helagraa .products-category-content,
.products-category-furniture .products-category-content {
    padding: 24px;
}

.products-category-featured h3 {
    font-size: 1.6rem;
}

    .contact-page-hero {
    min-height: 620px;
    padding: 130px 0 90px;
    background-position: 68% center;
}

.contact-page-hero-content h1 {
    font-size: 3rem;
}

.contact-quick-section {
    margin-top: -35px;
}

.contact-quick-grid,
.contact-reasons-grid,
.contact-form-row {
    grid-template-columns: 1fr;
}

.contact-quick-card {
    min-height: auto;
}

.contact-form-wrapper {
    padding: 32px 20px;
}

.contact-information-header {
    padding: 35px 22px 28px;
}

.contact-information-list {
    padding-left: 22px;
    padding-right: 22px;
}

.business-hours-card {
    margin: 25px 22px;
    padding: 21px 18px;
}

.contact-social-section {
    padding: 22px;
}

.business-hours-row {
    flex-direction: column;
    gap: 4px;
}

.business-hours-row strong {
    text-align: left;
}

.contact-map-section {
    padding: 75px 0;
}

.contact-map-wrapper iframe {
    height: 440px;
}

.contact-map-address {
    right: 15px;
    left: 15px;
    bottom: 15px;
    max-width: none;
}

.map-direction-button {
    width: 100%;
    justify-content: center;
}


    .gallery-page-hero {
    min-height: 620px;
    padding: 130px 0 75px;
    background-position: 68% center;
}

.gallery-page-hero-content h1 {
    font-size: 3rem;
}

.featured-memory-section {
    padding: 70px 0;
}

.featured-memory-image img {
    height: 380px;
}

.company-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
}

.company-gallery-item.gallery-large {
    grid-column: span 1;
}

.company-gallery-item.gallery-tall {
    grid-row: span 1;
}

.company-gallery-overlay {
    opacity: 1;
}

.gallery-lightbox {
    padding: 20px;
}

.gallery-lightbox img {
    max-width: 95vw;
    max-height: 70vh;
}

    .brands-page-hero {
    min-height: 620px;
    padding: 130px 0 75px;
    background-position: 68% center;
}

.brands-page-hero-content h1 {
    font-size: 3rem;
}

.brands-quick-grid,
.brand-promise-grid,
.brands-statistics-grid {
    grid-template-columns: 1fr;
}

.brand-showcase-image img {
    height: 390px;
}

.brand-showcase-logo {
    width: 200px;
}

.brand-product-list {
    grid-template-columns: 1fr;
}

.brand-collection-button {
    width: 100%;
}


    .container {
        width: min(100% - 30px, 1140px);
    }

    .section {
        padding: 75px 0;
    }

    .navbar {
        min-height: 74px;
    }

    .logo-main {
        font-size: 1.65rem;
    }

    .logo-sub {
        font-size: 0.57rem;
        letter-spacing: 3px;
    }

    .logo-image {
        height: 52px;
    }

    .nav-menu {
        top: 74px;
        height: calc(100vh - 74px);
    }
     
    .electrical-category-hero {
    min-height: 620px;
    background-position: 70% center;
} 

    .clothing-category-hero {
        min-height: 620px;
        background-position: 72% center;
    }
.helagraa-category-hero {
    min-height: 620px;
    background-position: 70% center;
}

.products-main-hero {
    min-height: 590px;
    padding: 130px 0 75px;
    background-position: 65% center;
}

.products-main-content h1 {
    font-size: 3rem;
}

.products-category-grid,
.products-service-grid {
    grid-template-columns: 1fr;
}

.products-category-image {
    height: 250px;
}

.products-category-content {
    padding: 30px 24px;
}
.about-page-hero {
    min-height: 620px;
    padding: 130px 0 75px;
    background-position: 67% center;
}

.about-page-hero-content h1 {
    font-size: 3rem;
}

.about-story-image img {
    height: 400px;
}

.about-year-badge {
    right: 12px;
    bottom: 18px;
}

.story-highlights,
.values-grid,
.about-brand-grid,
.about-statistics-grid {
    grid-template-columns: 1fr;
}

.mission-vision-card {
    padding: 32px 24px;
}

.company-timeline::before {
    left: 28px;
}

.timeline-item {
    grid-template-columns: 58px 1fr;
    gap: 18px;
}

.timeline-year {
    height: 52px;
    font-size: 0.75rem;
} 

.preloader-content {
    width: 78%;
}

.preloader-logo {
    width: 175px;
}

.preloader-gold-line {
    margin-top: 25px;
}

.preloader-content p {
    font-size: 0.66rem;
    letter-spacing: 1.5px;
}

    /* Homepage hero */
    .hero {
        min-height: 650px;
        padding-top: 74px;
        background-position: 65% center;
    }

    .hero h1 {
        font-size: clamp(2.7rem, 13vw, 4rem);
        letter-spacing: -1px;
    }

    .hero-text > p {
        font-size: 0.97rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .button {
        width: 100%;
    }

    .hero-highlights {
        flex-direction: column;
        gap: 12px;
    }

    /* Home Essentials hero */
    .category-hero {
        min-height: 620px;
        padding: 130px 0 75px;
    }

    .home-category-hero {
        background-position: 68% center;
    }

    .category-hero-content h1 {
        font-size: 3rem;
    }

    .category-hero-content > p {
        font-size: 0.95rem;
    }

    /* Grids */
    .about-features,
    .brand-grid,
    .product-grid,
    .category-product-grid,
    .benefit-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .product-image-box,
    .category-product-image {
        height: 240px;
    }

    .about-image,
    .image-placeholder {
        min-height: 380px;
    }

    .about-photo {
        height: 380px;
    }

    .experience-box {
        right: 12px;
        bottom: 18px;
        min-width: 180px;
        padding: 19px;
    }

    .brand-card {
        padding: 30px 24px;
    }

    .cta-section {
        padding: 65px 0;
    }

    .footer-grid {
        gap: 40px;
        padding: 65px 0 45px;
    }

    .floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }
}

/* Tablet */
@media (max-width:1200px){

    .helagraa-product-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */
@media (max-width:768px){

    .helagraa-product-grid{
        grid-template-columns:1fr;
    }

}

/* ==================================
   Phase 1 - Step 6
   Premium Hover Effects
================================== */

    
/* Product Cards */

.product-card {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.product-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.15);

    border-color: var(--gold);
}


/* Product Images */

.product-card img {
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.06);
}


/* Brand Cards */

.brand-card {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.brand-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.14);
}



/* Statistics Cards */

.stat-card {
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}

.stat-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.12);
}


/* Gallery Images */

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}


/* Buttons */

.btn,
.primary-btn,
.secondary-btn,
.hero-btn,
.contact-btn {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.btn:hover,
.primary-btn:hover,
.secondary-btn:hover,
.hero-btn:hover,
.contact-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.18);
}


/* Navigation Links */

.nav-menu a {
    transition:
        color 0.3s ease,
        transform 0.3s ease;
}

.nav-menu a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}


/* Disable Hover Movement on Touch Devices */

@media (hover: none) {

    .product-card:hover,
    .brand-card:hover,
    .stat-card:hover,
    .btn:hover,
    .primary-btn:hover,
    .secondary-btn:hover,
    .hero-btn:hover,
    .contact-btn:hover {
        transform: none;
    }

    .product-card:hover img,
    .gallery-item:hover img {
        transform: none;
    }

}

/* ==================================
   Equal Brand Card Layout
================================== */

.brand-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.brand-card .brand-logo-box {
    width: 100%;
    height: 120px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    padding: 18px;
    overflow: hidden;
    background: #f7f9fc;
    border-radius: 14px;
}

.brand-card .brand-logo {
    display: block;
    width: 100%;
    height: 85px;
    max-width: 220px;
    max-height: 85px;
    object-fit: contain;
    transform: none;
    transition: transform 0.3s ease;
}

/* The Furniture artwork is wider, so it receives a little more usable width
   while keeping exactly the same logo box as every other card. */
.brand-card.furniture .brand-logo {
    max-width: 250px;
}

.brand-card:hover .brand-logo {
    transform: scale(1.06);
}

.brand-card h3 {
    margin-top: 0;
    margin-bottom: 16px;
}

.brand-card p {
    margin-bottom: 24px;
}

.brand-card .brand-link {
    margin-top: auto;
}

/* Helagraa product cards */

.helagraa-product-grid .category-product-card {
    display: flex;
    flex-direction: column;
    height: auto;
}

.helagraa-product-grid .category-product-image {
    height: 330px;
    padding: 10px;
    background: #eef2f7;
}

.helagraa-product-grid .category-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.helagraa-product-grid .category-product-content {
    padding: 16px 20px 18px;
}

.helagraa-product-grid .category-product-content h3 {
    margin: 5px 0 8px;
}

.helagraa-product-grid .category-product-content p {
    margin: 6px 0 12px;
    line-height: 1.5;
}

.helagraa-product-grid .category-product-content a {
    margin-top: 4px;
}

/* =========================================================
   Compatibility Fixes — About Page
========================================================= */

.about-hero {
    position: relative;
    min-height: 680px;
    display: flex;
    align-items: center;
    padding: 160px 0 100px;
    overflow: hidden;
    color: var(--white);
    background-image:
        linear-gradient(
            90deg,
            rgba(2, 20, 55, 0.98) 0%,
            rgba(2, 28, 66, 0.94) 30%,
            rgba(2, 28, 66, 0.68) 52%,
            rgba(2, 28, 66, 0.22) 72%,
            rgba(2, 28, 66, 0.02) 100%
        ),
        url("../images/about/about-hero.jpg");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    width: min(1140px, calc(100% - 40px));
    margin: 0 auto;
}

.about-label {
    display: inline-block;
    margin-bottom: 20px;
    padding: 9px 16px;
    color: #ffe19a;
    background: rgba(213, 170, 53, 0.13);
    border: 1px solid rgba(213, 170, 53, 0.35);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-hero-content h1 {
    max-width: 800px;
    color: var(--white);
    font-size: clamp(3rem, 7vw, 5.7rem);
    line-height: 1.05;
    letter-spacing: -2px;
}

.about-hero-content h1 span {
    display: block;
    color: var(--gold);
}

.about-hero-content > p {
    max-width: 650px;
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 34px;
}

.primary-btn,
.secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 26px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.primary-btn {
    color: var(--white);
    background: var(--primary-blue);
    box-shadow: 0 15px 35px rgba(4, 86, 200, 0.35);
}

.primary-btn:hover {
    color: var(--white);
    background: #176de0;
}

.secondary-btn {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.65);
}

.secondary-btn:hover {
    color: var(--dark-blue);
    background: var(--white);
    border-color: var(--white);
}

.stat-card {
    position: relative;
}

@media (min-width: 1201px) {
    .about-brand-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .about-hero {
        min-height: 620px;
        padding: 130px 0 75px;
        background-position: 67% center;
    }

    .about-hero-content {
        width: min(100% - 30px, 1140px);
    }

    .about-hero-content h1 {
        font-size: 3rem;
    }

    .about-hero-buttons {
        flex-direction: column;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
    }
}

/* ==================================
   ABOUT PAGE HERO — FINAL
================================== */

.about-page-hero {
    position: relative;
    width: 100%;
    min-height: 720px;
    display: flex;
    align-items: center;
    padding: 160px 0 100px;
    overflow: hidden;
    color: #ffffff;

    background-image:
        linear-gradient(
            90deg,
            rgba(2, 20, 55, 0.98) 0%,
            rgba(2, 28, 66, 0.94) 30%,
            rgba(2, 28, 66, 0.70) 52%,
            rgba(2, 28, 66, 0.25) 72%,
            rgba(2, 28, 66, 0.03) 100%
        ),
        url("../images/about/about-hero.png");

    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.about-page-hero-content {
    position: relative;
    z-index: 2;
}

.about-page-hero-content > * {
    max-width: 650px;
}

.about-page-hero-content h1 {
    margin-top: 18px;
    color: #ffffff;
    font-size: clamp(3rem, 7vw, 5.7rem);
    line-height: 1.05;
    letter-spacing: -2px;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.about-page-hero-content h1 span {
    display: block;
    color: var(--gold);
}

.about-page-hero-content > p {
    max-width: 630px;
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.about-page-hero .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 35px;
}

@media (max-width: 600px) {
    .about-page-hero {
        min-height: 620px;
        padding: 130px 0 75px;
        background-position: 68% center;
    }

    .about-page-hero-content h1 {
        font-size: 3rem;
    }

    .about-page-hero .hero-buttons {
        flex-direction: column;
    }

    .about-page-hero .button {
        width: 100%;
    }
}

/*=========================================
 Furniture Hero
=========================================*/

.furniture-page-hero{

    position:relative;
    min-height:720px;
    display:flex;
    align-items:center;
    overflow:hidden;
    padding:160px 0 100px;
    color:#fff;

    background-image:
    linear-gradient(
        90deg,
        rgba(2,20,55,.98) 0%,
        rgba(2,28,66,.94) 30%,
        rgba(2,28,66,.72) 52%,
        rgba(2,28,66,.22) 72%,
        rgba(2,28,66,0) 100%
    ),
    url("../images/products/furniture/furniture-hero.png");

    background-size:cover;
    background-position:center right;
    background-repeat:no-repeat;

}

.furniture-page-hero-content{

    position:relative;
    z-index:2;

}

.furniture-page-hero-content>*{

    max-width:620px;

}

.furniture-page-hero-content h1{

    margin-top:20px;
    color:#fff;
    font-size:clamp(3rem,7vw,5.7rem);
    line-height:1.05;
    letter-spacing:-2px;
    text-shadow:0 5px 18px rgba(0,0,0,.35);

}

.furniture-page-hero-content h1 span{

    display:block;
    color:var(--gold);

}

.furniture-page-hero-content p{

    margin-top:28px;
    color:rgba(255,255,255,.92);
    font-size:1.05rem;
    line-height:1.8;

}

.furniture-page-hero .hero-buttons{

    display:flex;
    gap:16px;
    margin-top:35px;

}

@media(max-width:768px){

.furniture-page-hero{

min-height:620px;
padding:130px 0 80px;
background-position:70% center;

}

.furniture-page-hero-content h1{

font-size:3rem;

}

.furniture-page-hero .hero-buttons{

flex-direction:column;

}

.furniture-page-hero .button{

width:100%;

}

}

/* ==================================
   CLOTHING PRODUCT IMAGE FIX
================================== */

.clothing-product-grid .category-product-image {
    width: 100%;
    height: 360px;
    padding: 0;
    overflow: hidden;
    background: #f2ede7;
}

.clothing-product-grid .category-product-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: contain;
    object-position: center bottom;

    transition: transform 0.4s ease;
}

.clothing-product-grid .category-product-card:hover
.category-product-image img {
    transform: scale(1.03);
}

/* Tablet */

@media (max-width: 1024px) {

    .clothing-product-grid .category-product-image {
        height: 340px;
    }

}

/* Mobile */

@media (max-width: 600px) {

    .clothing-product-grid .category-product-image {
        height: 420px;
    }

}

@media (max-width: 850px) {
    .contact-hero {
        min-height: 680px;
        align-items: flex-start;

        background-position: 68% center;
    }

    .contact-hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.94) 52%,
            rgba(255, 255, 255, 0.55) 75%,
            rgba(255, 255, 255, 0.15) 100%
        );
    }

    .contact-hero-content {
        padding: 90px 22px 300px;
        text-align: center;
    }

    .contact-hero-content > * {
        max-width: 100%;
    }

    .contact-hero h1 {
        font-size: 42px;
    }

    .contact-hero p {
        font-size: 16px;
        line-height: 1.7;
    }

    .contact-hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .contact-hero {
        min-height: 650px;
        background-position: 72% center;
    }

    .contact-hero-content {
        padding: 75px 18px 280px;
    }

    .contact-hero h1 {
        font-size: 36px;
    }

    .contact-hero-buttons {
        flex-direction: column;
    }

    .contact-primary-btn,
    .contact-secondary-btn {
        width: 100%;
    }
}

/* ==================================
   CLOTHING PRODUCT IMAGE FIX
================================== */

.clothing-product-grid .category-product-image {
    width: 100%;
    height: 360px;
    padding: 0;
    overflow: hidden;
    background: #f2ede7;
}

.clothing-product-grid .category-product-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: contain;
    object-position: center bottom;

    transition: transform 0.4s ease;
}

.clothing-product-grid .category-product-card:hover
.category-product-image img {
    transform: scale(1.03);
}

/* Tablet */

@media (max-width: 1024px) {

    .clothing-product-grid .category-product-image {
        height: 340px;
    }

}

/* Mobile */

@media (max-width: 600px) {

    .clothing-product-grid .category-product-image {
        height: 420px;
    }

}

/* ==================================
   CLOTHING PAGE LAYOUT FIX
================================== */

.category-products-section,
.category-benefits,
.category-contact-section {
    width: 100%;
    clear: both;
}

.clothing-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.clothing-product-grid .category-product-image {
    height: 360px;
    overflow: hidden;
    background: #f1ece6;
}

.clothing-product-grid .category-product-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.category-contact-section {
    min-height: auto;
    padding: 75px 0;
}

.category-contact-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.category-contact-content > div {
    max-width: 760px;
}

@media (max-width: 1024px) {

    .clothing-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}

@media (max-width: 700px) {

    .clothing-product-grid {
        grid-template-columns: 1fr;
    }

    .category-contact-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .category-contact-button {
        width: 100%;
    }

}