:root {
    --pry-color: #003151;
    --light: #e9f6ff;
    --secondary: #b1dff3;
    --dark: #0B2B3F;
    --radius: 24px;
    --red-accent: #ff0000;
    --border-gray: #e0e0e0;
    --text-gray: #666;
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    --h1-fontsize: 2.2rem;
    --h1-fontsize-mobile: 1.7rem;

}

/* Thin */
@font-face {
    font-family: "Montserratarm";
    src: url("../fonts/marm/Montserratarm-Thin.otf") format("opentype");
    font-weight: 100;
    font-style: normal;
}

/* ExtraLight */
@font-face {
    font-family: "Montserratarm";
    src: url("../fonts/marm/Montserratarm-ExtraLight.otf") format("opentype");
    font-weight: 200;
    font-style: normal;
}

/* Light */
@font-face {
    font-family: "Montserratarm";
    src: url("../fonts/marm/Montserratarm-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
}

/* Regular */
@font-face {
    font-family: "Montserratarm";
    src: url("../fonts/marm/Montserratarm-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
}

/* Medium */
@font-face {
    font-family: "Montserratarm";
    src: url("../fonts/marm/Montserratarm-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
}

/* Bold */
@font-face {
    font-family: "Montserratarm";
    src: url("../fonts/marm/Montserratarm-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
}

/* ExtraBold */
@font-face {
    font-family: "Montserratarm";
    src: url("../fonts/marm/Montserratarm-ExtraBold.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
}

/* Black */
@font-face {
    font-family: "Montserratarm";
    src: url("../fonts/marm/Montserratarm-Black.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
}

html,
body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "MontserratArm";
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

a {
    text-decoration: none;
    padding: 0;
    margin: 0;
}

h1 {
    font-size: clamp(var(--h1-fontsize-mobile), 3.5vw, var(--h1-fontsize));
    font-weight: 800;
    line-height: 1.1;
    color: var(--pry-color);
    margin: 0;
    text-transform: uppercase;
}


/* PAGE LOADER */
#page-loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 20, 0.872);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.spinner {
    position: relative;
    width: 80px;
    height: 80px;
}

/* spinning circle */
.spin-circle {
    width: 100%;
    height: 100%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top: 4px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* centered logo (does NOT spin) */
.loader_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 64px;
    height: 60px;
    transform: translate(-50%, -50%);
}

.loader-content p {
    color: var(--pry-color);
    color: var(--pry-color);
    text-shadow:
        -1px -1px 0 #fff,
        1px -1px 0 #fff,
        -1px 1px 0 #fff,
        1px 1px 0 #fff;
}

/* animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


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

.loader-content {
    text-align: center;
}



#header {
    width: 100%;
    box-shadow: 0px 0px 6px 2px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--pry-color);
    color: white;
    box-sizing: border-box;
    z-index: 99998;
    /* border: 1px solid red; */
}


.wrap {
    width: 95%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.header_contact_bar {
    width: 100%;
    height: 40px;
    padding-inline: 30%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--dark);
    color: white;

}

.contact-wrap {
    width: 95%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.contact-wrap p {
    font-size: calc(8px + 0.2vw);
    margin: 0;
}


.contact-wrap-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-wrap-item img {
    width: 24px;
    margin-right: 6px;
}


.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-btn {
    display: flex;
    align-items: center;
    height: 24px;
    gap: 8px;
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    transition: 0.3s ease;
    backdrop-filter: blur(8px);
    background-color: #00315100;
    padding: 0;
}

.btn-toggle {
    display: flex;
    align-items: center;
}


.icon-container {
    width: 16px;
}

.icon-container img {
    width: 100%;
}

summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    font-weight: 600;
    text-decoration: none;
    color: var(--text-color);
}

summary {
    list-style: none;
    cursor: pointer;
}

summary::-webkit-details-marker {
    display: none;
}


summary a {
    text-decoration: none;
    color: inherit;
    flex-grow: 1;
}

summary::after {
    content: '';
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-bottom: 4px;
    margin-left: 10px;
}

.language-flag {
    width: 24px;
    height: 24px;
    object-fit: cover;
    border-radius: 50%;
}

.language-menu {
    position: absolute;
    top: 110%;
    left: 0;
    /* min-width: 170px; */
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.3s ease;
    z-index: 999;
}

.language-dropdown:hover .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    text-decoration: none;
    color: #222;
    font-size: 14px;
    transition: 0.2s ease;
}

.language-option img {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    object-fit: cover;
}

.language-option:hover {
    background: #f5f5f5;
}


.call-header-card {
    display: flex;
    align-items: center;
}

.header_main_bar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.siteid-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* border: 1px solid red; */
}

@media screen and (min-width:960px) {
    .siteid-container {
        width: fit-content;
    }
}


.logo,
.searchbox,
.app_functions {
    margin-block: 6px;
}

.logo {
    width: 200px;
    height: 61.5px;
}

.searchbox {
    display: flex;
    gap: 16px;
    align-items: center;
    display: none;
}

.searchbox button {
    width: 180px;
    height: 38px;
    border-radius: 12px;
    background-color: red;
}

input[type="search"] {
    height: 38px;
    /* margin-right: 12px; */
}


/* Search */
.input-container {
    display: flex;
    justify-content: space-between;
    background-color: white;
}

.search-icon {
    width: 24px;
    margin-inline: 4px;
    display: flex;
    align-items: center;
}


.app_functions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    /* remove one of the display declarations */
    /* display: none;  <-- use only when needed in media query */
}

.app_functions a {
    color: white;
    text-decoration: none;
}

.icontext {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    margin-inline: 8px;
    position: relative;
}

.icon-wrapper {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.icontext img {
    width: 24px;
    height: 24px;
    display: block;
}

.icontext h6 {
    font-size: 12px;
    margin: 0;
    line-height: 1.2;
    text-align: center;
}

/* NUMBER BADGE (for cart and favourites) */
.badge-count {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: red;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
    border: 2px solid #fff;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* STATUS DOT (for user online/offline) */
.status-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-sizing: border-box;
}

.status-dot.online {
    background: #22c55e;
}

.status-dot.offline {
    background: #9ca3af;
}

.header_bottom_bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background-color: white;
    color: var(--pry-color);
    display: none;
    transition: all ease 300ms;
}

.header_bottom_bar .wrap {
    margin-top: 1.5rem
}

.header_bottom_bar.open {
    display: flex;
    height: 100dvh;
}

.searchbox.open,
.app_functions.open {
    display: flex;
}

.header_bottom_bar h3 {
    font-size: 14px;
    margin-block: 24px;
}

.header_bottom_bar .wrap a {
    font-size: clamp(.8rem, 4vw, 1.1rem);
}


.wrap {
    display: flex;
    align-items: center;
    /* gap: 20px; */
    flex-wrap: wrap;
}

.wrap .nav-item {
    text-decoration: none;
    color: #000;
    padding: 8px 14px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: none;
}

.wrap .nav-item a {
    font-weight: 500;
    font-style: Medium;
    font-size: 23.03px;
    line-height: 100%;
    letter-spacing: 0%;
}

.wrap .nav-item:hover {
    border: 2px solid var(--pry-color);
    color: var(--pry-color);
}

.wrap .nav-item:active {
    border: 2px solid var(--pry-color);
    background: rgba(47, 66, 211, 0.08);
}

.wrap .nav-item.active-link {
    border: 2px solid var(--pry-color);
    background: rgba(47, 66, 211, 0.08);
    color: var(--pry-color);
}


.heading_spacer {
    height: 148px;
    /* border: 1px solid red; */
}

.back-drop {
    position: fixed;
    background: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    display: none;
}

.nav {
    width: 48px;
    cursor: pointer;
}


.st0 {
    fill: white;
}

/* Ham Nav Animation */
.bar1.active {
    transform: translateY(0.3rem) rotate(45deg);
    transform-origin: 50% 50%;

}

.bar2.active {
    opacity: 0;
}

.bar3.active {
    transform: translateY(-0.4rem) rotate(-45deg);
    transform-origin: 50% 50%;
}


/* for large screens */
@media screen and (min-width: 960px) {

    .nav {
        display: none;
    }

    .wrap {
        flex-direction: row;
    }

    .logo,
    .searchbox,
    .app_functions {
        margin-block: 0px;
    }

    .header_bottom_bar {
        display: block;
        height: auto;
    }

    .header_bottom_bar.open {
        height: auto;
    }

    .header_bottom_bar .wrap {
        margin-top: auto;
    }

    .app_functions,
    .searchbox {
        display: flex;
    }

    .header_bottom_bar h3 {
        margin-block: 1rem;
    }


}

@media screen and (min-width:1400px) {
    .wrap {
        width: 1400px;
    }
}


.lnd-home {
    height: 510px;
}

@media screen and (min-width:1400px) {
    .landing {
        width: 1400px;
    }
}


.hero-section {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 55vh;
    padding: 20px;
    box-sizing: border-box;
    margin: auto;
    color: white;
    background-image: url("../img/agimpexhero.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.about-hero {
    background-image: url("../img/hero/pc-natural-stone.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    min-height: 320px;
    max-width: 1280px;
    margin: 24px auto 32px;
    border-radius: 12px;
    overflow: hidden;
    padding: 40px 20px;
}

@media (max-width: 767px) {
    html[lang="hy"] .about-hero {
        background-image: url("../img/hero/hy-mobile-natural-stone.png");
    }
}

.about-hero .hero-text {
    padding-bottom: 0;
}

.about-hero .hero-text-box h2 {
    font-size: clamp(1.5rem, 3.2vw, 48px);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.about-hero .hero-text-box h3 {
    font-size: clamp(1rem, 2vw, 28px);
}

@media screen and (min-width: 960px) {
    .about-hero {
        min-height: 380px;
        flex-direction: column-reverse;
    }
}


.hero-text {
    padding: 0;
    text-align: center;
    box-sizing: border-box;
    padding-bottom: 300px;

}

.hero-text-box {
    /* min-width: 552px; */
}


.hero-text-box h2 {
    font-size: clamp(1.35rem, 3.5vw, 70px);
    font-weight: 800;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
    margin: 0;
}

.hero-text-box h3 {
    font-family: "Montserratarm", sans-serif;
    font-size: clamp(1.35rem, 3.5vw, 52px);
    font-weight: 500;
    margin: 0 0 12px;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}


.page_hero {
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url("../img/banner-44.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: white;
}


/* for large screens */
@media screen and (min-width: 960px) {

    .hero-section {
        min-height: 72vh;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        padding: 40px;
    }

    .hero-text {
        text-align: center;
        color: white;
        /* width: 48%; */
    }

}


.text {

    margin: 20px;
    margin-top: 150px;
    color: rgb(248, 248, 248);
    transition: all 0.2s cubic-bezier(0.77, 0.2, 0.05, 1.0);
}

.text p {
    line-height: 1.5rem;
}


button {
    width: auto;
    height: 48px;
    font-weight: bolder;
    /* border: 2px solid var(--pry-color); */
    cursor: pointer;
    border: none;
    /* border-radius: 30px; */
    color: var(--light);
    background-color: var(--dark);
    padding: 12px;
    box-sizing: border-box;
}

input[type="submit"] {
    width: auto;
    height: 48px;
    font-weight: bolder;
    /* border: 2px solid var(--pry-color); */
    cursor: pointer;
    border: none;
    border-radius: 30px;
    color: var(--light);
    background-color: var(--dark);
    padding: 12px;
    box-sizing: border-box;
}

.pry-btn {
    width: 160px;
    height: 48px;
}


/* main section */
#main {
    width: 92%;
    margin: auto;
    overflow: hidden;
}

#main-content {
    padding-top: var(--header-height);
}

/* for more larger screens */
@media screen and (min-width:1400px) {
    #main {
        width: 1400px;
    }
}


.stats_box {
    border-radius: var(--radius);
    background: #F7F7F7;
    padding: 40px;
    box-sizing: border-box;
    box-shadow: 0px 0px 3.07px 3.79px #00315129;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin: auto;
    margin-block: 48px;
    margin-inline: 6px;
}


.stat-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    gap: 12px;
}

.stat-item p {
    text-align: center;
    margin: 0;
}

.icon-box {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}


.narrative {
    width: 100%;
    margin: 60px auto;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
}


.text-box {
    margin-bottom: 30px;
    color: var(--pry-color);
}


.text-box p {
    font-family: "Montserratarm", sans-serif;
    font-size: clamp(.8rem, 3.5vw, 17px);
    font-weight: 600;
    margin: 0 0 12px;
    line-height: 41.21px;
    letter-spacing: 0.02em;
}


.img-box img {
    width: 100%;
    height: 100%;
    border-radius: 24px;
}

/* for large screens */
@media screen and (min-width: 960px) {

    .stats_box {
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        margin-inline: 0px;
    }

    .narrative {
        display: flex;
        flex-direction: row;
        /* padding: 32px; */

    }

    .text-box {
        width: 54%;
        /* padding: 100px 30px 0 30px; */

    }

    .img-box {
        width: 44%;
    }
}


.section {
    margin: 60px auto;
    box-sizing: border-box;
}


.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-block: 44px;
}



/* .cat_container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: auto;
} */

.cat_container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* mobile default */
    gap: 24px;
    margin: auto;
}

@media screen and (min-width: 600px) {
    .cat_container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 960px) {
    .cat_container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.cat_item {
    margin-bottom: 24px;
}

.cat_item img {
    width: 100%;
    height: auto;
}

.cat_item_textbox {
    height: 87px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 9px;
    margin-top: 12px;
    background-color: white;
    color: var(--pry-color);
    box-shadow: 0px 4px 4px 0px #00000040;
    border: 2px solid #9797972E;
    text-align: center;

}

.cat_item_textbox:hover {
    background-color: var(--pry-color);
    color: white;
}

.cat_item_textbox h3 {
    /* max-width: 0; */
    font-weight: bolder;
}


/* for large screens */
@media screen and (min-width: 960px) {
    .cat_container {
        flex-direction: row;
    }

    .cat_item {
        /* width: 24%; */
    }

}


.product-container,
.index_product-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* grid-template-columns: 1fr; */
    gap: 12px;
}

/* Mobile (normal phones) */
@media (min-width: 480px) {
    .product-container,
    .index_product-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet */
@media (min-width: 768px) {
    .product-container,
    .index_product-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large screens */
@media (min-width: 1024px) {
    .product-container,
    .index_product-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Extra large */
@media (min-width: 1280px) {
    .product-container,
    .index_product-container {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Natural stones page: 3 products per row (overrides 4/5 columns above) */
@media (min-width: 1024px) {
    .product-container.product-container--natural-stones {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .product-container.product-container--natural-stones {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-item,
.index_product-item {
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 1.5vw, 12px);
}

.badge-discount {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--red-accent);
    color: white;
    padding: 8px 12px;
    font-weight: bold;
    font-size: 1.2rem;
    border-bottom-left-radius: 4px;
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    left: 10px;
    background: none;
    border: none;
    font-size: 20px;
    color: #ccc;
    cursor: pointer;
}

.product-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: height 0.5s ease-in-out, box-shadow 0.3s ease;
    overflow: hidden;
    border-radius: 6.9px;
    border-width: 1.53px;
    aspect-ratio: 1;
}

.product-image {
    width: 100%;
    height: 100%;
}

.product-image img {
    width: 100%;
    height: 100%
}

.product-image-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.product-name-link {
    color: inherit;
    text-decoration: none;
}

.product-name-link:hover {
    text-decoration: underline;
}

.product-info {
    background: #fff;
    /* border: 1px solid red; */
    border-radius: 8px;
    padding: 10px;
    box-shadow: var(--shadow);
    /* border: 1px solid red; */
    border: 1.53px solid #9797972E;
    box-shadow: 0px 3.06px 3.06px 0px #00000040;
    box-sizing: border-box;
}

.product-info.nat-stn {
    border: 3.03px solid #185068;
}

.product-title {
    font-size: 0.9rem;
    color: #2c3e50;
    margin: 0 0 0px 0;
    margin-bottom: 0;
    text-transform: capitalize;
}

.product-tile h3 p {
    margin: 0;
}


.product-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-info-row p {
    font-size: clamp(10px, 2vw, 14px);
}

.product-title {
    font-size: clamp(12px, 2.5vw, 16px);
}

.current-price {
    font-size: clamp(14px, 3vw, 18px);
}

.old-price {
    font-size: clamp(10px, 2vw, 13px);
}

.current-price {
    font-weight: bold;
    font-size: 1.1rem;
}

.currency {
    font-size: 0.7rem;
    color: var(--text-gray);
}

.cart-btn {
    background: none;
    margin: 0;
    padding: 0;
    cursor: pointer;
    color: var(--pry-color);
    height: auto;
}

/* =========================
   MAIN BANNER
========================= */
.transport-banner {
    position: relative;
    width: 100%;
    height: clamp(220px, 34vw, 430px);
    overflow: hidden;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}


/* =========================
   REVERSE BANNER VERSION
========================= */
.transport-banner--reverse .transport-banner__image-wrap {
    justify-content: flex-start;
    padding-right: 0;
    /* padding-left: clamp(10px, 3vw, 40px); */
}

.transport-banner--reverse .transport-banner__image-wrap img {
    margin-top: -100px;
}

.transport-banner--reverse .transport-banner__bar {
    margin-left: auto;
    margin-right: clamp(12px, 3vw, 40px);
}

.transport-banner--reverse .transport-banner__title {
    max-width: 100%;
}

.transport-banner--reverse .transport-banner__bar-inner {
    justify-content: flex-end;
}

.transport-banner--reverse .transport-banner__title {
    text-align: right;
}


/* =========================
   TRUCK IMAGE AREA
========================= */
.transport-banner__image-wrap {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    pointer-events: none;
    z-index: 3;
    padding-right: clamp(10px, 3vw, 40px);
}

.transport-banner__image {
    width: auto;
    height: auto;
    /* max-width: min(48%, 700px); */
    max-height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}


/* =========================
   BLUE BAR OVERLAY
========================= */
.transport-banner__bar {
    position: relative;
    z-index: 2;
    /* CHANGED: lower than image */
    width: min(72%, 900px);
    background: var(--pry-color);
    border-radius: 0;
    margin-left: clamp(12px, 3vw, 40px);
    padding: clamp(14px, 2vw, 26px) clamp(16px, 3vw, 40px);
    box-sizing: border-box;
}

.transport-banner__bar-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* =========================
   TEXT
========================= */
.transport-banner__title {
    margin: 0;
    color: #fff;
    font-weight: 800;
    line-height: 1.15;
    font-size: clamp(1rem, 2.1vw, 2rem);
    max-width: 768px;
    text-transform: none;
}

/* =========================
   FLAGS
========================= */
.transport-banner__flags {
    display: flex;
    align-items: center;
    gap: clamp(6px, 1vw, 12px);
    flex-wrap: wrap;
}

.transport-banner__flag {
    width: clamp(24px, 2.3vw, 38px);
    height: clamp(24px, 2.3vw, 38px);
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    /* border: 1px solid rgba(255, 255, 255, 0.35); */
    /* background: #fff; */
}

.transport-banner__flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================
   TABLET
========================= */
@media (max-width: 991px) {
    .transport-banner {
        height: clamp(240px, 42vw, 340px);
    }

    .transport-banner__bar {
        width: min(78%, 720px);
    }

    .transport-banner__title {
        max-width: 100%;
    }

    .transport-banner__image {
        max-width: 52%;
        max-height: 82%;
    }

    .transport-banner--reverse .transport-banner__image-wrap img {
        margin-top: 0;
    }

}

/* =========================
   MOBILE
========================= */
@media (max-width: 767px) {
    .transport-banner {
        min-height: 220px;
        height: auto;
        padding: 20px 0 24px;
        align-items: flex-start;
        display: flex;
        flex-direction: column;
        overflow: visible;
    }

    .transport-banner__image-wrap {
        position: relative;
        inset: auto;
        width: 100%;
        justify-content: center;
        padding: 0 16px;
        order: 2;
        margin-top: 18px;
        z-index: 1;
        /* normal stacking on mobile */
    }

    .transport-banner__image {
        max-width: 92%;
        max-height: none;
        width: 100%;
        height: auto;
    }

    .transport-banner__bar {
        width: calc(100% - 32px);
        margin: 0 16px;
        padding: 16px;
        order: 1;
        z-index: 2;
        /* bar above in mobile flow */
    }

    .transport-banner__bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .transport-banner__title {
        max-width: 100%;
        font-size: clamp(1rem, 5vw, 1.5rem);
    }

    .transport-banner__flags {
        gap: 8px;
    }
}

/* =========================
   SMALL MOBILE
========================= */
@media (max-width: 480px) {
    .transport-banner {
        padding-top: 16px;
        padding-bottom: 20px;
    }

    .transport-banner__bar {
        width: calc(100% - 20px);
        margin: 0 10px;
        padding: 14px 12px;
    }

    .transport-banner__flag {
        width: 24px;
        height: 24px;
    }
}


/* Contact Section */
.contact-container {
    max-width: 600px;
    margin: 20px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-row {
    display: flex;
    gap: 15px;
}

.input-row input {
    flex: 1;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 14px;
    outline: none;
    font-family: "Montserratarm", sans-serif;
}

textarea {
    height: 180px;
    resize: vertical;
}


.upload-container {
    display: inline-block;
    padding: 12px;
    border: 1px dashed #aaa;
    cursor: pointer;
    text-align: center;
}

.contact-items {
    height: 450px;
    margin-bottom: 30px;

}

.contact-map-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-map-box {
    margin-bottom: 24px;
}



/* for larger screens */
@media screen and (min-width: 760px) {

    .contact-items {
        width: 49%;
    }

    .contact-map-container {
        flex-direction: row;

    }

    .contact-map-details {
        width: 30%;
    }

    .contact-map-box {
        width: 69%;
    }

    .send-btn {
        width: clamp(300px, 24.82vw, 476.63px);
        margin-top: 24px;
        margin-left: -24px;
    }


}


/* Messages Container: for empty screens */
.message-container {

    margin: auto;
    padding: 40px;
}

.responsive-img {
    width: 100%;
    height: auto;
    display: block;
    margin-block: 4rem;
}


.partner-marquee {
    width: 100%;
    overflow: hidden;
    background: #fff;
    padding: 20px 0;
    box-sizing: border-box;
}

.partner-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: fit-content;
    /* better than max-content for Safari */
    min-width: 200%;
    /* ensures enough width for smooth loop */
    animation: scroll-left 25s linear infinite;
}

.partner-track {
    will-change: transform;
    transform: translate3d(0, 0, 0);
    /* forces GPU rendering */
}

/* .partner-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: scroll-left 25s linear infinite;
} */


.partner-track img {
    height: 80px;
    width: auto;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
    max-width: 100%;
}


/* .partner-track img {
    height: 80px;  =
    width: auto;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
} */

@keyframes scroll-left {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}


.pdf-dropdown-details {
    position: relative;
    display: inline-block;
    font-family: Arial, sans-serif;
}

.pdf-dropdown-details summary {
    list-style: none;
    background: #ef1c1c;
    color: #fff;
    /* border-radius: 10px; */
    display: flex;
    gap: 8px;
    padding: 11px 14px;
    cursor: pointer;
    text-align: center;
    user-select: none;
}

.pdf-dropdown-details summary::-webkit-details-marker {
    display: none;
}

.pdf-dropdown-details .pdf-menu {
    position: absolute;
    top: 110%;
    left: 0;
    /* min-width: 220px; */
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    z-index: 100;
    margin-top: 6px;
}

.pdf-dropdown-details .pdf-menu a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #222;
    font-size: 15px;
    border-bottom: 1px solid #f1f1f1;
    text-transform: none;
}

.pdf-dropdown-details .pdf-menu a:last-child {
    border-bottom: none;
}

.pdf-dropdown-details .pdf-menu a:hover {
    background: #f8f8f8;
}

.upload-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 64px;

    border: 2px solid var(--pry-color);
    background-color: #ffffff;
    cursor: pointer;
    transition: background-color 0.2s;
    box-sizing: border-box;
}

.upload-container:hover {
    background-color: #f0f9ff;
}

/* The Armenian text styling */
.upload-text {
    color: #333;
    font-size: 16px;
}

/* Hide the default system button */
#pdf-upload {
    display: none;
}

/* Container Layout */
.contact-detail-container {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    padding: 40px;
    background-color: #f5f5f5;
}

/* Individual Card */
.contact-detail-item {
    background-color: #eeeeee;
    /* Matches the light grey in the image */
    border: 1px solid #ddd;
    flex: 1;
    max-width: 380px;
    padding: 50px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* The blue circular border around icons */
.icon-circle {
    width: 75px;
    height: 75px;
    border: 1.5px solid #006699;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    color: #006699;
}

.icon-circle svg {
    width: 35px;
    height: 35px;
}

/* Heading Typography */
.contact-detail-item h3 {
    margin: 0 0 15px 0;
    font-size: 1.3rem;
    font-weight: 800;
    color: #111;
    /* Simulating the condensed look from the image */
}

/* Text Detail */
.contact-detail-item p {
    margin: 0;
    font-size: 1rem;
    color: #444;
    line-height: 1.4;
}

/* Responsive adjustment for tablets/phones */
@media (max-width: 850px) {
    .contact-detail-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-detail-item {
        width: 100%;
    }
}


/* MESSAGE TOAST */
.message-wrapper {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    /* border: 1px solid red; */
}

.message {
    background: #333;
    color: #fff;
    padding: 14px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(-20px);
    animation: slideIn 0.4s forwards, fadeOut 0.4s forwards 4s;
}

.message.success {
    background: #28a745;
}

.message.error {
    background: #dc3545;
}

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

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}






/* FOOTER*/
.footer {
    width: 100%;
    padding-block: 40px;
    background-color: var(--pry-color);
    color: white;
}

.footer-wrap {
    width: 95%;
    margin: auto;
}


ul {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

li {
    text-decoration: none;
    font-size: 16px;
}

.footer_icn {
    width: 28px;
}

.footer-text-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.footer-text-container ul {
    /* text-align: center; */
}


.footer-text-container ul li {
    text-decoration: none;
    list-style-type: none;
    margin-bottom: 32px;
    cursor: pointer;
    display: flex;
    gap: 12px;
}


.footer-text-container ul {
    margin-bottom: 30px;
    /* border: 1px solid red; */
    max-width: 430px;
}

.footer-text-container ul a {
    color: white;
}

.footer-text-container ul a li {
    font-weight: 600;
    font-size: clamp(12px 2vw 20px);
    line-height: 100%;
    letter-spacing: 0%;
}

.footer-heading {
    font-weight: 700;
    font-style: Bold;
    font-size: 28px;
    line-height: 100%;
    letter-spacing: 0%;
    /* padding-left: 32px; */
}

.footer-text ul li {
    text-decoration: none;
    margin: 0;
    padding: 0;
}


/* for larger screens */
@media screen and (min-width: 960px) {

    .footer-text-container {
        flex-direction: row;
    }

    .footer-text-container ul {
        margin-bottom: 0px;
    }

}

/* for more larger screens */
@media screen and (min-width:1400px) {
    .footer-wrap {
        width: 1400px;
    }
}

.footer-social-container {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-contact-icons {
    /* width: 42px; */
    display: inline-flex;
    gap: 6px;
    margin-left: 10px;
    vertical-align: middle;
}

.footer-contact-icons img {
    width: 28px;
    height: 28px;
    cursor: pointer;
}

/* Social media */
.social-media {
    width: fit-content;
    display: flex;

    justify-content: space-between;
}

.contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: fit-content;
}

.contact-icon {
    width: 42px;
    height: 42px;
    margin-right: 16px;
}

.contact-icon img {
    width: 100%;
    height: 100%;
}
/* --- Product Modal Styles --- */
.modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 80%;
    max-width: 1100px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover,
.close-modal:focus {
    color: var(--pry-color);
    text-decoration: none;
}

/* Modal Body Spacing */
#modal-body {
    min-height: 200px;
}

/* Ensure detail partial looks good inside modal */
.product-detail-partial {
    padding: 0;
    margin: 0;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        padding: 15px;
        margin: 10% auto;
    }
}
