.image-cards-section {
    padding: 10px 0;
    background-color: #f8f9fa;
}

.image-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.image-card {
    flex: 1 1 calc(33.333% - 40px);
    min-width: 300px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.image-card:hover {
    transform: translateY(-5px);
}

.card-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.card-content {
    padding: 20px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.card-description {
    color: #666;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .image-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .image-cards-container {
        flex-direction: column;
    }
    
    .image-card {
        flex: 1 1 100%;
    }
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/assets/images/ss-bars-apollon-steel.jpg') no-repeat center center;
    background-size: cover;
    color: var(--light-text);
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: 0;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.btn-primary {
    background-color: #ef6839;
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    color:#fff;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #fff;
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
}

.specs-section {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-bg);
    margin-bottom: 15px;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto;
}

.spec-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.spec-card:hover {
    transform: translateY(-10px);
}

.spec-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.spec-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.spec-card ul {
    padding-left: 20px;
}

.spec-card li {
    margin-bottom: 8px;
    position: relative;
}

.spec-card li:before {
    content: "•";
    color: var(--accent-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 1.8rem;
    }
}

.standards-section {
    padding: 80px 0;
    background-color:#82817f;
}

.standards-badge {
    display: inline-block;
    background: var(--light-bg);
    padding: 10px 20px;
    margin: 5px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.standards-badge:hover {
    background: var(--primary-color);
    color: var(--light-text);
    transform: scale(1.05);
}

.products-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-img {
    height: 200px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-color);
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-bg);
}

.cta-section {
    padding: 80px 0;
    background: #82817f;
    color: var(--light-text);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #fff;
}

.btn-light {
    background-color: var(--light-text);
    color: var(--dark-bg);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-light:hover {
    background-color: var(--accent-color);
    color: var(--light-text);
    transform: translateY(-3px);
}

:root {
    --primary-color: #000;
    --secondary-color: #2e86c1;
    --accent-color: #e74c3c;
    --light-bg: #f8f9fa;
    --dark-bg: #000;
    --text-color: #333;
    --light-text: #fff;
}

/* Add these grid system styles */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-md-4, .col-md-6, .col-lg-3 {
  padding: 0 15px;
  box-sizing: border-box;
}

.col-md-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-lg-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

/* Utility classes */
.mb-4 {
  margin-bottom: 1.5rem;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

.text-center {
  text-align: center;
}

/* Responsive fixes for the grid */
@media (max-width: 992px) {
  .col-md-4,
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 768px) {
  .col-md-4,
  .col-md-6,
  .col-lg-3 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .row {
    margin: 0 -10px;
  }
  
  .col-md-4, .col-md-6, .col-lg-3 {
    padding: 0 10px;
  }
}

/* Reset and base */
* { margin:0; padding:0; box-sizing:border-box; }
body { font-family:Arial,sans-serif; line-height:1.6; color:#333; overflow-x:hidden; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }

/* Top Bar */
.top-bar { background:#000000; color:white; padding:8px 0; font-size:14px; }
.top-bar-container { max-width:1200px; margin:0 auto; padding:0 20px; display:flex; justify-content:space-between; align-items:center; }
.contact-info { display:flex; gap:20px; }
.contact-info a { display:flex; align-items:center; gap:5px; transition:color .3s; }
.contact-info a:hover { color:#e74c3c; }
.language-selector { display:flex; gap:10px; }
.language-option { display:flex; align-items:center; gap:5px; padding:5px 10px; border-radius:4px; transition:background .3s; }
.language-option:hover { background:rgba(255,255,255,0.1); }
.flag { width:20px; height:15px; border-radius:2px; }
.flag.usa { background:linear-gradient(#b22234 0%,#b22234 7.7%,white 7.7%,white 15.4%,#b22234 15.4%,#b22234 23.1%,white 23.1%,white 30.8%,#b22234 30.8%,#b22234 38.5%,white 38.5%,white 46.2%,#b22234 46.2%,#b22234 54%,white 54%,white 61.5%,#b22234 61.5%,#b22234 69.2%,white 69.2%,white 77%,#b22234 77%,#b22234 84.6%,white 84.6%,white 92.3%,#b22234 92.3%,#b22234 100%); position:relative; }
.flag.usa::before { content:""; position:absolute; top:0; left:0; width:40%; height:54%; background:#3c3b6e; }
.flag.usa::after { content:"★"; position:absolute; color:white; font-size:6px; top:2px; left:2px; }
.flag.russia { background:linear-gradient(white 0%,white 33.3%,#0039a6 33.3%,#0039a6 66.6%,#d52b1e 66.6%,#d52b1e 100%); }

/* Header */
header { background:#fff; box-shadow:0 2px 10px rgba(0,0,0,0.1); position:sticky; top:0; z-index:1000; }
.container { max-width:1200px; margin:0 auto; padding:0 20px; position:relative; }
.nav-container { display:flex; justify-content:space-between; align-items:center; height:70px; }
.logo img { max-height:50px; width:auto; }

/* Desktop Nav - FIXED */
.desktop-nav { display:flex; }
.desktop-nav > li { position:relative; }
.desktop-nav > li > a { display:block; padding:10px 15px; font-weight:600; color:#333; font-size:14px; transition:color .3s; }
.desktop-nav > li > a:hover { color:#e74c3c; }

/* Fixed dropdown selector */
.desktop-nav li.menu-item-has-children ul { 
  position:absolute; 
  top:100%; 
  left:0; 
  background:#fff; 
  box-shadow:0 5px 15px rgba(0,0,0,.1); 
  min-width:250px; 
  opacity:0; 
  visibility:hidden; 
  transform:translateY(10px); 
  transition:all .3s ease; 
  z-index:100; 
}

.desktop-nav li.menu-item-has-children:hover ul { 
  opacity:1; 
  visibility:visible; 
  transform:translateY(0); 
}

.desktop-nav li.menu-item-has-children ul li a { 
  display:block; 
  padding:12px 20px; 
  border-bottom:1px solid #f1f1f1; 
  color:#555; 
  transition:.3s; 
}

.desktop-nav li.menu-item-has-children ul li a:hover { 
  background:#f9f9f9; 
  color:#e74c3c; 
  padding-left:25px; 
}

.brochure { background:#e74c3c; color:white!important; padding:10px 15px!important; border-radius:4px; transition:.3s; }
.brochure:hover { background:#c0392b; }

/* Mobile Nav - FIXED */
.mobile-toggle { display:none; flex-direction:column; justify-content:space-between; width:30px; height:21px; cursor:pointer; z-index:1001; }
.mobile-toggle span { display:block; height:3px; width:100%; background:#333; border-radius:3px; transition:.3s; }
#mobile-menu-toggle { display:none; }
#mobile-menu-toggle:checked ~ .mobile-toggle span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
#mobile-menu-toggle:checked ~ .mobile-toggle span:nth-child(2) { opacity:0; }
#mobile-menu-toggle:checked ~ .mobile-toggle span:nth-child(3) { transform:rotate(-45deg) translate(7px,-6px); }
#mobile-menu-toggle:checked ~ .mobile-nav { max-height:1000px; }

.mobile-nav { 
  display:block; 
  position:absolute; 
  top:100%; 
  left:0; 
  width:100%; 
  background:#fff; 
  box-shadow:0 5px 10px rgba(0,0,0,0.1); 
  max-height:0; 
  overflow:hidden; 
  transition:max-height .5s ease; 
  z-index: 1000;
}

.mobile-nav > li { border-bottom:1px solid #f1f1f1; }
.mobile-nav > li > a, .mobile-nav label.submenu-label { 
  display:block; 
  padding:15px 20px; 
  font-weight:600; 
  color:#333; 
  font-size:18px; 
  height:60px; 
  display:flex; 
  align-items:center; 
  cursor:pointer; 
}

/* Fixed mobile submenu system */
.mobile-submenu-toggle { display:none; }

.mobile-submenu { 
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f9f9f9;
}

.mobile-submenu-toggle:checked + label.submenu-label + .mobile-submenu {
  max-height: 1000px;
}

.mobile-submenu-toggle:checked + label.submenu-label::after {
  transform: rotate(45deg);
}

.mobile-nav label.submenu-label { 
  position: relative;
  width: 100%;
}

.mobile-nav label.submenu-label::after { 
  content:"+"; 
  margin-left:auto; 
  font-size:24px; 
  transition:.3s; 
}

.mobile-submenu li a { 
  padding:15px 40px; 
  border-bottom:1px solid #eaeaea; 
  color:#555; 
  font-size:16px; 
  height:55px; 
  display:flex; 
  align-items:center; 
}

.mobile-nav .brochure { 
  background:#e74c3c; 
  color:white!important; 
  margin:15px 20px; 
  text-align:center; 
  border-radius:4px; 
  font-size:18px; 
  height:60px; 
  display:flex; 
  align-items:center; 
  justify-content:center; 
}

/* Content */
.content { padding:50px 20px; max-width:1200px; margin:0 auto; min-height:60vh; }
.content h1 { margin-bottom:20px; color:#333; font-size:28px; }
.content p { margin-bottom:15px; line-height:1.8; font-size:16px; }

/* Bottom Bar */
.bottom-bar { background:#000000; color:white; padding:20px 0; text-align:center; font-size:14px; }
.theme-clr { color:#e74c3c; }

/* WhatsApp */
.whatshapp { position:fixed; bottom:90px; left:15px; z-index:1000; }
.whatshapp .float { width:50px; height:50px; background:#25d366; color:#fff; border-radius:50%; text-align:center; box-shadow:2px 2px 10px rgba(0,0,0,.3); display:flex; align-items:center; justify-content:center; animation:pulse 1.5s infinite; transition:transform .2s; }
.whatshapp .float:hover { transform:scale(1.15); background:#20ba5a; }
.whatshapp .my-float { font-size:30px; color:#fff; }
@keyframes pulse { 0%{transform:scale(1); box-shadow:0 0 0 0 rgba(37,211,102,.6);} 70%{transform:scale(1.1); box-shadow:0 0 0 15px rgba(37,211,102,0);} 100%{transform:scale(1); box-shadow:0 0 0 0 rgba(37,211,102,0);} }

/* Responsive */
@media(max-width:992px){ .desktop-nav{display:none;} .mobile-toggle{display:flex;} .top-bar-container{flex-direction:column; gap:10px;} }
@media(max-width:768px){ .logo img{max-height:40px;} .mobile-nav > li > a,.mobile-nav label.submenu-label{font-size:20px;height:65px;} .mobile-submenu li a{font-size:18px;height:60px;} }
@media(max-width:480px){ .mobile-nav > li > a,.mobile-nav label.submenu-label{font-size:18px;height:60px;} .mobile-submenu li a{font-size:16px;height:55px;} }

