/* Alap stílusok */
:root {
    --primary-color: #fe7244;
    --secondary-color: #6f7075;
    --dark-color: #07000d;
    --light-color: #f8f9fa;
}

body {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 700;
}
a{
    color: rgb(254, 114, 68);
  }
/* Fejléc */
.header {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-bar {
    /*background-color: var(--light-color);*/
    border-bottom: 1px solid #eaeaea;
}

.logo img {
    max-height: 60px;
}

.phone-number {
    color: var(--dark-color);
    font-size: 1.1rem;
}

.btn-language {
    padding: 5px;
    margin: 0 2px;
    border-radius: 50% !important;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-language.active {
    /*border-color: var(--primary-color);*/
    filter:opacity(0.5);
    border:none;
}

.btn-language img {
    width: 15px;
    height: 15px;
    object-fit: cover;
}

.btn-primary {
    background-color: #fff;
    border-color: var(--primary-color);
    font-weight: 600;
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #e65a2e;
    border-color: #e65a2e;
}

/* Navigáció */
.main-nav {
    background-color: white;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.5rem 1rem;
    margin: 0 2px;
    transition: all 0.3s ease;
}

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

/* Hero szekció */
.hero-section {
    margin-top: 1px;
}

.hero-image {
    background-image: linear-gradient(rgba(7, 0, 13, 0.7), rgba(7, 0, 13, 0.5)), url('img/gold.png');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: white;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Fő tartalom */
.main-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    font-style: italic;
    color: #555;
}

.hlavna.hright {
    /*border-left: 4px solid var(--secondary-color);
    padding-left: 20px;*/
    border-right: 4px solid var(--primary-color);
    padding-right: 20px;
    color: #555;
}

.hlavna.hright h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Szolgáltatások */
.service-card, .product-card {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border: 1px solid #eee;
}

.service-card:hover, .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-image, .product-image {
    overflow: hidden;
}

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

.service-card:hover .service-image img,
.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card .product-image img {
    height: 250px;
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Lezáró szekció */
.closing {
    background-color: #f9f9f9;
}

/* Lábléc */
.footer {
    background-color: #fff;
    color: #000!important;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
}

/* Reszponzív design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .navbar-nav .nav-link {
        padding: 0.5rem;
        margin: 2px 0;
    }

    .phone-number {
        font-size: 0.9rem;
    }

    .btn-primary {
        padding: 0.375rem 0.75rem;
        font-size: 0.9rem;
    }
}
p{
  font-size:1.3rem!important;
}
body {
      background: linear-gradient( 150deg, #fff 0%, #fff8ef 20%, #fff 40%, #fff8ef 60%, #fffbf6 80%, #fff 100% );
      /*
      background-image:
          repeating-linear-gradient(
              0deg,
              transparent,
              transparent 30px,
              rgba(245, 158, 11, 0.1) 30px,
              rgba(245, 158, 11, 0.1) 31px
          ),
          repeating-linear-gradient(
              90deg,
              transparent,
              transparent 50px,
              rgba(212, 175, 55, 0.1) 50px,
              rgba(212, 175, 55, 0.1) 51px
          );
          */
      background-blend-mode: multiply;
      background-attachment: fixed;
      min-height: 100vh;
  }
.footer-logo img{
  max-width: 150px;
}
body.gold-theme {
    /* Alap halvány krémszín */
    background: linear-gradient(
        145deg,
        #fffdf8 0%,      /* Nagyon világos krémsárga */
        #fffefb 25%,     /* Majdnem fehér */
        #fffdf9 50%,     /* Finom meleg árnyalat */
        #fffefc 75%,     /* Extra halvány */
        #ffffff 100%     /* Tiszta fehér */
    );

    /* Alig észrevehető arany fények */
    background-image:
        /* Nagyon finom fénypont bal fent */
        radial-gradient(
            ellipse at 10% 15%,
            rgba(250, 204, 21, 0.015) 0%,
            transparent 60%
        ),
        /* Nagyon finom fénypont jobb lent */
        radial-gradient(
            ellipse at 90% 85%,
            rgba(245, 158, 11, 0.01) 0%,
            transparent 60%
        ),
        /* Finom középső fény */
        radial-gradient(
            circle at 50% 50%,
            rgba(255, 215, 0, 0.008) 0%,
            transparent 50%
        );

    background-attachment: fixed;
    background-blend-mode: overlay;
    min-height: 100vh;
    background-size: 100% 100%, 100% 100%, 100% 100%;
}

/* Extra finom arany textúra halvány csíkokkal */
.gold-theme.textured {
    background-image:
        /* Finom függőleges csíkok - alig láthatóak */
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 199px,
            rgba(251, 191, 36, 0.006) 199px,
            rgba(251, 191, 36, 0.006) 200px
        ),
        /* Finom vízszintes csíkok - alig láthatóak */
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 149px,
            rgba(245, 158, 11, 0.004) 149px,
            rgba(245, 158, 11, 0.004) 150px
        ),
        /* Alap gradient */
        linear-gradient(
            145deg,
            #fffdf8 0%,
            #fffefb 100%
        );

    background-size:
        200px 100%,    /* Függőleges csíkok */
        100% 150px,    /* Vízszintes csíkok */
        100% 100%;     /* Alap gradient */
}
body.silver-theme {
    /* Alap nagyon világos szürke árnyalatok */
    background: linear-gradient(
        145deg,
        #fcfdfe 0%,      /* Extra világos szürkésfehér */
        #fafbfd 25%,     /* Halvány szürke */
        #f8f9fb 50%,     /* Finom hűvös árnyalat */
        #f9fafc 75%,     /* Majdnem fehér */
        #ffffff 100%     /* Tiszta fehér */
    );

    /* Alig észrevehető ezüst fények */
    background-image:
        /* Nagyon finom fénypont bal fent */
        radial-gradient(
            ellipse at 15% 20%,
            rgba(209, 213, 219, 0.015) 0%,
            transparent 60%
        ),
        /* Nagyon finom fénypont jobb lent */
        radial-gradient(
            ellipse at 85% 80%,
            rgba(203, 213, 225, 0.01) 0%,
            transparent 60%
        ),
        /* Finom középső fény */
        radial-gradient(
            circle at 50% 50%,
            rgba(192, 192, 192, 0.008) 0%,
            transparent 50%
        );

    background-attachment: fixed;
    background-blend-mode: overlay;
    min-height: 100vh;
    background-size: 100% 100%, 100% 100%, 100% 100%;
}

/* Extra finom ezüst textúra halvány csíkokkal */
.silver-theme.textured, .bg-light {
    background-image:
        /* Finom függőleges csíkok - alig láthatóak */
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 249px,
            rgba(148, 163, 184, 0.005) 249px,
            rgba(148, 163, 184, 0.005) 250px
        ),
        /* Finom vízszintes csíkok - alig láthatóak */
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 199px,
            rgba(203, 213, 225, 0.003) 199px,
            rgba(203, 213, 225, 0.003) 200px
        ),
        /* Alap gradient */
        linear-gradient(
            145deg,
            #fcfdfe 0%,
            #ffffff 100%
        );

    background-size:
        250px 100%,    /* Függőleges csíkok */
        100% 200px,    /* Vízszintes csíkok */
        100% 100%;     /* Alap gradient */
}
.service-card, .product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-body, .product-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.service-body p, . p {
    flex: 1;
}

.cta-position {
    margin-top: auto;
    padding-top: 20px;
    text-align: right;
}

/* Reszponzív beállítások */
@media (max-width: 768px) {
    .cta-position {
        text-align: center;
    }
}
/* ===== ALOLDALAK KÖZÖS STÍLUSAI ===== */

/* Hero Section - Általános */
.hero-section {
    position: relative;
    background-color: #1a1a1a;
    color: white;
    margin-bottom: 3rem;
    overflow: hidden;
}
.hero-section .container {
  position: relative;
  z-index: 2; /* a szöveg a blur felett lesz */
}

.hero-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('http://aupder.sk/new/img/material1.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(8px); /* csak a háttérkép lesz elmosva */
  z-index: 1;
}
.hero-image-main::before{
  background-image: url('http://aupder.sk/new/img/gold.png');
  filter: blur(0px); /* csak a háttérkép lesz elmosva */
}
.hero-image-chemia::before{
  background-image: url('http://aupder.sk/new/img/chemikalie1.jpg');
}
.hero-image-priemysel::before{
  background-image: url('http://aupder.sk/new/img/material1.jpg');
}
.hero-image-recyklacia::before{
  background-image: url('http://aupder.sk/new/img/gold_recycling.png');
}
.hero-image-dental::before{
  background-image: url('http://aupder.sk/new/img/chemikalie.jpg');
}
.hero-image-klenoty::before{
  background-image: url('http://aupder.sk/new/img/material.jpg');
}
.hero-image-investicne-zlato::before{
  background-image: url('http://aupder.sk/new/img/gold.png');
}
.hero-image-zamestnanie::before{
  background-image: url('http://aupder.sk/new/img/gold.png');
}
.hero-image-vykup-drahych-kovov::before{
  background-image: url('http://aupder.sk/new/img/gold_buying.png');
}
.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: white;
}

.hero-subtitle {
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 8px;
    width: auto;
    display:inline-block;
    backdrop-filter: blur(5px);
}

.hero-text {
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 0;
    color: #f8f9fa;
}

/* Content Container */
.content-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 1.5rem;
}

/* ===== CHÉMIA OLDAL STÍLUSAI ===== */

/* Chemistry Cards */
.chemistry-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.chemistry-card {
    background: white;
    border-radius: 12px;
    padding: 1.8rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.chemistry-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.chemistry-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.8rem;
}

.chemistry-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    flex: 1;
}

.chemistry-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-left: 1rem;
    color: white;
    flex-shrink: 0;
}

.chemistry-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.chemistry-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
    font-size: 1.1rem;
    position: relative;
}

.chemistry-list li:last-child {
    border-bottom: none;
}



.chemistry-card .chemistry-icon {
    background: var(--primary-color);
}


/* ===== PRIEMYSEL OLDAL STÍLUSAI ===== */

.industry-categories {
    margin-top: 3rem;
}

.industry-category-card {
    background: white;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-left: var(--primary-color);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.industry-category-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.category-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.category-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.category-icon {
    width: 50px;
    height: 50px;
    margin-left:2rem;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1.3rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.product-group {
    background: #f8f9fa;
    padding: 1.2rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.product-group-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.8rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.product-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-list li {
    padding: 0.4rem 0;
    color: #6c757d;
    font-size: 0.95rem;
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 0.8rem;
}

.spec-item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 5px;
}

/* Downloads Section - Priemysel */
.download-category {
    margin-bottom: 3rem;
}

.category-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #dee2e6;
}

.subsection-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #495057;
    margin: 1.5rem 0 1rem 0;
}

.downloads-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.2rem;
}

.download-item {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.download-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.download-item.small {
    padding: 1rem;
}

.download-icon {
    margin-right: 1rem;
    color: #dc3545;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.download-item.small .download-icon {
    font-size: 1.2rem;
}

.download-info {
    flex: 1;
}

.download-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.3rem 0;
}

.download-item.small .download-title {
    font-size: 0.95rem;
}

.download-size {
    color: #6c757d;
    font-size: 0.85rem;
    margin: 0 0 0.8rem 0;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: linear-gradient(135deg, #c82333, #bd2130);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
}

.download-btn.small {
    padding: 0.3rem 0.8rem;
    font-size: 0.85rem;
}

/* ===== RECYKLÁCIA OLDAL STÍLUSAI ===== */

.recycling-intro-card {
    background: linear-gradient(135deg, #1abc9c, #16a085);
    color: white;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.recycling-intro-card .intro-icon {
    font-size: 3rem;
    margin-right: 2rem;
    flex-shrink: 0;
}

.waste-categories {
    margin-top: 3rem;
}

.waste-category-card {
    background: white;
    padding: 1.8rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    transition: all 0.3s ease;
}

.waste-category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.waste-category-card .category-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
}

.waste-category-card .category-icon {
    width: 50px;
    height: 50px;
    color: #fff!important; background: var(--primary-color)!important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.3rem;
}

.waste-category-card:nth-child(1) { border-left-color: var(--primary-color); }
.waste-category-card.category-icon { color: #fff!important; background: var(--primary-color)!important; }

.waste-category-card:nth-child(2) { border-right-color: var(--primary-color); }

.waste-category-card:nth-child(3) { border-left-color: var(--primary-color); }

.waste-category-card:nth-child(4) { border-right-color: var(--primary-color); }

.waste-category-card:nth-child(5) { border-left-color: var(--primary-color); }

.waste-category-card:nth-child(6) { border-right-color: var(--primary-color); }

.waste-category-card:nth-child(7) { border-left-color: var(--primary-color); }

.waste-category-card:nth-child(8) { border-right-color: var(--primary-color); }

.waste-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 0.8rem;
}

.waste-item {
    display: flex;
    align-items: center;
    padding: 0.6rem 0;
}

.contact-cta .cta-card {
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
.cta-card .btn-outline-primary:hover {
  background-color: #fff;
  color: var(--primary-color) !important;
}
.cta-card .btn-outline-primary {
  color: #fff;
  border-color: #fff;
}

/* ===== DENTÁL OLDAL STÍLUSAI ===== */

.dental-intro-card {
    background: white;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    border-right: 3px solid var(--primary-color);
}

.dental-intro-card .intro-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-right: 2rem;
    flex-shrink: 0;
}

.ce-certificate {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    padding: 1rem;
}

.ce-badge {
    background: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0;
}

.ce-text {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-category-card {
    background: white;
    border-radius: 10px;
    padding: 1.8rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.product-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.product-item {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.product-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.product-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    flex-shrink: 0;
}

.product-name {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.2rem 0;
}

.product-desc {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 0;
}

.standards-list {
    margin-top: 1rem;
}

.standard-item {
    background: #f8f9fa;
    padding: 1.2rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.standard-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    margin-right: 1rem;
    flex-shrink: 0;
}

.standard-content {
    flex: 1;
}

.standard-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.3rem 0;
}

.standard-desc {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.amalgam-products {
    margin-top: 1rem;
}

.amalgam-product {
    background: #f8f9fa;
    padding: 1.2rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    position: relative;
}

.amalgam-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
}

.amalgam-desc {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.amalgam-tag, .product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    color: var(--primary-color);
    padding: 0.2rem 0.8rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--primary-color);
}
.product-badge{
  top:-5px;
  right:-5px;
}
.quality-section .quality-card {
    background: var(--primary-color);    color: white;
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.quality-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.quality-feature {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* ===== KLENOTY OLDAL STÍLUSAI ===== */

.jewelry-intro-card {
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.jewelry-intro-card .intro-icon {
    font-size: 3.5rem;
    margin-right: 2rem;
    flex-shrink: 0;
}

.experience-card {
    background: white;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    border-left: 5px solid var(--primary-color);
}

.experience-icon {
    color: var(--primary-color);
    margin-right: 2rem;
    flex-shrink: 0;
}

.jewelry-products .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.alloy-types {
    margin-top: 1rem;
}

.alloy-type {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.alloy-color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 1rem;
    flex-shrink: 0;
}

.alloy-color.gold { background: var(--primary-color); }
.alloy-color.silver { background: linear-gradient(135deg, #c0c0c0, #e8e8e8); }
.alloy-color.mixed { background: linear-gradient(135deg, var(--primary-color), #c0c0c0); }

.services-list {
    margin-top: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #dee2e6;
}

.service-item:last-child {
    border-bottom: none;
}

.service-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.eshop-cta .eshop-card {
    background: var(--primary-color);    color: white;
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
}

.eshop-icon {
    font-size: 3rem;
    margin-right: 2rem;
    flex-shrink: 0;
}

.eshop-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.eshop-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.quality-promise .promise-card {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--primary-color);}

.promise-points {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.promise-point {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

/* ===== INVESTIČNÉ ZLATO OLDAL STÍLUSAI ===== */

.investment-intro-card {
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.investment-intro-card .intro-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.investment-intro-card .intro-title {
    color: #fff;
    margin-bottom: 1.5rem;
}

.investment-products {
    margin-top: 3rem;
}

.investment-category-card {
    background: white;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
    border:none;
    border-left:3px solid var(--primary-color);
}

.product-display {
    display: grid;
    align-items: start;
}

.product-display.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.product-display.reverse > * {
    direction: ltr;
}


.product-item {
    background: #f8f9fa;
    padding: 1.2rem;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.product-item:hover {
    background: #e9ecef;
    transform: translateY(-3px);
}

.product-item.highlight {
    background: var(--primary-color);
    color: white;
}

.product-weight {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.product-type {
    font-size: 0.8rem;
    color: #6c757d;
    font-style: italic;
}

.tax-info-card {
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.tax-icon {
    font-size: 2.5rem;
    margin-right: 2rem;
    flex-shrink: 0;
}

.tax-details {
    margin-top: 1rem;
}

.tax-detail {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.location-card {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.location-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.location-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.location-address {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.location-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.location-link:hover {
    text-decoration: underline;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.benefit-text {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== VÝKUP DRAHÝCH KOVOV OLDAL STÍLUSAI ===== */

.buyback-intro-card {
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.buyback-intro-card .intro-icon {
    font-size: 3rem;
    margin-right: 2rem;
    flex-shrink: 0;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.material-card {
    background: white;
    border-radius: 10px;
    padding: 1.8rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.material-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.material-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.material-icon {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-size: 1.3rem;
}

.gold-card .material-icon, .platinum-card .material-icon, .silver-card .material-icon, .palladium-card .material-icon, .rhodium-card .material-icon { color: var(--primary-color); }

.material-items {
    margin-top: 1rem;
}

.material-item {
    display: flex;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f1f1f1;
}

.material-item:last-child {
    border-bottom: none;
}

/* Price Table */
.price-table-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.price-table {
    margin-bottom: 0;
}

.price-table thead th {
    background: #2c3e50;
    color: white;
    border: none;
    font-weight: 600;
    padding: 1rem 1.5rem;
}

.price-row {
    transition: all 0.3s ease;
}

.price-row:hover {
    background: #f8f9fa;
}

.metal-info {
    display: flex;
    align-items: center;
}

.metal-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    flex-shrink: 0;
}

.silver-icon,
.platinum-icon,
.rhodium-icon,
.palladium-icon,
.gold-icon { background: var(--primary-color); }


.metal-details {
    flex: 1;
}

.metal-code {
    display: inline-block;
    background: #f1f1f1;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    color: #2c3e50;
}

.price-from, .price-to {
    font-weight: 600;
    font-size: 1.1rem;
}

.price-from {
    color: #e74c3c;
}

.price-to {
    color: #27ae60;
}

.price-trend {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-weight: 500;
    font-size: 0.9rem;
}

.price-trend.up {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
}

.price-trend.down {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
}

.price-trend.stable {
    background: rgba(149, 165, 166, 0.1);
    color: #95a5a6;
}

.price-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #e9ecef;
}

.disclaimer-items {
    margin-top: 1rem;
}

.disclaimer-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    color: #6c757d;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
    position: relative;
}

.step-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    width: 100%;
    height: 2px;
    background: #dee2e6;
    z-index: 1;
}

.process-step:last-child .step-number::after {
    display: none;
}

.step-content {
    padding: 0 1rem;
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.step-text {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== KONTAKT OLDAL STÍLUSAI ===== */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-card, .map-card, .transport-card, .quick-contact-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-card:hover, .map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
}

.header-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
}

.card-body {
    padding: 2rem;
}

/* Company Info */
.company-info {
    margin-top: 1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-text {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
}

/* Contact Details */
.contact-details {
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: #27ae60;
    flex-shrink: 0;
}

.contact-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-text {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

/* Business Hours */
.business-hours {
    margin-top: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid #e9ecef;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item.weekend {
    color: #e74c3c;
}

.day {
    font-weight: 600;
    color: #2c3e50;
}

.hours-item.weekend .day {
    color: #e74c3c;
}

.hours {
    color: #6c757d;
    font-weight: 500;
}

.hours-item.weekend .hours {
    color: #e74c3c;
    font-weight: 600;
}

.hours-note {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #6c757d;
}

/* Bank Details */
.bank-details {
    margin-top: 1rem;
}

.bank-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.2rem;
}

.bank-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: #9b59b6;
    flex-shrink: 0;
}

.bank-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bank-text {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0;
}

/* OpenStreetMap */
.openstreetmap-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
}

.openstreetmap-frame {
    width: 100%;
    height: 100%;
    border: none;
}

.map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #6c757d;
}

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

.map-instructions {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.instruction-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.instruction-item:last-child {
    margin-bottom: 0;
}

/* Transport Options */
.transport-options {
    margin-top: 1rem;
}

.transport-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.transport-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.transport-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: #f39c12;
    flex-shrink: 0;
}

.transport-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.transport-text {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

/* Quick Contact */
.quick-contact-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.phone-btn {
    background: linear-gradient(135deg, #27ae60, #229954);
    color: white;
}

.email-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.directions-btn {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
}

.quick-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: white;
    text-decoration: none;
}

/* Departments */
.departments-section {
    margin-top: 4rem;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.department-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid;
}

.department-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.department-card:nth-child(1) { border-top-color: var(--primary-color); }
.department-card:nth-child(2) { border-top-color: #27ae60; }
.department-card:nth-child(3) { border-top-color: var(--primary-color); }
.department-card:nth-child(4) { border-top-color: #f39c12; }

.department-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.department-card:nth-child(1) .department-icon { color: var(--primary-color); }
.department-card:nth-child(2) .department-icon { color: #27ae60; }
.department-card:nth-child(3) .department-icon { color: var(--primary-color); }
.department-card:nth-child(4) .department-icon { color: #f39c12; }

.department-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.department-contact {
    text-align: left;
}

.dept-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    color: #6c757d;
    font-size: 0.95rem;
}

.dept-item a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dept-item a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Emergency Contact */
.emergency-contact {
    margin-top: 4rem;
}

.emergency-card {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    border-radius: 12px;
    padding: 2.5rem;
    display: flex;
    align-items: center;
}

.emergency-icon {
    font-size: 3rem;
    margin-right: 2rem;
    flex-shrink: 0;
}

.emergency-details {
    margin-top: 1rem;
}

.emergency-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.emergency-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-left: 0.5rem;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 2px;
}

.emergency-link:hover {
    color: white;
    text-decoration: none;
    border-bottom-color: white;
}

/* ===== RESPONZÍV KIJAVÍTÁSOK ===== */

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .product-display {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-display.reverse {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding: 4rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .openstreetmap-container {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
        margin-bottom: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        padding: 1.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .chemistry-categories,
    .materials-grid,
    .product-categories,
    .departments-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }

    .openstreetmap-container {
        height: 350px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .step-number::after {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .contact-card,
    .map-card,
    .transport-card,
    .quick-contact-card {
        padding: 1rem;
    }

    .card-body {
        padding: 1.5rem;
    }

    .openstreetmap-container {
        height: 300px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons .btn {
        width: 100%;
        margin-right: 0 !important;
    }
}

/* ===== ANIMÁCIÓK ===== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.chemistry-card {
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: calc(var(--card-index, 0) * 0.1s);
}

.material-card {
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: calc(var(--card-index, 0) * 0.1s);
}

.department-card {
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: calc(var(--card-index, 0) * 0.1s);
}

/* ===== PRINT STÍLUSOK ===== */

@media print {
    .hero-section {
        background: white !important;
        color: black !important;
        padding: 2rem 0 !important;
    }

    .hero-title,
    .hero-text {
        color: black !important;
    }

    .btn,
    .download-btn,
    .contact-link,
    .quick-btn {
        display: none !important;
    }

    .contact-card,
    .map-card,
    .material-card,
    .chemistry-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ddd !important;
    }

    .openstreetmap-container {
        display: none !important;
    }
}
