/* ============================================
   NORVEX GROUP - Commercial Refrigeration
   Brand Colors:
   Navy: #2C317A (44, 49, 122)
   Azure: #359BD3 (53, 155, 211)
   Light Azure: #D2EAF4 (210, 234, 244)
   White: #FFFFFF
   ============================================ */

/* ===== CSS Variables ===== */

.nav-dropdown{
    position:relative;
}

.dropdown-arrow{
    font-size:10px;
    margin-left:6px;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    min-width:250px;
    background:var(--white);
    border-radius:8px;
    box-shadow:var(--shadow);
    padding:10px 0;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:var(--transition);
    z-index:999;
}

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

.dropdown-menu a{
    display:block;
    padding:12px 20px;
    font-size:14px;
    font-weight:500;
    color:var(--dark);
    transition:var(--transition);
}

.dropdown-menu a:hover{
    background:var(--light-azure);
    color:var(--azure);
}
:root {
  --navy: #2C317A;
  --azure: #359BD3;
  --light-azure: #D2EAF4;
  --white: #FFFFFF;
  --dark: #1a1a2e;
  --gray: #6b7280;
  --light-gray: #f3f4f6;
  --border-gray: #e5e7eb;
  --shadow: 0 4px 20px rgba(44, 49, 122, 0.15);
  --shadow-lg: 0 10px 40px rgba(44, 49, 122, 0.2);
  --transition: all 0.3s ease;
  --font-headline: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--dark);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-fluid {
  width: 100%;
  padding: 0 24px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--azure);
  color: var(--white);
  border-color: var(--azure);
}

.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-quote:hover{
  background: #000080;
  border-color: #000080;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline {
  background: transparent;
  color: var(--azure);
  border-color: var(--azure);
}

.btn-outline:hover {
  background: var(--azure);
  color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover {
  background: var(--azure);
  border-color: var(--azure);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
}

/* ===== Section Headers ===== */
.section-header {
  margin-bottom: 48px;
}

.section-header h2 {
  font-family: var(--font-headline);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-header h2 span {
  font-weight: 300;
}

.section-header .line {
  width: 60px;
  height: 4px;
  background: var(--azure);
  margin-top: 16px;
}

.section-subtitle {
  color: var(--gray);
  font-size: 16px;
  margin-top: 12px;
  max-width: 600px;
}

/* ===== Header & Navigation ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 85px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.logo-text {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--azure);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--azure);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--azure);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.search-btn,
.menu-toggle {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  transition: var(--transition);
  border-radius: 4px;
}

.search-btn:hover,
.menu-toggle:hover {
  background: var(--light-azure);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}



/* ===== Mobile Menu ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--white);
  z-index: 1001;
  padding: 100px 40px 40px;
  transition: right 0.4s ease;
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--border-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-nav-link:hover {
  color: var(--azure);
}

.mobile-dropdown-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
  padding: 4px;
}

.mobile-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-dropdown.open {
  max-height: 500px;
}

.mobile-dropdown a {
  display: block;
  padding: 12px 0 12px 20px;
  font-size: 15px;
  color: var(--gray);
  border-bottom: 1px solid var(--light-gray);
}

.mobile-dropdown a:hover {
  color: var(--azure);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  overflow:hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: #000000;
  opacity: 0.5;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  color: var(--white);
}

.hero-label {
  display: inline-block;
  padding: 8px 20px;
  background: var(--azure);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 4px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-headline);
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.hero-title span {
  font-weight: 300;
}

.hero-desc {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== Page Hero (smaller) ===== */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 80px;
}

.page-hero .hero-title {
  font-size: 48px;
}

/* Breadcrumb */
.breadcrumb {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.breadcrumb a {
  color: rgba(255,255,255,0.9);
}

.breadcrumb a:hover {
  color: var(--white);
}

/* ===== Product Categories Grid ===== */
.product-categories {
  padding: 80px 0;
  background: var(--white);
}

.category-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.category-bg{
    height:300px !important;
    min-height:300px !important;
    border-radius:18px;
}

.category-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--azure);
  transform: scaleX(0);
  transition: var(--transition);
}

.category-card:hover {
  border-color: var(--azure);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.category-card:hover::before {
  transform: scaleX(1);
}

.category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-azure);
  border-radius: 12px;
  color: var(--navy);
  transition: var(--transition);
}

.category-img{
  position:absolute;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.6s ease;
}

.category-img-main{
  top:0;
  left:0;
  z-index:1;
}

.category-img-hover{
  top:-100%;
  left:0;
  z-index:2;

}

.category-card:hover .category-icon {
  background: var(--azure);
  color: var(--white);
}

.category-icon svg {
  width: 40px;
  height: 40px;
}

.category-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: black;
  margin-bottom: 8px;
}

.category-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
}

.categories-card-title{
  font-size: 50px;
}

/* ===== Product Showcase ===== */
.product-showcase {
  padding: 0;
}

.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.showcase-row:nth-child(even) .showcase-image {
  order: 2;
}

.showcase-row:nth-child(even) .showcase-content {
  order: 1;
}

.showcase-image {
  position: relative;
  overflow: hidden;
}

.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.showcase-row:hover .showcase-image img {
  transform: scale(1.05);
}

.showcase-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  background: var(--light-gray);
}

.showcase-content h3 {
  font-family: var(--font-headline);
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.showcase-content p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ===== Partners Sidebar ===== */
.partners-section {
  padding: 80px 0;
  background: var(--light-azure);
}

.partners-section .section-header h2 {
  color: var(--navy);
}

.partners-layout {
  grid-template-columns: 250px 1fr;
  gap: 40px;
  align-items: start;
}

.partners-sidebar {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: var(--shadow);
  position: sticky;
  top: 100px;
}

.partners-sidebar h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--azure);
}

.partner-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.partner-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border-radius: 8px;
  transition: var(--transition);
  cursor: pointer;
}

.partner-item:hover {
  background: var(--light-azure);
}

.partner-logo {
  width: 50px;
  height: 50px;
  background: var(--light-gray);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--gray);
  text-align: center;
  overflow: hidden;
  flex-shrink: 0;
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.partner-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.partners-main {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.partner-card {
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.partner-card:hover {
  border-color: var(--azure);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.partner-card .partner-logo-large {
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gray);
  overflow: hidden;
}

.partner-card .partner-logo-large img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.partner-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.partner-card p {
  font-size: 13px;
  color: var(--gray);
}

/* ===== Products Page ===== */
.products-page {
  padding: 60px 0;
}

.products-layout {
  display: grid;
  gap: 40px;
}


/* Product Grid */
.products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.products-count {
  font-size: 14px;
  color: var(--gray);
}

.products-sort {
  padding: 10px 16px;
  border: 1px solid var(--border-gray);
  border-radius: 6px;
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  cursor: pointer;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.product-card{
    display: flex;
    align-items: center;
    gap: 25px;

    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-gray);
    box-shadow: 0 2px 8px rgba(0,0,0,.06);

    padding: 20px;
}

.product-img{
  display: flex;
  justify-content: center;
}


.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--azure);
}

.product-image{
    width: 220px;
    min-width: 220px;

    display:flex;
    justify-content:center;
    align-items:center;

    background: transparent;
    overflow: hidden;
}

.product-image img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 14px;
  background: var(--azure);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
}

.product-badge.new {
  background: #10b981;
}

.product-badge.sale {
  background: #ef4444;
}

.product-info{
    flex:1;
    padding:0;
    margin-top: -52px;
}

.product-category-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--azure);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.product-info h3 {
  margin-top: 65px;
  font-size: 21px;
  color: var(--navy);
  margin-bottom: 8px;
}

.product-info p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 16px;
}

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

.product-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
}

.product-price .old {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
  text-decoration: line-through;
  margin-left: 8px;
}

/* ===== About Page ===== */
.about-section {
  padding: 60px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: 50px;
  overflow: hidden;
}

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

.about-content h2 {
  font-family: var(--font-headline);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}


/* ===== Contact Page ===== */
.contact-section {
  padding: 60px 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-family: var(--font-headline);
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--light-gray);
  border-radius: 12px;
  transition: var(--transition);
}

.contact-card:hover {
  background: var(--light-azure);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--azure);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 14px;
  color: var(--gray);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-gray);
  border-radius: 8px;
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  font-family: var(--font-body);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--azure);
  box-shadow: 0 0 0 3px rgba(53, 155, 211, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Map */
.map-section {
  padding: 0 0 80px;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
  background: var(--light-gray);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== Footer ===== */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .logo-text {
  color: var(--white);
  font-size: 24px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.social-link {
  width: 42px;
  height: 42px;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background: var(--azure);
  transform: translateY(-3px);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  font-size: 14px;
  opacity: 0.7;
  transition: var(--transition);
}

.footer-column ul li a:hover {
  opacity: 1;
  color: var(--azure);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  opacity: 0.7;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--azure);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 13px;
  opacity: 0.5;
}

/* ===== Scroll to Top ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--azure);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--navy);
  transform: translateY(-4px);
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


.category-filter-mobile{
  visibility: hidden;
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .partners-layout {
    grid-template-columns: 200px 1fr;
  }
}

@media (max-width: 992px) {
  .nav {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .hero-title {
    font-size: 52px;
  }
  
  .showcase-row {
    grid-template-columns: 1fr;
  }
  
  .showcase-row:nth-child(even) .showcase-image,
  .showcase-row:nth-child(even) .showcase-content {
    order: unset;
  }
  
  .showcase-image {
    height: 300px;
  }
  
  .showcase-content {
    padding: 40px;
  }
  
  .partners-layout {
    grid-template-columns: 1fr;
  }
  
  .partners-sidebar {
    position: static;
  }
  
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .products-layout {
    grid-template-columns: 1fr;
  }
  
  .filter-sidebar {
    position: static;
  }
  
  .product-detail-layout {
    grid-template-columns: 1fr;
  }
  
  .product-gallery {
    position: static;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .mission-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 50px;
  }
  
  .timeline-dot {
    left: 20px;
  }
  
  .timeline-year {
    font-size: 36px;
  }

  .slider-btn{
    display: none;
  }

  .hero-desc{
    margin-bottom: 0px;
  }

  .products-layout{
    margin-top: -160px;
  }
  
}




/* ===== Mobile Responsive Design ===== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 40px;
  }
  
  .hero-desc {
    font-size: 16px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .partners-grid {
    grid-template-columns: 1fr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .showcase-content {
    padding: 32px 24px;
  }
  
  .showcase-content h3 {
    font-size: 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .page-hero .hero-title {
    font-size: 36px;
  }
  
  .container {
    padding: 0 16px;
  }

  .hero-scroll{
    bottom: 20px;
  }

  .hero-desc{
    margin-bottom: 25px;
  }

  .categories-card-title{
    font-size: 20px;
  }

  .category-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:0px;
  }  

  .partner-card{
    padding:6px !important;
    width:100%;
    box-sizing:border-box;
  }

  .category-bg{
    height:170px !important;
    min-height:170px !important;
    border-radius:12px;
    overflow:hidden;
  }

  .hero-bg{
    display:flex;
    justify-content:center;
    align-items:center;
    background:#fff;
  }

  .hero-bg .category-img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:transform .6s ease;
  }

  .categories-card-title{
    font-size:14px !important;
    line-height:1.2;
    text-align:center;
  }

  .partner-card .container{
    padding:0 10px;
  }

  .partner-card .hero-content{
    max-width:100%;
  }

  .partners-main{
    width:100%;
    padding:18px 15px;
    box-sizing:border-box;
  }

  .partners-grid{
    width:100% !important;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
  }

  .partners-grid .partner-card{
    display:flex !important;
    justify-content:center;
    align-items:center;
    padding:15px;
    min-height:120px;
    border-radius:12px;
  }

  .partners-grid .partner-card img{
    width:100%;
    max-width:120px;
    height:auto;
    object-fit:contain;
    display:block;
  }

  .counter{
    font-size:32px !important;
  }

  .counter + div{
    font-size:12px !important;
    letter-spacing:1px !important;
    margin-top:6px !important;
  }

  .products-page .product-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
  }

  /* Product Card */
  .products-page .product-card{
    display:flex;
    flex-direction:column;
    padding:8px;
    border-radius:12px;
    overflow:hidden;
  }

  /* Product Image */
  .products-page .product-image{
    width:100%;
    height:140px;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:10px;
  }

  .products-page .product-image img{
    width:100% !important;
    height:85%;
    object-fit:contain;
  }

  /* Product Info */
  .products-page .product-info{
    width:100%;
    padding:0;
  }

  .products-page .product-info h3{
    font-size:14px;
    line-height:1.3;
    margin-bottom:6px;
  }

  .products-page .product-info p{
    font-size:11px;
    margin-bottom: 0px;

  }

  .partners-layout{
    width: 95% !important;
    margin-left: 2% !important;
  }

  .h2-qoute{
    font-size: 25px !important  ;
  }

  .span-qoute{
    font-size: 15px !important;
  }

  .btn-quote{
    width: 65% !important;
  }

  .btn2-quote{
    margin-top: 10px !important;
    width: 65% !important;
  }

  .hero-slider-width{
    height:55vh;
    min-height:auto;
  }

  .hero-slider-width .slide img{
        width:100%;
        height:100%;
        object-fit: cover;
    }

  .welcome-norvex{
    margin-top: 70px;
  }

  .hero-img-bg{
    height: 30vh;
    min-height: 300px;
  }

  .footer-bottom{
    display: flow;
  }

  .designed-by{
    margin-top: 10px;
  }
}



@media (max-width: 480px) {
  .hero-title {
    font-size: 32px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .mobile-menu {
    max-width: 100%;
    padding: 100px 24px 40px;
  }

}




/* hero slider */

.hero-slider{
    position:absolute;
    inset:0;
    overflow:hidden;
    z-index:1;
}

.slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity .8s ease;
}

.slide.active{
    opacity:1;
}

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

.slider-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.2);
    color:#fff;
    font-size:28px;
    cursor:pointer;
    z-index:10;
    transition:.3s;
    backdrop-filter:blur(5px);
}

.slider-btn:hover{
    background:#359BD3;
}

.prev{
    left:25px;
}

.next{
    right:25px;
}



/* ===== Mobile Products Dropdown ===== */

.mobile-products-dropdown{
    width:100%;
}

.mobile-products-dropdown-btn{

    display:flex;
    justify-content:space-between;
    align-items:center;

    width:100%;

    background:none;
    border:none;

    cursor:pointer;

    text-align:left;

    color:inherit;
    font:inherit;
    padding:0;
}

.mobile-products-dropdown-content{

    display:none;

}

.mobile-products-dropdown-content.active{

    display:block;

}

.mobile-products-dropdown-content .mobile-nav-link{

    padding-left:35px;

}

.mobile-products-arrow{

    transition:transform .3s ease;

}

.mobile-products-arrow.active{

    transform:rotate(180deg);

}





/* =========================================
   Mobile Overflow Fix
========================================= */

@media only screen and (max-width: 430px){

    html,
    body{
        width:100%;
        max-width:100%;
        overflow-x:hidden;
    }

    .product-categories{
        overflow:hidden;
    }



    .partner-card{
        width:100%;
        max-width:100%;
        box-sizing:border-box;
        overflow:hidden;
    }

    .partner-card .hero{
        width:100%;
        max-width:100%;
        min-height:150px !important;
        height:150px !important;
    }

    .partner-card .container{
        max-width:100%;
        width:100%;
        padding:0 16px;
    }

    .partner-card .hero-content{
        max-width:100%;
    }

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

}

@media only screen and (max-width:430px){

    img{
        max-width:100%;
        height:auto;
    }

}



/* ============================
   Category Hover Images
============================ */

.hero-bg{
  position:absolute;
  inset:0;
  overflow:hidden;
}

.hero-bg .category-img{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .6s ease;
}

.hero-bg .category-img-main{
  z-index:1;
  transform:translateY(0);
}

.hero-bg .category-img-hover{
  z-index:2;
  transform:translateY(-100%);
}

.no-card-hover:hover{
  transform:none !important;
  background:transparent !important;
  border-color:transparent !important;
  box-shadow:none !important;
}


.partner-card:hover .category-img-hover{
  transform:translateY(0);
}

.partner-card:hover .category-img-main{
  transform:scale(1.05);
}


@media (hover:none){

    .partner-card:active .category-img-hover{
        transform:translateY(0);
    }

}


/* ===========================
   NORVEX CATALOG DOWNLOAD
=========================== */

.catalog-download-section{
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0px auto 40px;
}

.catalog-download-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    padding:16px 38px;

    background:var(--azure);
    color:var(--white);

    text-decoration:none;
    font-size:16px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;

    border-radius:8px;

    transition:all .3s ease;
    box-shadow:0 8px 25px rgba(0,0,0,.15);
}

.catalog-download-btn:hover{
    background:var(--navy);
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(0,0,0,.2);
}

.catalog-download-btn svg{
    transition:transform .3s ease;
}

.designer-name{
    color: #1ee6ff;
    font-weight: 600;
}

.designer-name:hover{
  color: #47b2bf;
}

@media (max-width:768px){

    .catalog-download-wrapper{
        margin:35px 0;
    }

    .catalog-download-btn{
        padding:12px 22px !important;
        font-size:10px !important;
        gap:8px !important;
        border-radius:35px;
    }

    .catalog-download-btn svg{
        width:16px !important;
        height:16px !important;
    }

}