/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic styling */
body {
    font-family:Cambria, Cochin, Georgia, Times, 'Times New Roman';
    font-weight: 400;
    line-height: 1.7;
    background-color: white;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
    :root {
        
        /* Sizes */
        --heading-large: 5.6rem;
        --heading-medium: 3.6rem;
        --heading-small: 2.4rem;
        --paragraph: 1.11rem;
        --navbar-buttons: 2.4rem;
        /* misc */
        --transition-main: .175, .685, .32;
        /* Fonts */
       
    }
    
    /* ===========
        Variabels
       =========== */
    
    /* ===============
        Global Styles
       =============== */
    
    *, *::before, *::after {
        box-sizing: inherit;
    }
    html, body {
        margin: 0;
        width: 100%;
        -webkit-font-smoothing: antialiased;
        scroll-behavior: smooth;
        box-sizing: border-box;
    }
    
    
    
    /* =======
        Lists
       ======= */
    
    ul, ol {
        margin: 1em 0;
    }
    
  
   
    /* =========
        Flexbox
       ========= */
    
    .flexbox {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .flexbox-left {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    
    /* =========
        Classes
       ========= */
    
    
   
    /* ========
       Navbar
    ======== */
    #navbar {
        top: 0;
        left: 0;
        width: 5em;
        height: 100vh;
        position: fixed;
        background-color: #f5f5f5;
        transition: width .35s cubic-bezier(var(--transition-main), 1);
        overflow-y: auto;
        overflow-x: hidden;
        z-index: 9999;
    }
    #navbar:hover {
        width: 16em;
    }
    
    /* Top-level list */
    .navbar-items {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
        list-style: none;
        margin: 0;
    }
    
    /* Each item container */
    .navbar-item {
        position: relative;    /* ✅ ensures submenu pushes siblings down */
        padding: 0 .5em;
        width: 100%;
        cursor: pointer;
    }

    /* The clickable inner area */
    .navbar-item-inner {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1em 0;
        color: #005a94;
        border-radius: .25em;
        text-decoration: none;
        transition: background .2s ease, box-shadow .2s ease;
    }
    
      .navbar-item-inner:hover {
        background-color: rgba(0, 0, 0, 0.05); /* απαλό γκρι */
        box-shadow: none;
      }
      
    .navbar-logo .navbar-item-inner img {
        display: block;
        transition: transform .35s cubic-bezier(var(--transition-main), 1);
        transform-origin: center;
      }
    
    #navbar:hover .navbar-logo .navbar-item-inner img {
        
        transform: scale(3);
    }
    .navbar-logo .navbar-item-inner img {
        border: none;
    }
    
    /* Link text only shows when sidebar expanded */
    .link-text {
        margin: 0;
        width: 0;
        opacity: 0;
        white-space: nowrap;
        overflow: hidden;
        color:#005a94;
        transition: width .35s ease, opacity .35s ease;
        font-size: 1.1rem;
    }
    #navbar:hover .link-text {
        width: 100% ;
        opacity: 1;
        text-align: center;
    }
    
    /* Chevron arrow */
    .arrow-icon {
        margin-left: auto;
        transition: transform .3s ease;
        opacity: 0;  /* hidden until expanded or open */
    }
    #navbar:hover .arrow-icon,
    .has-submenu.open .arrow-icon {
        opacity: 1;
    }
    .has-submenu.open .arrow-icon {
        transform: rotate(180deg);
    }
    
    /* ========
       Accordion-style Submenu
    ======== */
    /* hidden by default, in the normal flow */
    .submenu {
        display: none;
        list-style: none;
        margin: 0;
        padding-left: 2em;   /* indent so it’s clear these are children */
        margin-top: 0.5rem;  /* gap between parent and submenu */
    }
    
    /* show and push everything below down */
    .has-submenu.open > .submenu {
        display: block;
    }
    
    /* spacing between submenu links */
    .submenu li + li {
        margin-top: 0.5rem;
    }
    
    /* submenu link styling */
    .submenu li a {
        display: block;
        padding: 0.5em 1em;
        color: #005a94;
        border-radius: .25em;
        transition: background .2s ease;
        font-size: 1.1rem;
    }
    .submenu li a:hover {
        background: rgba(0,0,0,0.05);
    }
    
    /* ========
       Mobile Overrides
    ======== */
    @media (max-width: 768px) {
        .navbar-items {
            gap: 0.25rem;
        }
        .navbar-item-inner {
            padding: 0.75em 0;
        }
        /* submenu always in flow on mobile */
        .submenu {
            padding-left: 1.5em;
            margin-top: 0.25rem;
        }
    }
    
    .language-switcher {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
        margin: 0.5rem 1rem;
        transition: opacity 0.3s ease;
        opacity: 0;
        visibility: hidden;
    }
    
    #navbar:hover .language-switcher {
        opacity: 1;
        visibility: visible;
    }
    
    .language-switcher button {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        width: 30px;
        height: 20px;
    }
    
    .language-switcher img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    /* ======
        Main
       ====== */
    
    main {
        margin-left: 5em;
    }
    #main > h2 {
        width: 80%;
        max-width: 80%;
    }
    #main > p {
        width: 80%;
        max-width: 80%;
    }
    
    
    
    
    
    /* =============
        ::Selectors
       ============= */
    
    /* Selection */
    ::selection {
        color: hsl(var(--white));
        background: hsla(var(--primary), .33);
    }
    /* Scrollbar */
    ::-webkit-scrollbar-track {
        background-color: hsl(var(--background));
    }
    ::-webkit-scrollbar {
        width: 8px;
        background-color: hsl(var(--background));
    }
    ::-webkit-scrollbar-thumb {
        background-color: hsl(var(--primary));
    }
    
    
    /* ==============
        @media rules
       ============== */
       #burger-menu-toggle {
        position: fixed;
        top: 1rem;
        left: 1rem;
        z-index: 10001;
        background: none;
        border: none;
        color: #005a94;
        font-size: 2rem;
        display: none;
        cursor: pointer;
        padding: 0.5rem;
        transition: color 0.3s ease;
    }
    
    #burger-menu-toggle:hover {
        color: #005a94;
    }
    
    /* Show the burger icon on small screens */
    @media (max-width: 768px) {
        /* Sidebar hidden off-screen by default */
        #navbar {
          width: 18em;
          left: -100%;
          position: fixed;
          top: 0;
          transition: left 0.3s ease;
          z-index: 1000;
        }
      
        /* When visible, slide in */
        #navbar.mobile-visible {
          left: 0;
        }
      
        /* Make sure nav contents stack vertically and scroll */
        .navbar-items {
          flex-direction: column;
          gap: 0.75rem;
          padding: 1rem;
          overflow-y: auto;
          height: 100vh;
        }
      
        /* Show the burger button */
        #burger-menu-toggle {
          display: block;
          position: fixed;
          top: 1rem;
          left: 1rem;
          z-index: 1001;
          background: none;
          border: none;
          font-size: 2rem;
          color: #005a94;
        }
      
        /* Ensure search input is always full width */
        .search-wrapper {
          opacity: 1 !important;
          visibility: visible !important;
          padding: 0.5rem 0;
        }
      
        #search-input {
          width: 100%;
          padding: 0.75rem 1rem;
          font-size: 1rem;
        }
      
        .search-results {
          position: relative;
          box-shadow: none;
          border: 1px solid #ddd;
          max-height: 300px;
          overflow-y: auto;
        }
      }
      
    
     /* ───────────────────────────────────────────────
       Sidebar Search – full width on expand, no icon
    ─────────────────────────────────────────────── */
    
    .search-wrapper {
        width: 100%;
        padding: 0 1em;
        box-sizing: border-box;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
      }
      
      #navbar.navbar-expanded .search-wrapper {
        width: 16em;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }
      
      /* Reveal only when sidebar expands */
      #navbar:hover .search-wrapper {
        opacity: 1;
        visibility: visible;
      }
      
      /* Input field matches sidebar width */
      #search-input {
        width: 100%;
        max-width: 100%; /* ✅ Constrain to container */
        padding: 0.6em 1em;
        border-radius: 25px;
        border: none;
        outline: none;
        font-size: 1rem;
        background-color: #fff;
        color: #333;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
        display: block;
      }
      
      /* Placeholder style */
      #search-input::placeholder {
        color: #999;
        font-size: 0.95rem;
        text-align: center; /* optional */
      }
      
      /* Search results box below input */
      .search-results {
        display: none;
        background: white;
        padding: 1rem;
        border-radius: 8px;
        margin-top: 0.5rem;
        position: relative;
        z-index: 1000;
      }
      .search-results.active {
        display: block;
      }
      
      /* Individual result item */
      .search-result-item {
        padding: 10px 15px;
        cursor: pointer;
        border-bottom: 1px solid #eee;
        transition: background-color 0.2s ease;
      }
      .search-result-item:last-child {
        border-bottom: none;
      }
      .search-result-item:hover {
        background-color: #f5f5f5;
      }
      .search-result-item h3 {
        margin: 0;
        color: #333;
        font-size: 1rem;
      }
      .search-result-item p {
        margin: 5px 0 0;
        color: #666;
        font-size: 0.9rem;
      }
      .no-results {
        padding: 15px;
        text-align: center;
        color: #666;
      }

/* Main content */
.main-content {
    position: relative;
    z-index: 1;

}

.about-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.about-slide.active {
    display: block;
    opacity: 1;
}

.about-slide-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.products {
    padding: 2rem 10%;
    margin-bottom: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
/* Product Buttons Container */
.product-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}


/* Individual Product Button */
.product-button {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    overflow: hidden;

    /* Animation State */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-button.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Hover Shine Effect */
.product-button::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.product-button:hover::before {
    transform: translateX(100%);
}

/* Image Animation */
.product-button img {
    width: 200px;
    height: auto;
    margin: 1rem;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-button:hover img {
    transform: scale(1.1);
}

/* Label / Text */
.product-button span {
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
}

nav a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.products-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3rem;
    padding: 2rem 10%;
  }
  
  .products-description {
    background-color: #76777950;
    color: #ffffff;
    font-family: 'Times New Roman', Times, serif;
    width: 100%;
    max-width: 800px;
    text-align: left;
    font-size: 2.3rem;
    line-height: 1.4;
    margin-bottom: 2rem;
    padding: 50px;
  }
  
  .styled-letter {
    font-size: 100%;
    font-weight: bold;
    vertical-align: bottom;
    line-height: 1;
    color: #ffffff; /* gold as an example */

  }
  
  .styled-letterh{
    font-size: 250%;
    font-weight: bold;
    vertical-align: bottom;
    line-height: 0.8;
    color: #005a94; /* gold as an example */

  }

.products {
    width: 100%;
   
}

.products h2 {
    text-align: center;
    color: #005a94;
    font-size: 3.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.2;

    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Add animation to product heading */
@keyframes textFadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.products h2 {
    animation: textFadeIn 1s ease-in-out;
}

.contact-container {
    text-align: center;
    padding: 4rem 10%;
}

.contact-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #005a94;
}

.contact-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-start;
}

.contact-form {
    flex: 1;
    text-align: left;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin: 1rem 0 0.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form textarea {
    height: 120px;
}

.contact-form button {
    background-color: #005a94;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.contact-form button:hover {
    background-color: #600000;
}

.contact-map {
    flex: 1;
    text-align: left;
}
.product-category-container-beef {
    text-align: center;
    padding: 4rem 10%;
    background: url('../images/beef-bg.jpg');
    background-size: 100%;
    background-position:top;
    background-attachment: fixed;
    position: relative;
    
}
.product-category-container-pork {
    text-align: center;
    padding: 4rem 10%;
    background: url('../images/pig-bg.jpg');
    background-size: 100%;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}
.product-category-container-chicken {
    text-align: center;
    padding: 4rem 10%;
    background: url('../images/chicken-bg.jpg');
    background-size: 100%;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.product-category-container-meatproducts {
    text-align: center;
    padding: 4rem 10%;
    background: url('../images/meatproducts-icon.png');
    background-size: 100%;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}
.product-category-container-premium {
    text-align: center;
    padding: 4rem 10%;
    background: url('../images/premium-bg.jpg');
    background-size: 100%;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}
.product-category-container-beef h2 {
    font-size: 3rem;
    color: #005a94;
    padding-bottom: 1rem;
}
.product-category-container-pork h2 {
    font-size: 3rem;
    color: #005a94;
    padding-bottom: 1rem;
}
.product-category-container-chicken h2 {
    font-size: 3rem;
    color: #005a94;
    padding-bottom: 1rem;
}
.product-category-container-premium h2 {
    font-size:2rem;
    font-weight: bold;
    color: #005a94;
    margin-bottom: 25px;
    position: relative;
}
.premium-dry-aged,.tailor-made,.support p{
        font-size: 1.4rem;

}
.premium-dry-aged,.tailor-made,.support ul{
    list-style-type: disc;
    list-style-position: outside;
    margin: 0 auto 30px;
    padding-left: 1.5em; /* Εσοχή κουκκίδων */
    max-width: 800px;
    text-align: left;
}

.premium-dry-aged,.tailor-made,.support ul li {
    font-size: 1.4rem;
    line-height: 1.8rem;
    margin-bottom: 10px;
    color: #ffffff;
    padding-left: 0.5em;

  }

.product-category-container-chicken p,
.product-category-container-beef p,
.product-category-container-pork p {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 3rem;
    color: #005a94;
    line-height: 1.8;
    margin-left: auto;
    margin-right: auto;
}

.product-category-container-premium p {
    margin-bottom: 20px;
    color: #ffffff;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-in-out;
  }

  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }

@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-category-container {
        padding: 2rem 5%;
    }
    
    .product-category-container h2 {
        font-size: 2rem;
    }
    
    .product-category-container p {
        font-size: 1.1rem;
    }
}


.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.icon {
    border: 2px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.icon:hover {
    border-color: #005a94;
}

/* Style description h2 */
.description h2 {
    text-align: center;
    font-weight: bold;
    font-size: 2rem; /* One times bigger */
}

/* Style description text box */
.description p {
    text-align: center;
    margin-top: 80px;
    margin-left: 500px;
    margin-right: 500px;
    margin-bottom: 100px;
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    background-color: rgba(155, 152, 152, 0.95);
}

/* Product Detail Page Styles */
.product-view {
    background: url('../images/marble-bg.jpg') no-repeat center center / cover;
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.product-view img {
    width: 100%;
    height: 300px; /* Or whatever fixed height you prefer */
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-detail-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    padding: 2rem;
}

.product-detail-content h1 {
    color: #005a94;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.product-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-description,
.product-specs {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}



.product-info h2 {
    color: #005a94;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.product-info p {
    font-size: 1.2rem;
}

.product-info ul {
    list-style-type: none;
    padding: 0;
}

.product-info ul li {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: #444;
}

.product-info ul li:before {
    content: "•";
    color: #005a94;
    position: absolute;
    left: 0;
}

@media (min-width: 1200px) {
    .product-view {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 3rem;
        padding: 4rem 10%;
    }

    .product-detail-container {
        flex: 1;
        margin: 0;
    }

    .product-view img {
        width: 550px;
        height: 550px;
        margin: 0;
    }
}

@media (max-width: 1199px) {
    .product-view {
        flex-direction: column;
        gap: 2rem;
    }

    .product-view img {
        width: 100%;
        max-width: 500px;
        height: auto;
    }
}

.related-products {
    margin-top: 3rem;
}

.related-products h2 {
    color: #005a94;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.related-card {
    text-decoration: none;
    color: inherit;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.related-card h3 {
    padding: 1rem;
    margin: 0;
    color: #333;
    text-align: center;
}

.product-card {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateX(-50px);
}

.product-card.animate {
    opacity: 1;
    transform: translateX(0);
}

.product-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: 0.3s;
}

.product-card:hover::before {
    transform: translateX(100%);
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.05);
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h3 {
    color: #fff4f4;
    font-size: 2rem;
    margin: 1rem 0;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-card:hover h3 {
    color: #005a94;
}

.product-card p {
    color: #fff4f4;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.product-card:hover p {
    color: #005a94;
}

/* Footer */    
footer {
    background-color: #fff4f4;
    color: #005a94;
    padding: 2rem 0;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: 1rem;
}

.footer-logo {
    flex: 100%;
    text-align: center;
    margin-bottom: 2rem;
    order: -1;
}

.footer-logo img {
    width: 300px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.footer-links, .footer-contact, .footer-social, .footer-info {
    flex: 1;
    min-width: 200px;
    text-align: left;
    padding: 1rem;
}
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #005a94;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    line-height: 1.8;
}

.footer-links ul li a:hover {
    color: #005a94;
}

.footer-contact p {
    margin: 0.3rem 0;
    font-size: 1.2rem;
}

.footer-social a img {
    width: 30px;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.footer-social a img:hover {
    transform: scale(1.2);
}

.footer-bottom {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

.form-message {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.footer-info {
    flex: 1;
    text-align: left;
    padding: 1rem;
}

.footer-info h4 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.2em;
}

.footer-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-info ul li {
    margin-bottom: 0.5rem;
}

.footer-info ul li a {
    color: #005a94;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
    line-height: 1.8;
}

.footer-info ul li a:hover {
    color: #005a94;
}

/* Slideshow Styles */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 1000px;
    overflow: hidden;
}

.slideshow {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff4f4;
    z-index: 1;
    width: 80%;
    max-width: 800px;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.3s;
}

.slide-content p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.5s;
}

.slide.active .slide-content h2,
.slide.active .slide-content p {
    opacity: 1;
    transform: translateY(0);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
    
}

/* About Us Section */
.about-us {
    padding: 100px 40px 120px;
    background-color:#005a94;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: visible;
    animation: fadeIn 1s ease-out;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -100px; /* To account for the fixed header */
    padding-top: 100px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 0, 0, 0.08), rgba(255, 255, 255, 0.08));
    pointer-events: none;
    animation: gradientShift 8s ease-in-out infinite alternate;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.about-us-container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
    animation: slideUp 0.8s ease-out;
    padding-top: 50px;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.about-us-header {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeIn 1s ease-out 0.2s backwards;
}

.about-us-header h2 {
    font-size: 2.5rem;
    color: #fff4f4;
    margin-bottom: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: textReveal 1s ease-out 0.4s backwards;

}

@keyframes textReveal {
    from { letter-spacing: 8px; opacity: 0; }
    to { letter-spacing: 4px; opacity: 1; }
}
.about-us-header span {
    opacity: 0;
    animation: fadeIn 0.05s forwards;
    animation-delay: calc(var(--i) * 50ms);
    display: inline-block;
  }
  
  @keyframes fadeIn {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
.about-us-subtitle {
    font-size: 2rem;
    color: #fff4f4;
    font-weight: 300;
    letter-spacing: 3px;
    animation: fadeIn 1s ease-out 0.6s backwards;
}

.about-us-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
    
}

.about-us-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
}
.product-buttons-preview {
    background: url('../images/cuts.jpg') no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: visible;
    animation: fadeIn 1s ease-out;
    z-index: 1;


}


.product-slideshow {
    position: relative;
    width: 100%;
    height: 750px;
    overflow: hidden;
    margin-top: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-slide.active {
    opacity: 1;
    z-index: 1;
}

.product-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease-in-out;
}

.product-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    transform: translateY(0);
    transition: transform 0.5s ease-in-out;
}

.product-slide-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.product-slide-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}


@media (max-width: 1200px) {
    .product-slideshow {
        height: 400px;
    }
    
    .product-slide-content h3 {
        font-size: 1.8rem;
    }
    
    .product-slide-content p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .product-slideshow {
        height: 300px;
        margin-top: 30px;
    }
    
    .product-slide-content {
        padding: 20px;
    }
    
    .product-slide-content h3 {
        font-size: 1.5rem;
    }
    
    .product-slide-content p {
        font-size: 0.9rem;
    }
    
}

.about-us-stats {
    display: flex;
    gap: 60px;
    margin-top: 60px;
    animation: fadeIn 1s ease-out 1.4s backwards;
}

.stat-item {
    text-align: center;
    flex: 1;
    transition: transform 0.3s ease;
    padding: 20px;
    border-radius: 15px;
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.stat-item:nth-child(1) {
    background-color: #ffffffb9;
    border: 2px solid #0066CC; 
}

.stat-item:nth-child(2) {
    background-color: #ffffffb9;
    border: 2px solid #0066CC;
}

.stat-item:nth-child(3) {
    background-color: #ffffffb9;
    border: 2px solid #0066CC;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.stat-number {
    display: block;
    font-size: 3rem;
    color: #005a94;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-number {
    color: #600000;
}

.stat-label {
    font-size: 1.2rem;
    color: #666;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-label {
    color: #444;
}

.about-us-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    animation: fadeIn 1s ease-out 1.6s backwards;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 50px 40px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(139, 0, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    background: rgba(139, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px;
}

.feature-card:hover .feature-icon {
    background: #005a94;
    transform: scale(1.1) rotate(5deg);
}

.feature-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon img {
    filter: brightness(0) invert(1);
    transform: scale(1.1);
}

.feature-card h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: color 0.3s ease;
    font-weight: 600;
}

.feature-card:hover h3 {
    color: #005a94;
}

.feature-card p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.8;
}


.about-us-button {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 20px 50px;
    background:#fff4f4 ;
    color: #005a94;
    text-decoration: none;
    border-radius: 40px;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(139, 0, 0, 0.2);
}

.about-us-button:hover {
    background: #fff4f4;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(139, 0, 0, 0.3);
}

.about-us-button i {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-us-button:hover i {
    transform: translateX(10px);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .about-us-container {
        max-width: 1200px;
    }
    
    .about-us-header h2 {
        font-size: 3.5rem;
    }
    
    .about-us-main {
        gap: 60px;
    }
}

@media (max-width: 1200px) {
    .about-us {
        padding: 100px 30px;
    }
    
    .about-us-header h2 {
        font-size: 3rem;
    }
    
    .about-us-main {
        flex-direction: column;
        gap: 50px;
    }
    
   
    
    .about-us-image {
        order: -1;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .about-us-stats {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .about-us-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .about-us-stats {
        flex-wrap: wrap;
    }
    
    .stat-item {
        flex: 1 1 calc(50% - 30px);
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 80px 20px;
    }
    
    .about-us-header h2 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }
    
    .about-us-subtitle {
        font-size: 1.5rem;
    }
    
    .about-us-content {
        gap: 60px;
    }
   
    
    .about-us-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card {
        padding: 40px 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .about-us-button {
        padding: 18px 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .about-us-header h2 {
        font-size: 2.2rem;
    }
    
    .about-us-subtitle {
        font-size: 1.3rem;
    }
    .stat-item {
        flex: 1 1 100%;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
    }
    
    .feature-icon img {
        width: 40px;
        height: 40px;
    }
}

/* Find Us Section */
.find-us {
    padding: 120px 40px;
    background: linear-gradient(rgba(110, 106, 106, 0.85), rgba(255, 255, 255, 1.0)), url('../images/find_us.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    animation: sectionFadeIn 1s ease-out;
}

@keyframes sectionFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.find-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 0, 0, 0.08), rgba(255, 255, 255, 0.08));
    pointer-events: none;
    animation: gradientFloat 8s ease-in-out infinite alternate;
}

@keyframes gradientFloat {
    0% { opacity: 0.5; }
    100% { opacity: 0.8; }
}

.find-us-container {
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.find-us h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #005a94;
    margin-bottom: 60px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    animation: titleReveal 1s ease-out;
}

@keyframes titleReveal {
    from { 
        opacity: 0;
        transform: translateY(-20px);
        letter-spacing: 8px;
    }
    to { 
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 3px;
    }
}

.find-us h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #005a94, transparent);
    border-radius: 2px;
    animation: lineExpand 1s ease-out;
}

@keyframes lineExpand {
    from { width: 0; }
    to { width: 100px; }
}

.find-us-content {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    align-items: stretch;
    animation: contentFadeIn 0.8s ease-out 0.3s backwards;
}

@keyframes contentFadeIn {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.find-us-map {
    flex: 1.2;
    min-width: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    height: auto;
    display: flex;
    animation: mapReveal 1s ease-out 0.5s backwards;
}

@keyframes mapReveal {
    from {
        opacity: 0;
        transform: translateX(-50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.find-us-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
    filter: grayscale(20%);
    transition: filter 0.5s ease;
    aspect-ratio: 16/9;
}

.find-us-location {
    flex: 0.8;
    min-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    animation: locationSlideIn 1s ease-out 0.7s backwards;
}

@keyframes locationSlideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.detail-item {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.detail-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.detail-item i {
    font-size: 1.8rem;
    color: #005a94;
    background: rgba(139, 0, 0, 0.1);
    padding: 15px;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.detail-item:hover i {
    background: #005a94;
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.detail-item div {
    flex: 1;
}

.detail-item h4 {
    color: #333;
    font-size: 1.4rem;
    margin: 0 0 10px 0;
    transition: color 0.3s ease;
}

.detail-item:hover h4 {
    color: #005a94;
}

.detail-item p {
    color: #666;
    font-size: 1.2rem;
    line-height: 1.7;
    margin: 0;
}

.call-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #005a94;
    color: white;
    padding: 20px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(139, 0, 0, 0.2);
    animation: buttonFadeIn 1s ease-out 1s backwards;
}

@keyframes buttonFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.call-button:hover {
    background: #005a94;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(139, 0, 0, 0.3);
}

.call-button i {
    font-size: 1.3rem;
    transition: transform 0.4s ease;
}

.call-button:hover i {
    transform: rotate(-15deg) scale(1.2);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .find-us-container {
        max-width: 1200px;
    }
    
    .find-us h2 {
        font-size: 3rem;
    }
    
    .detail-item {
        padding: 25px;
    }
}

@media (max-width: 1200px) {
    .find-us {
        padding: 100px 30px;
    }
    
    .find-us-content {
        gap: 40px;
    }
    
    .find-us-map {
        min-width: 350px;
    }
    
    .find-us-map iframe {
        min-height: 450px;
    }
}

@media (max-width: 992px) {
    .find-us h2 {
        font-size: 2.8rem;
        margin-bottom: 50px;
    }
    
    .find-us-content {
        flex-direction: column;
    }
    
    .find-us-map {
        width: 100%;
        min-width: 100%;
    }
    
    .find-us-map iframe {
        min-height: 400px;
    }
    
    .find-us-location {
        min-width: 100%;
    }
    
    .location-header h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .find-us {
        padding: 80px 20px;
    }
    
    .find-us h2 {
        font-size: 2.4rem;
        margin-bottom: 40px;
    }
    
    .find-us-map iframe {
        min-height: 350px;
    }
    
    .detail-item {
        padding: 20px;
    }
    
    .detail-item i {
        font-size: 1.5rem;
        padding: 12px;
    }
    
    .detail-item h4 {
        font-size: 1.2rem;
    }
    
    .detail-item p {
        font-size: 1rem;
    }
    
    .call-button {
        width: 100%;
        justify-content: center;
        padding: 18px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .find-us h2 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .location-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .location-badge {
        align-self: center;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .detail-item i {
        font-size: 1.3rem;
        padding: 10px;
    }
    
    .find-us-map {
        border-radius: 15px;
    }
    
    .find-us-map iframe {
        min-height: 300px;
    }
}

.categories-container {
    max-width: 1400px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category-card:hover img {
    transform: scale(1.05);
}

.category-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    margin: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    font-size: 2rem;
    text-align: center;
}

.search-filters select {
    padding: 0.8rem 1.5rem;
    border: 1px solid #ddd;
    border-radius: 2rem;
    background-color: white;
    font-size: 1rem;
    color: #333;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.search-filters select:hover {
    border-color: #005a94;
}

/* Process Section */
.process-section {
    padding: 4rem 2rem;
    background-color: #005a94;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #fff4f4;
    margin-bottom: 3rem;
}

.process-description {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.5rem;
    color: #fff4f4;
}
.process-steps {
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.process-step {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease forwards;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #fff4f4;
    color: #005a94;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.397);
}

.process-step h3 {
    font-size: 1.5rem;
    color: #fff4f4;
    margin: 0;
    line-height: 1.4;
}



/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.568), rgba(0, 0, 0, 0.5)), url('../images/about-hero.jpeg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 0rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {

    font-size: 1.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-text-first,
.hero-text-second,
.hero-text-third,
.hero-text-fourth,
.hero-text-fifth,
.hero-text-sixth {
    
    text-align: left;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #ffffff;
    padding: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

.hero-text-first {
    animation-delay: 1s;
}

.hero-text-second {
    animation-delay: 2s;
}

.hero-text-third {
    animation-delay: 3s;
}

.hero-text-fourth {
    animation-delay: 4s;
}

.hero-text-fifth {
    animation-delay: 5s;
}

.hero-text-sixth {
    animation-delay: 6s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.text-container {
    position: relative;
    height: auto;
    overflow: hidden;
    margin: 2rem auto;
    padding-left: 3rem;
    padding-right: 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-radius: 20px;
}

.company-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 50px;
    width: 100%;
}

.company-description {
    max-width: 800px;
    text-align: left;
    padding-right: 20px;
    border-radius: 15px;
   
}

.company-description p {
    font-size: 1.3rem;
    line-height: 1.5;
    color: #fff4f4;

}

.company-description h2 {
    font-size: 1.7rem;
    color: #fff4f4;
    padding-top: 1rem;
    
}

.company-description h3 {
    font-size: 1.2rem;
    color: #fff4f4;
    padding-top: 1rem;
}

@media (max-width: 768px) {
    .company-info {
        padding: 0 20px;
    }
    
    .company-description {
        padding: 20px;
    }
    
    .company-description p {
        font-size: 1.1rem;
    }
}

.product-category-lamb {
    background-image: url('../images/lamb-field.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem;
    padding-left: 10rem;
    padding-right: 10rem;
    margin-top: 3rem;
    text-align: center;
    height: 1100px;
    position: relative;
}

.product-category-lamb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 1;
}
.product-category-lamb::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 25%;
    background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 1;
}
.product-category-lamb > * {
    position: relative;
    z-index: 2;
}

.product-category-goat {
    background-image: url('../images/goat-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 4rem;
    padding-left: 10rem;
    padding-right: 10rem;
    text-align: center;
    height: 1000px;
    position: relative;
}

.product-category-goat::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 25%;
    background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 1;
}

.product-category-goat > * {
    position: relative;
    z-index: 2;
}


/* Product Characteristics Styles */
.product-characteristics {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.product-characteristics li {
    background: rgba(255, 255, 255, 0.4);
    color: #005a94;
    font-size: 1.5rem;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
}

.product-characteristics li:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);

    
}

.product-characteristics li::before {
    display: none;
}

.product-category-lamb h3
{
    font-size: 3rem;
   color: #fff4f4;
   margin-bottom: 1rem;
}
.product-category-goat h3 {
    font-size: 3rem;
    color: #fff4f4;
    margin-bottom: 1rem;
}

.product-category-lamb p
{
    font-size: 2rem;
   color: #fff4f4;
   margin-bottom: 1rem;
}

.product-category-goat p {
    font-size: 2rem;
    color: #fff4f4;
    margin-bottom: 1rem;
}

.product-category-lamb h2
{
     font-size: 3rem;
    color: #fff4f4;
    margin-bottom: 1rem;
}

.product-category-goat h2 {
    font-size: 3rem;
    color: #fff4f4;
    margin-bottom: 1rem;
}

.product-cuts {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.product-cuts li {
    background: rgba(255, 255, 255, 0.4);
    font-size: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: #005a94;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
}

.product-cuts li:hover {
    background: #f8f9fa;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.product-category-container-meatproducts {
    text-align: center;
    padding: 4rem 10%;
    background: url('../images/meatproducts-bg.jpg');
    background-size: 100%;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.product-category-container-meatproducts::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    pointer-events: none;
}

.product-category-container-meatproducts h2 {
    font-size: 3rem;
    color: #fff4f4;
    padding-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.product-category-container-meatproducts p {
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #fff4f4;
    line-height: 1.8;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.product-category-container-meatproducts .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.product-category-container-meatproducts .product-card {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(2px);
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease-out;
}

.product-category-container-meatproducts .product-card.animate {
    opacity: 1;
    transform: translateX(0);
}

.product-category-container-meatproducts .product-card:hover {
    transform: translateY(-20px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.product-category-container-meatproducts .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: 0.3s;
}

.product-category-container-meatproducts .product-card:hover::before {
    transform: translateX(100%);
}

.product-category-container-meatproducts .product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.05);
}

.product-category-container-meatproducts .product-card:hover img {
    transform: scale(1.05);
}

.product-category-container-meatproducts .product-card h3 {
    color: #fff4f4;
    font-size: 2rem;
    margin: 1rem 0;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-category-container-meatproducts .product-card:hover h3 {
    color: #005a94;
}

.product-category-container-meatproducts .product-card p {
    color: #fff4f4;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.product-category-container-meatproducts .product-card:hover p {
    color: #005a94;
}

@media (max-width: 1200px) {
    .product-category-container-meatproducts .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-category-container-meatproducts {
        padding: 2rem 5%;
    }
    
    .product-category-container-meatproducts h2 {
        font-size: 2rem;
    }
    
    .product-category-container-meatproducts p {
        font-size: 1.1rem;
    }
    
    .product-category-container-meatproducts .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-category-container-meatproducts .product-card {
        padding: 1rem;
    }
    
    .product-category-container-meatproducts .product-card img {
        height: 200px;
    }
    
    .product-category-container-meatproducts .product-card h3 {
        font-size: 1.5rem;
    }
    
    .product-category-container-meatproducts .product-card p {
        font-size: 1rem;
    }
}

/* Terms and Conditions Page Styles */
.terms-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.page-title {
    text-align: center;
    color: #333;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    border-bottom: 2px solid #ddd;
    padding-bottom: 1rem;
}

.terms-section {
    margin-bottom: 2.5rem;
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.terms-section h2 {
    color: #1a1a1a;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 0.5rem;
}

.terms-section h3 {
    color: #333;
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}

.terms-section p {
    color: #444;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.terms-section ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.terms-section li {
    color: #444;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}



/* Responsive Design */
@media (max-width: 768px) {
    .terms-container {
        margin: 1rem auto;
        padding: 0 1rem;
    }

    .page-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .terms-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .terms-section h2 {
        font-size: 1.3rem;
    }

    .terms-section h3 {
        font-size: 1.1rem;
    }
}

.human-resources {
    background-color: #005a94;
    padding: 4rem 2rem;
    font-family: 'Arial', sans-serif;
  }
  
  .human-resources .container {
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .human-resources h2 {
    font-size: 2.5rem;
    color: #fff4f4;
    margin-bottom: 1.5rem;
  }
  
  .human-resources h3 {
    font-size: 2rem;
    color: #fff4f4;
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  
  .human-resources p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fff4f4;
  }
  
/* Responsive Additions */

/* General Tweaks for Tablets */
@media (max-width: 1024px) {

    #animated-title {
        font-size: 1.5rem;
        line-height: 1.4;
        word-break: normal;
        word-wrap: break-word;
        white-space: normal;
        text-align: center;
        max-width: 90%;
        margin: 0 auto;
        padding-top: 140px;
      }

    #animated-title span {
        display: inline;
        font-size: inherit;
      }

    .products, .contact-container, .product-category-container, .about-us, .find-us, .categories-container {
      padding: 2rem 5%;
    }
  
    .product-grid, .product-buttons, .related-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .product-view {
      flex-direction: column;
    }
  }
  
  .section-wrapper {
    padding: 4rem 1rem;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
  }
  
  /* Headings */
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    color: #2c2c2c;
  }
  
  .content-block h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #444;
    border-left: 4px solid #005a94;
    padding-left: 1rem;
  }
  
  .content-block {
    margin-bottom: 3rem;
    background: #fff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  
  .content-block p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
  }
  
  /* General Tweaks for Mobiles */
  @media (max-width: 768px) {

    .mobile-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        position: fixed;
        top: 300px;
        left: 0;
        width: 100%;
      }
      
      .mobile-logo img {
        max-width: 170px;
        height: auto;
      }
      
      

     /* Ensure menu expands like on hover */
#navbar.navbar-expanded .link-text {
    width: 100%;
    opacity: 1;
    text-align: center;
  }
  
  /* Also reveal the language switcher */
  #navbar.navbar-expanded .language-switcher {
    opacity: 1;
    visibility: visible;
  }
  
  /* And the search bar */
  #navbar.navbar-expanded .search-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  #navbar.navbar-expanded .logo {
    justify-content: center;
    padding-left: 0;
    text-align: center;
  }
  
 
  #navbar.navbar-expanded .navbar-logo .navbar-item-inner img {
    transform: scale(3);
    margin-top: 10px; 
    padding: 5px;     
}
        body {
          background-repeat: no-repeat;
          background-size: cover;
          background-position: center;
          background-attachment: scroll; /* disables fixed scrolling on mobile */
        }
      
        .product-category-container-beef {
          background-repeat: no-repeat;
          background-size: cover;
          background-position: center;
        }

        .product-category-container-chicken {
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
        }

        .product-category-container-pork {
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
        }  
        .product-category-container-meatproducts {
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
        }
        .product-category-container-premium {
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
        }
      
    main {
      margin-left: 0;
    }
    
    .navbar-items, .footer-container, .contact-content {
      flex-direction: column;
    }
  
    .product-grid, .product-buttons, .related-grid, .about-us-features {
      grid-template-columns: 1fr;
    }
  
    .product-category-container h2,
    .products h2,
    .contact-container h2,
    .slide-content h2 {
      font-size: 2rem;
    }
  
    .product-category-container p,
    .contact-container p,
    .slide-content p {
      font-size: 1.1rem;
    }
  
    .product-card img,
    .product-button img {
      width: 100%;
      height: auto;
    }
  
    .contact-form, .contact-map {
      width: 100%;
    }
  
    .company-description {
      padding: 1rem;
    }
  
    .slide-content {
      padding: 1rem;
    }
    
    .product-category-goat h2 {
        font-size: 2rem;
    }

    .product-category-goat p {
        font-size: 1rem;
    }

    .product-category-goat h3 {
        font-size: 2.2rem;
    }

    /* Shared grid layout for both product features and cuts */
    .product-characteristics,
    .product-cuts {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 0.7rem;
      list-style: none;
      padding: 0;
      margin: 1rem auto;
      max-width: 100%;
    }
    
    .product-characteristics li,
    .product-cuts li {
      background: rgba(255, 255, 255, 0.85);
      font-size: 0.8rem;
      padding: 0.6rem 0.5rem;
      border-radius: 8px;
      text-align: center;
      box-shadow: 0 0 4px rgba(0, 0, 0, 0.04);
    }
    .footer-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 2rem 1rem;
      gap: 2rem;
    }
  
    .footer-container > div {
      width: 100%;
      max-width: 400px;
      text-align: center;
    }
  
    .footer-social a {
      margin: 0 8px;
      display: inline-block;
    }
  
    .footer-container h2,
    .footer-container h3,
    .footer-container h4 {
      margin-bottom: 0.5rem;
    }
  
    .footer-links ul,
    .footer-contact p,
    .footer-info a {
      margin: 0.3rem 0;
    }
  
    /* Fix for .products-description on mobile */
    .products-container {
      padding: 1rem;
    }
    .product-button img {
        width: 33.3%; /* one third of original size */
        height: auto;
        margin: 0 auto;
        display: block;
      }
    .products-description {
      font-size: 1.2rem;
      line-height: 1.6;
      max-width: 90%;
      margin: 0 auto;
      text-align: left;
      background-color: rgba(255, 255, 255, 0.15);
      padding: 1.5rem;
      border-radius: 8px;
    }
  
    .products-description span {
      display: inline;
    }

  /* Product slideshow text fix */
  .product-slide-content h3 {
    font-size: 1.2rem;
  }

  .product-slide-content p {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .hero-content {
    padding: 1rem;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .text-container p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    text-align:left;
  }

  .process-section {
    padding: 1.5rem 1rem;
  }

  .process-description p {
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
  }

  .process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1rem;
  }

  .process-step {
    text-align: center;
    padding: 1rem;
    border-radius: 8px;
    background-color: #005a94(255, 255, 255, 0.85);
  }

  .step-number {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
  }

  footer .footer-container {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .footer-container > div {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-social a img {
    width: 20px;
    height: 20px;
    margin: 0 5px;
  }

  }
  
  /* Smaller Devices (Phones < 576px) */
  @media (max-width: 576px) {
     .footer-links, .footer-contact, .footer-social, .footer-info {
      width: 100%;
      text-align: center;
    }
  
    .product-category-lamb, .product-category-goat {
      padding-left: 2rem;
      padding-right: 2rem;
    }

  }
  
  @media (max-width: 500px) {
    .product-characteristics li,
    .product-cuts li {
      font-size: 0.85rem;
      padding: 0.8rem;
    }
  
        .product-category-goat h3,
        .product-category-lamb h3 {
            font-size: 1.3rem;
        }
        
        .product-category-goat h2,
        .product-category-lamb h2 {
          font-size: 1.3rem;
          color:black;
        }
      
        .product-category-goat p,
        .product-category-lamb p {
          font-size: 0.85rem;
          padding: 0 0.5rem;
        }
      }
      
  /* Hide on desktop */
  @media (min-width: 769px) {
    .mobile-logo {
      display: none;
    }
}