@layer reset, elements, layout, components, utilities, overrides, states;

/* 
  TOKENS / DESIGN VARIABLES

  This is the place where we create the values that we will be reusing in the system.
  Text colors, fonts and the rest.
  This way, if we want to change just the style, it will be possible with minor changes.
 */
:root {
  --font-sans: system-ui, sans-serif;
  --radius: 12px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;

  --color-bg: #fff;
  --color-text: #656565;
  --color-primary: #2563eb;

  --content-width: 1200px;
  --min-contect-width: 100vw;
  --text-width: 70ch;

  --blue-color: #1b263c;
  --blue-color-icon: invert(13%) sepia(54%) saturate(498%) hue-rotate(181deg) brightness(91%) contrast(97%);
  --white-color-icon: invert(98%) sepia(100%) saturate(4%) hue-rotate(97deg) brightness(107%) contrast(100%);
  --yellow-color-icon: invert(84%) sepia(32%) saturate(3090%) hue-rotate(344deg) brightness(98%) contrast(93%);
  --gray-color: #dbdbdb;
  --gray-color-2: #f1f1f1;
  --gray-color-3: #e4e4e4;
  --gray-color-4: #eaebef;
  --gray-color-5: #fafafa;
  --yellow-color: #f2b21d;
  --white-color: #fff;
  --blue-gray-color: #495563;
  --slideshow-max-height: 750px;
  --overlay-dark: rgba(33, 48, 66, 0.85);
  --input-border-color: #d1d1d1;
  --results-bg-color-odd: #eaeff2;
  --results-bg-color-even: #fdfdfd;
}

@media (prefers-color-scheme: dark) {
  :root {
    /*--color-bg: #0b1220;
    --color-text: #e5e7eb;*/
  }
}

/*
  BASE / RESET

  Do not touch this section, it just provides sensible defaults accross browsers.
 */
@layer reset {
  *, *::before, *::after {
    box-sizing: border-box;
  }

  * {
    margin: 0;
  }

  body {
    min-height: 100vh;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
  }

  img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
    height: auto;
  }

  input, button, textarea, select {
    font: inherit;
  }

  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }
}

/*
  ELEMENT DEFAULTS

  First set the basis for the theme, how the elements should show unstyled.
 */
@layer elements {
  body {
    font-family: var(--font-sans);
    background: var(--color-bg);
    color: var(--color-text);
  }

  a { color: inherit; text-decoration: none; }
  label {
    font-size: 1em;
    font-weight: 800;
    color: var(--blue-color);
    text-transform: uppercase;
    margin-bottom: .35em;
  }
  input, textarea, select {
    padding: .7em;
    border: 1px solid var(--input-border-color);
    font-size: 1em;
    outline: none;
    background: var(--white-color);
    resize: none;
  }
}

/*
  LAYOUT PRIMITIVES

  Generic classes, like columns, containers (both for text and styling).
  Typical primitives:

    * container
    * grid helpers
    * stack/cluster layouts
    * spacing helpers
    * “screen” wrappers
 */
@layer layout {
  .page {
    display: grid;
    grid-template-columns: 1fr min(var(--content-width), var(--min-contect-width)) 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas:
      ". header ."
      "main main main"
      "footer footer footer";
    min-height: 100dvh;
    overflow-x: hidden;
  }
  .page>header { 
    grid-area: header;
    padding: 1rem 1rem 0 1rem;
  }
  .page>main { 
    grid-area: main;
  }
  .page>footer { 
    grid-area: footer;
    /*padding: 1rem 1rem .5rem 1rem;*/
    padding: 1rem 0 0 0;
  }

  .header-top {
    display: flex;
    justify-content: space-between;
    gap: 2em;
    align-items: center;
  }
  .header-top>.address, .header-top>.logo, .header-top>.social {
    flex: 1;
  }
  
  .contact-info {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    font-size: .9em;
    align-content: center;
    align-items: center;
  }
  .social-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }
  .social-item {
    flex: 1;
  }
  .header-bottom {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    border-top: 2px solid var(--gray-color);
    margin: 1.5em -50rem 0 -50rem;
    padding: 1rem 50rem 1rem 50rem;
    align-items: center;
  }
  .main-menu {
    flex-grow: 2;
  }

  .footer-top {
    display: flex;
    justify-content: space-between;
    gap: 2em;
    align-items: stretch;
  }
  .footer-top>.footer-menu, .footer-top>.address-details {
    flex: 1;
    padding: 3.5em 3em 1.5em 0;
    border-right: 2px solid var(--blue-gray-color);
  }
  .footer-top>.address-details { border-right: unset; padding-right: 0; }
  .footer-top>.company-brand { 
    flex: 2;
    padding: 3.5em 3em 1.5em 0;
    border-right: 2px solid var(--blue-gray-color);
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .welcome-text>.container {
    display: flex;
    gap: 3rem;
    justify-content: space-between;
    align-items: center;
  }
  .welcome-text-left { flex: 1; }
  .welcome-image { flex: 1; }
  .form-group {
    display: flex;
    flex-direction: column;
  }
  .contact-section {
    display: flex;
    min-height: 600px;
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5em;
    text-align: center;
  }
  .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5em;
  }
  .dual-promo-section {
    display: flex;
    width: 100%;
    min-height: 500px;
    max-height: 700px;
    height: 700px;
  }
  .carousel-wrapper { display: flex; gap: 3em; align-items: flex-start; }
  .carousel-static-info { flex: 0 0 25%; color: var(--blue-color); padding-right: 1em; }
  .carousel-nav { display: flex; gap: 1em; }
  .slider-viewport { flex: 1; overflow: hidden; position: relative; }
  .slider-track { display: flex; transition: transform 0.5s ease-in-out; width: 100%; gap: 1em; }

  @media screen and (max-width: 75em) {
    .header-top { flex-direction: column; }
    .address { text-align: center; }
    .header-bottom {
      align-items: flex-start;
      margin-left: 0;
      margin-right: 0;
      padding-left: 1em;
      padding-right: 1em;
    }
    .container { padding: 0 1rem; }
    .contact-section { flex-direction: column; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .dual-promo-section { flex-direction: column; }
  }
  @media screen and (max-width: 65em) {
    .welcome-text>.container { flex-direction: column; }
  }
  @media screen and (max-width: 45em) {
    .contact-info { flex-direction: column; }
    .carousel-wrapper { flex-direction: column; }
  }
  @media screen and (max-width: 37.5em) {
    .features-grid { grid-template-columns: repeat(1, 1fr); }
    .promo-section { flex-direction: column; }
    .projects-grid { grid-template-columns: repeat(1, 1fr); }
  }
}

/*
  COMPONENTS

  We keep media queries in the components, not at the end of the document.
  This is true for the other sections as well, although not generally needed as they are more basic
 */
@layer components {

  .phone { color: var(--blue-color); }
  .contact-detail { color: var(--blue-color); font-size: .75em; vertical-align: text-top; margin-left: 3px; }
  .social-item { text-align: center; border: 1px solid var(--gray-color); padding: .5em .35em; }
  .contact { margin-bottom: .25em; }
  .contact-icon { 
    display: inline-block;
    text-align: center;
    border: 1px solid var(--gray-color);
    padding: .5em .75em;
    margin-right: .5em;
  }
  .mobile-menu { display: none; }
  .mobile-menu-label { display: none; cursor: pointer; }
  .menu {
    list-style: none;
    padding-left: 0;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
  .menu-item { position: relative; }
  .menu-arrow-up { display: none; }
  .menu-link {
    color: var(--blue-color);
    text-transform: uppercase;
    font-weight: 500;
    padding: 1.2em .5em;
  }
  .menu-item.has-submenu .menu-link {
    padding-right: 0;
  }
  .sub-menu {
    display: none;
    list-style: none;
    padding-left: 0;
    position: absolute;
    top: 2em;
    left: 0;
    width: 17em;
    background: var(--gray-color-2);
    z-index: 5;
  }
  .sub-menu .menu-item {
    display: block;
    width: 100%;
    padding: 1em 1em;
    border-bottom: 2px solid var(--gray-color-3);
    border-left: 3px solid transparent;
    color: var(--blue-color);
    font-weight: 500;
  }
  .sub-menu .menu-link { padding: 0; }
  .sub-menu .menu-item:last-child>.menu-link {
    border-bottom: unset;
  }
  .sub-menu-lvl2 {
    display: none;
    list-style: none;
    padding-left: 0;
    position: absolute;
    top: 0;
    left: 17em;
    width: 17em;
    background: var(--yellow-color);
    z-index: 2;
  }
  .sub-menu-lvl2 .menu-item {
    border-bottom: 2px solid var(--yellow-color);
    border-left: 3px solid var(--yellow-color);
  }
  .lang-switcher { position: relative; }
  .lang-btn {
    width: 100%;
    background: inherit;
    border: none;
    display: flex;
    justify-content: flex-end;
    gap: 5px;
    align-items: center;
  }
  #language-list {
    list-style: none;
    padding-left: 0;
    display: none;
    position: absolute;
    top: 1.35em;
    left: 0;
    background: var(--gray-color-2);
    z-index: 2;
  }
  #language-list a {
    display: block;
    padding: .75em .5em;
    border-bottom: 2px solid var(--gray-color-3);
  }
  #language-list>li:last-child>a {
    border-bottom: unset;
  }
  .lang-code {
    width: 2ch;
    text-transform: uppercase;
    color: var(--blue-color);
    font-weight: 500;
  }
  .submenu-toggle { display: none; }
  .submenu-toggle:checked ~ .submenu-toggle-label>.menu-arrow-down { display: none; }
  .submenu-toggle:checked ~ .submenu-toggle-label>.menu-arrow-up { display: inline-block; }
  .submenu-toggle:checked ~ .sub-menu { display: block; }
  .submenu-toggle:checked ~ .sub-menu-lvl2 { display: block; }

  .slideshow {
    position: relative;
    width: 100%;
    height: var(--slideshow-max-height);
    overflow: hidden;
    background: var(--blue-color);
  }
  .slideshow-container { position: relative; height: var(--slideshow-max-height); }
  .slide {
    display: none;
    height: 100%;
    align-items: stretch;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
  }
  .slide.active {
    display: flex;
    opacity: 1;
  }
  .slide-content {
    flex: 1;
    z-index: 2;
    position: relative;
  }
  .content-inner {
    width: 35em;
    position: absolute;
    right: 1em;
    top: 15em;
  }
  .slide-description {
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  .slide-image {
    flex: 1;
    position: relative;
    max-height: 750px;
  }
  .slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 43%;
    width: 180px;
    height: 100%;
    max-height: 750px;
    background: var(--blue-color);
    transform: skewX(12deg);
    transform-origin: top;
    z-index: 1;
    pointer-events: none;
  }
  .slide-title {
    font-size: 2.25em;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--yellow-color);
    border-left: 5px solid var(--yellow-color);
    padding-left: .5em;
    margin-bottom: .5em;
    line-height: 1.4;
  }
  .slide-description {
    font-size: 1em;
    line-height: 1.4;
    color: var(--white-color);
  }
  .slide-read-more {
    color: var(--white-color);
    z-index: 10;
    text-transform: uppercase;
  }
  .slider-controls {
    display: flex;
    gap: 0.5em;
    z-index: 5;
  }
  .slider-control {
    position: absolute;
    top: 22.5em;
    background: transparent;
    border: 1px solid var(--white-color);
    padding: 0.75rem 1rem;
    cursor: pointer;
    z-index: 10;
  }
  .slider-prev-btn { left: 35em; }
  .slider-next-btn { right: 32.5em; }

  .footer {
    background-image: linear-gradient(rgba(18, 30, 45, 0.92), rgba(18, 30, 45, 0.92)), 
      url('images/footer-bg-image.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white-color);
  }
  .footer-container { max-width: 1200px; margin: 0 auto; padding: 3rem 1rem 2rem 1rem; }
  .footer-top .logo { max-width: 300px; margin-bottom: 1em; }
  .footer-top .social { margin-bottom: 1em; }
  .footer-top .social-item { background: var(--white-color); border: 1px solid var(--white-color); }
  .company-brand-title {
    font-size: 1.25em;
    text-transform: uppercase;
    font-weight: normal;
  }
  .company-brand-description { margin-bottom: 1em; }
  .footer-menu .menu { display: block; }
  .footer-menu .menu-item { margin: 1em 0; }
  .footer-menu .menu-link { color: var(--white-color); }
  .footer .contact-info { display: block; margin: .75em 0; text-align: left; }
  .footer .contact-info-item { margin: .75em 0; }
  .footer .contact-detail {
    font-size: 1em;
    color: var(--white-color);
  }
  .search-form { margin-top: 2em; position: relative; }
  .search-label { display: block; }
  .search-label span { display: none; }
  .search-field {
    position: relative;
    padding: .5em 2em .5em 1.25em;
    border: 1px solid var(--white-color);
    color: var(--color-text);
    font-size: 1em;
    font-weight: normal;
  }
  .search-field:focus { outline: none; }
  .search-btn { 
    position: absolute;
    top: .5em;
    right: .25em;
    background: inherit;
    border: unset;
    cursor: pointer;
  }
  .footer-bottom { background: #18273a; padding: 1em 0; }
  .footer-bottom .menu-arrow-down { display: none; }
  .footer-bottom .menu-arrow-up { display: inline; }
  .ty-logo { max-width: 75px; }

  .welcome-header { background: var(--yellow-color); color: var(--white-color); padding: 1rem 0; }
  .welcome-title { font-size: 1.5em; line-height: 1.3; padding-left: 1rem; border-left: 4px solid var(--white-color); }
  .welcome-text { margin: 2rem 0; }
  .welcome-text-left>p { margin-bottom: 1rem; width: 70ch; line-height: 1.3; }

  .gallery-section {
    background: linear-gradient(to bottom, var(--yellow-color) 65%, var(--white-color) 65%);
    padding: 3em 0;
  }
  .gallery-title {
    text-transform: uppercase;
    font-size: 1.5em;
    font-weight: bold;
    padding-left: 1em;
    color: var(--blue-color);
    border-left: 5px solid var(--blue-color);
    margin-bottom: 1.25em;
    letter-spacing: 1px;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
    list-style: none;
    padding: 0;
  }
  .gallery-item {
    height: 280px;
    overflow: hidden;
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .gallery-item.view-all-item {
    position: relative;
  }
  .view-all-images-icon svg {
    display: block;
    width: 100px;
    height: auto;
    margin: 0 auto;
    filter: var(--white-color-icon);
  }
  .view-all-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
  }
  .view-all-content {
    display: block;
    width: 100%;
    height: 100%;
    text-align: center;
    padding-top: 3.5em;
  }
  .view-all-text {
    font-size: 1em;
    font-weight: bold;
    color: var(--white-color);
    text-transform: uppercase;
    display: inline-block;
  }

  .articles-section {
    width: 100%;
    background: linear-gradient(to bottom, var(--white-color) 35%, var(--blue-color) 35%);
    padding-top: 3em;
  }
  .articles-title {
    font-size: 1.5em;
    font-weight: 900;
    color: var(--yellow-color);
    text-transform: uppercase;
    border-left: 5px solid var(--yellow-color);
    padding-left: 1em;
    margin-bottom: 1.25em;
  }
  .articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3em;
  }
  .article-card {
    display: flex;
    flex-direction: column;
  }
  .article-image {
    width: 100%;
    max-height: 250px;
    height: 250px;
    margin-bottom: 2em;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  }
  .article-image img { width: 100%; height: 100%; object-fit: cover; }
  .article-content { 
    color: var(--white-color); 
    display: flex;
    align-items: flex-start;
    gap: 1.2em;
    margin-bottom: 1em;
  }
  .article-number {
    font-size: 2em;
    font-weight: 800;
    color: var(--yellow-color);
  }
  .article-heading {
    font-size: 1.3em;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--yellow-color);
    line-height: 1.3;
    max-height: 55px;
    overflow: hidden;
    margin-bottom: .5em;
  }
  .article-excerpt {
    font-size: .9em;
    color: var(--white-color);
    line-height: 1.6;
    margin-bottom: 1.25em;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .articles-footer { 
    padding: 1.5em 0;
    border-top: 1px solid var(--blue-gray-color);
  }
  .view-all-articles {
    color: var(--white-color);
    text-transform: uppercase;
    font-weight: bold;
  }

  .contact-section-left {
    flex: 1;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=1000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3.75em;
  }
  .image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--overlay-dark);
    z-index: 1;
  }
  .visual-content {
    position: absolute;
    z-index: 2;
    max-width: 31em;
    color: var(--white-color);
    right: 3em;
  }
  .visual-title {
    font-size: 2em;
    font-weight: 800;
    color: var(--yellow-color);
    text-transform: uppercase;
    border-left: 4px solid var(--yellow-color);
    padding-left: 1em;
    margin-bottom: 1em;
    line-height: 1.2;
  }
  .visual-description {
    font-size: .9em;
    line-height: 1.6;
    margin-bottom: 2em;
    opacity: 0.9;
  }
  .contact-section .read-more { font-weight: bold; }
  .contact-section-right {
    flex: 1;
    background: var(--gray-color-4);
    display: flex;
    padding: 3.75em;
  }
  .contact-form {
    width: 100%;
    max-width: 550px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2em;
  }
  .form-footer { text-align: right; }
  .submit-btn {
    background: transparent;
    color: var(--blue-color);
    border: none;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
  }

  .features-section {
    background: var(--gray-color-5);
    padding: 4em 0;
  }
  .feature-icon {
    width: 90px;
    height: 90px;  
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white-color);
    color: var(--blue-color);
    font-size: 2em;
    border: 4px solid #f2b705;
    box-shadow: 0 0 0 6px rgba(242, 183, 5, 0.25);
    margin-bottom: .5em;
    transition: all 0.3s ease;
  }
  .feature-icon>i {
    color: var(--blue-color);
  }
  .feature-title {
    font-weight: 800;
    color: var(--blue-color);
    text-transform: uppercase;
    margin-bottom: 1em;
    line-height: 1.4;
  }
  .feature-desc {
    font-size: .8em;
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 1em;
  }

  .promo-section {
    position: relative;
    background: var(--blue-color);
    display: flex;
    gap: 1em;
    height: var(--slideshow-max-height);
    overflow: hidden;
  }
  .promo-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: 43%;
    width: 180px;
    height: 100%;
    max-height: 750px;
    background: var(--blue-color);
    transform: skewX(12deg);
    transform-origin: top;
    z-index: 1;
    pointer-events: none;
  }
  .promo-inner { flex: 1; z-index: 2; position: relative; }
  .promo-image { flex: 1; }
  .promo-image img { width: 100%; height: 100%; object-fit: cover; }

  .projects-section { padding: 3em 0; }
  .projects-header { text-align: center; margin-bottom: 2em; }
  .projects-section-title {
    font-size: 2em;
    color: var(--yellow-color);
    font-weight: bold;
    line-height: 1.3;
    text-transform: uppercase;
  }
  .projects-section-description {
    font-size: .9em;
    line-height: 1.4;
  }
  .project-image { width: 100%; max-height: 250px; height: 250px; position: relative; z-index: 1; }
  .project-content {
    background: #f9f9f9;
    padding: 4em 1em 2em 0;
    position: relative;
    z-index: 2;
    margin-top: -5em;
    clip-path: polygon(0 0, 100% 50px, 100% 100%, 0% 100%);
    width: 90%;
  }
  .project-title {
    font-size: 1.1em;
    font-weight: bold;
    color: var(--yellow-color);
    padding-left: 1em;
    border-left: 4px solid var(--yellow-color);
    max-height: 3em;
    height: 3em;
    overflow: hidden;
    margin-bottom: 1em;
    text-transform: uppercase;
  }
  .project-description {
    padding-left: 1em;
    border-left: 4px solid transparent;
    font-size: .9em;
    line-height: 1.2;
    max-height: 6em;
    height: 6em;
    overflow: hidden;
    margin-bottom: 1em;
  }
  .promo-col {
    flex: 1;
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    padding: 4em 3em;
  }
  .col-dark { background-image: url(images/promo-left-bg-image.jpg); }
  .col-yellow { background-image: url(images/promo-right-bg-image.jpg); }
  .overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
  }
  .overlay-dark {
    background-color: rgba(16, 28, 48, .85);
  }
  .overlay-yellow {
    background-color: rgba(242, 183, 5, .85);
  }
  .promo-content {
    z-index: 2;
    max-width: 500px;
    width: 100%;
  }
  .dual-promo-section .col-dark .promo-content {
    position: absolute;
    right: 6.1em;
  }
  .dual-promo-section .col-yellow .promo-content {
    position: absolute;
    left: 3em;
  }
  .promo-title {
    font-size: 1.8em;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--yellow-color);
    border-left: 5px solid var(--yellow-color);
    padding-left: 1em;
    margin-bottom: .5em;
    line-height: 1.2;
  }
  .promo-desc {
    line-height: 1.6;
    color: var(--white-color);
    margin-bottom: 35px;
  }
  .home-carousel {
    background: var(--yellow-color);
    padding: 4em 0;
    width: 100%;
    overflow: hidden;
  }
  .carousel-title {
    font-size: 1.6em;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: .5em;
    line-height: 1.2;
  }
  .carousel-description {
    font-size: .9em;
    line-height: 1.2;
    color: var(--blue-color);
    margin-bottom: 3em;
  }
  .nav-arrow {
    width: 45px;
    height: 45px;
    background: transparent;
    border: 2px solid var(--white-color);
    color: var(--white-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  .slider-card {
    flex: 0 0 32%; 
    max-width: 32%;
    padding: 1em;
    border: 10px solid rgba(228, 171, 30, .8);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--blue-color); 
  }

  .page-hero-header {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--yellow-color);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1200 400' preserveAspectRatio='none'%3E%3Cdefs%3E%3Cstyle%3E.t1%7Bfill:%23ffcc00;opacity:0.2;%7D.t2%7Bfill:%23e6a800;opacity:0.15;%7D.t3%7Bfill:%23ffffff;opacity:0.1;%7D%3C/style%3E%3C/defs%3E%3Cpolygon class='t1' points='1200,400 600,400 1200,0'/%3E%3Cpolygon class='t2' points='1200,0 800,0 1200,300'/%3E%3Cpolygon class='t3' points='900,400 1200,100 1200,400'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
  }
  .page-hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%;
    background: var(--blue-color);
    z-index: 1;
    clip-path: polygon(0 0, 50% 0, 55% 100%, 0% 100%);
  }
  .hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
  }
  .hero-content {
    width: 45%; 
    padding-right: 20px;
  }
  .hero-title {
    font-size: 2.5em;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--yellow-color);
    border-left: 5px solid var(--yellow-color);
    padding-left: .5em;
    margin-left: .5em;
    margin-bottom: .25em;
    line-height: 1;
  }
  .breadcrumb-nav {
    padding-left: 1.2em;
  }
  .breadcrumb-list {
    display: flex;
    gap: .5em;
    font-size: .9em;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white-color);
    list-style: none;
    padding-left: 0;
  }
  .breadcrumb-item a { color: var(--white-color); }
  .breadcrumb-item a:hover { color: var(--yellow-color); }
  .breadcrumb-item.active { color: var(--white-color); cursor: default; }
  .breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    margin-right: 8px;
    color: var(--white-color);
  }
  .info-grid { 
    list-style: none;
    padding: 2em 1em;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1em;
  }
  .info-item { flex: 1; }
  .info-icon-box {
    display: inline-block;
    width: fit-content;
    padding: .8em 1em;
    border: 2px solid var(--blue-color);
  }
  .info-text {
    margin-top: .25em;
  }
  .info-text>div {
    text-transform: uppercase;
    color: var(--blue-color);
    font-size: 1em;
    font-weight: bold;
  }
  .info-text>span { color: var(--blue-color); }
  .social-web-bar { padding: 2em 0; background: var(--blue-color); }
  .social-bar-flex {
    display: flex;
    justify-content: space-between;
    gap: 1em;
    justify-content: center;
    align-items: center;
  }
  .social-bar-flex>div { flex: 1; display: flex; align-items: center; }
  .web-link-container { padding-left: 1em; }
  .web-icon-container { display: inline-block; }
  .web-icon-container>span {
    padding: .5em;
    border: 1px solid var(--white-color);
    color: var(--white-color);
  }
  .web-text { margin-left: .5em; color: var(--white-color); line-height: 1.1; }
  .web-text>div { font-weight: bold; }
  .contact-main-section { display: flex; justify-content: space-between; }
  .contact-main-section>div { flex: 1; }
  .map-container { width: 100%; max-height: 300px; height: 300px; }
  .business-contact-details { 
    background: var(--yellow-color);
    color: var(--white-color);
    padding: 3em 3em 3em 27em;
    height: 100%;
  }
  .contact-details-container { display: flex; gap: 1em; justify-content: space-around; }
  .contact-details-container>div { flex: 1; }
  .business-contact-detail { margin-bottom: 1em; }
  .business-contact-detail h3 { text-transform: uppercase; margin-bottom: 0; }
  .form-container { background: var(--gray-color-4); }
  .form-container>div { padding: 2em 0 2em 2em; }

  .popup-dialog {
    border: none;
    padding: 0;
    border-radius: 0;
    background: #eaeff2;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    position: absolute;
    left: 45%;
    top: 45%;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .popup-dialog[open] {
    opacity: 1;
    transform: translateY(0);
  }
  .popup-dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.5);
  }
  .dialog-content {
    padding: 3em 2em;
    text-align: center;
    color: var(--blue-color);
  }
  .dialog-logo {
    max-width: 200px;
    margin: 2em auto;
  }
  .dialog-message {
    font-size: 1em;
    font-weight: 600;
  }
  .dialog-close-btn {
    position: absolute;
    top: 1em;
    right: 1em;
    width: 1em;
    height: 1em;
    padding: .75em;
    background: #aeb4b7;
    border: none;
    color: var(--white-color);
    font-size: .8em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    outline: none;
  }

  .text-wrapper>p { margin: 2em 0; }
  .gallery {
    margin: 3em 0;
  }
  .img-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: .5em 2em .5em 1em;
    font-size: ,9em;
    font-weight: bold;
    z-index: 2;
    background: var(--white-color);
    color: var(--blue-color);
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
    transition: opacity 0.3s;
  }
  .img-badge::before {
    content: '';
    position: absolute;
    top: 2px;
    right: 2px;
    bottom: 0;
    left: 0;
    z-index: -1;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);    
    background: var(--yellow-color);
  }
  .gallery-item:nth-child(odd) .img-badge { color: var(--yellow-color); }
  .gallery-item:nth-child(odd) .img-badge::before {
    background: var(--blue-color);
  }
  body.gallery-page .overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 1em;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    z-index: 3;
  }
  body.gallery-page .overlay-title {
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    padding-left: 1em;
    border-left: 5px solid var(--blue-color);
  }
  body.gallery-page .overlay-desc {
    font-size: .9em;
    line-height: 1.5;
    margin-bottom: 1em;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
    padding-left: 1.7em;
  }
  body.gallery-page .overlay-icon {
    transform: translateY(20px);
    opacity: 0;
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s; /* Καθυστέρηση 0.2s */
    padding-left: 1.7em;
  }
  .video-section { margin: 3em 0 0 0; }
  .video-band { width: 100%; margin-top: 180px; padding-bottom: 80px; }
  .band-yellow { background: var(--yellow-color); }
  .band-dark { background: var(--blue-color); }
  .band-grey { background: var(--gray-color-4); }
  .video-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3em;
  }
  .video-card {
    display: flex;
    flex-direction: column;
  }
  .video-media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-top: -80px; 
    margin-bottom: 25px;
    overflow: hidden;
  }
  .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 50px;
    background: transparent;
    border: 2px solid var(--white-color);
    color: var(--white-color);
    font-size: 1.1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
  }
  .video-media { max-height: 500px; }
  .video-media img { width: 100%; height: 100%; object-fit: cover; }
  .video-media iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    border: none;
  }
  .video-info {
    display: flex;
    align-items: flex-start;
    gap: 1em;
  }
  .video-num {
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
  }
  .video-title {
    font-size: 1.2em;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: .5em;
    line-height: 1.4;
  }
  .video-desc {
      font-size: .875em;
      line-height: 1.2;
  }
  .band-yellow .video-num, 
  .band-yellow .video-title { color: var(--blue-color); }
  .band-yellow .video-desc { color: var(--white-color); }
  .band-dark .video-num, 
  .band-dark .video-title { color: var(--yellow-color); }
  .band-dark .video-desc { color: var(--white-color); }
  .band-grey .video-num, 
  .band-grey .video-title { color: var(--yellow-color); }
  .card-landscape {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 3em;
  }
  .card-landscape .video-media {
    flex: 1;
    margin-bottom: 0;
    margin-top: -60px;
  }
  .card-landscape .video-info {
    flex: 1;
    padding-bottom: 20px;
    padding-top: 20px;
  }

  .results-list {
    list-style: none;
    width: 100%;
    padding-left: 0;
  }
  .result-item:nth-child(odd) { background: var(--results-bg-color-odd); }
  .result-item:nth-child(even) { background: var(--results-bg-color-even); }
  .result-card {
    display: flex;
    align-items: center;
    padding: 2em 0;
    gap: 2.2em;
  }
  .result-icon-box {
    width: 55px;
    height: 55px;
    background: var(--yellow-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25em;
    flex-shrink: 0;
  }
  .result-content { flex: 1; }
  .result-title {
    font-size: 1.5em;
    font-weight: bold;
    text-transform: uppercase;
    color: var(--yellow-color);
    line-height: 1.3;
  }
  .result-desc {
    font-size: .9em;
    line-height: 1.2;
    color: var(--text-grey);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .result-action { flex-shrink: 0; }

  .articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
  }

  .pagination { margin: 2em 0; }
  .pagination-nav { display: flex; justify-content: flex-start; }
  .pagination-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding-left: 0;
  }
  .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border: 1px solid var(--blue-color);
    color: var(--blue-color);
    font-size: .9em;
    font-weight: 700;
    background: transparent;
  }
  .article-wrapper { margin: 3em 1em 2em 1em; }
  .article-wrapper>p { margin-bottom: 1em; }
  .article-inline-image.align-right {
    float: right;
    width: 40%;
    margin: 1em 0 1em 1em;
  }
  .article-inline-image.align-left {
    float: left;
    width: 40%;
    margin: 1em 1em 1em 0;
  }
  .article-footer { padding: 1.5em 0; background: var(--gray-color-4); }
  .back-btn { 
    background: transparent;
    border: unset;
    color: var(--blue-color);
    margin-left: 1em;
    text-transform: uppercase;
    font-weight: bold;
  }

  .offer-countdown {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
  }
  .countdown-label {
    background: var(--yellow-color);
    color: var(--white-color);
    font-size: 14px;
    font-weight: bold;
    padding: 6px 30px 6px 15px; 
    text-transform: uppercase;    
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 0% 100%);
  }
  .countdown-timer {
    background: var(--blue-color);
    color: var(--white-color);
    display: flex;
    gap: 25px;    
    padding: 10px 40px 10px 15px; 
    clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 0% 100%);
  }
  .band-dark .countdown-label,
  .band-grey .countdown-label { background: var(--blue-color); }
  .band-dark .countdown-timer,
  .band-grey .countdown-timer { background: var(--yellow-color); }
  .time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
  }
  .time-val {
    font-size: 1em;
    font-weight: 800;
    margin-bottom: .25em;
  }
  .time-text {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    opacity: 0.9;
    letter-spacing: 0.5px;
  }
  .offer-buttons { margin-top: 1.5em; display: flex; gap: 1em; }
  .submit-request-btn {
    background: transparent;
    color: var(--white-color);
    font-size: .9em;
    font-weight: bold;
    text-transform: uppercase;
    border: unset;
  }
  .band-grey .submit-request-btn { color: var(--blue-color); }
  .coupon-code { font-size: .8em; line-height: 1.1; font-weight: 500; }
  .band-yellow .coupon-code { color: var(--blue-color); }
  .band-dark .coupon-code, .band-grey .coupon-code { color: var(--yellow-color); }

  @media screen and (max-width: 150em) {
    .slider-prev-btn {
      left: 20em;
    }
  }

  @media screen and (max-width: 140em) {
    .slide::after, .promo-section::after {
      left: 40%;
      width: 225px;
    }
  }

  @media screen and (max-width: 120em) {
    .slider-next-btn {
      right: 10em;
    }
    .slider-prev-btn {
      left: 10em;
    }
  }

  @media screen and (max-width: 100em) {
    .slide::after, .promo-section::after {
      transform: unset;
    }
    .slider-next-btn {
      right: 5em;
    }
    .slider-prev-btn {
      left: 5em;
    }
  }

  @media screen and (max-width: 90.625em) {
    .slider-control {
      top: unset;
      left: 9.5em;
      right: unset;
      bottom: 2.5em;
    }
    .slider-next-btn { margin-left: 5em; }
  }

  @media screen and (max-width: 75em) {
    .logo { width: 300px; }
    .mobile-menu-label {
        display: block;
        width: 30px;
        height: 25px;
        position: relative;
    }
    .mobile-menu-label span,
    .mobile-menu-label span::before,
    .mobile-menu-label span::after {
        background-color: var(--blue-color);
        height: 3px;
        width: 100%;
        position: absolute;
        border-radius: 2px;
        transition: all 0.3s;
    }
    .mobile-menu-label span { top: 11px; }
    .mobile-menu-label span::before { content: ''; top: -8px; }
    .mobile-menu-label span::after { content: ''; top: 8px; }
    .menu {
      display: none;
      width: 100%;
      flex-direction: column;
    }
    .menu-link {
      display: block;
      padding: .5em;
    }
    .mobile-menu:checked ~ .menu {
        display: flex;
        animation: slideDown 0.3s ease-in-out;
    }
    .mobile-menu:checked ~ .mobile-menu-label span { background: transparent; }
    .mobile-menu:checked ~ .mobile-menu-label span::before { top: 0; transform: rotate(45deg); }
    .mobile-menu:checked ~ .mobile-menu-label span::after { top: 0; transform: rotate(-45deg); }
    .slide-image { flex-grow: 2; }
    .slide::after, .promo-section::after { display: none; }
    .content-inner {
      width: 100%;
      position: relative;
      right: unset;
      top: unset;
      padding: 1.5em;
    }
    .slide-title { font-size: 1.5em; margin-bottom: 2em; }
    .slider-control {
      left: unset;
    }
    .slider-prev-btn { margin-left: 1.5em; }
    .slider-next-btn { margin-left: 6.5em; }

    .articles-section { background: var(--blue-color); }
    .gallery-grid , .articles-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 στήλες σε tablets */
    }
    .contact-section-left { display: block; }
    .visual-content {
      position: relative;
      max-width: 100%;
      right: unset;
      padding: 2em 1em;
    }
    .contact-section-right {
      padding-left: 1em;
      padding-right: 1em;
    }
    .contact-form { width: 100%; max-width: 100%; }
    .dual-promo-section .col-dark .promo-content,
    .dual-promo-section .col-yellow .promo-content { position: relative; left: unset; right: unset; max-width: 100%; }
    .slider-card {
      flex: 0 0 48%;
      max-width: 48%;
    }
    .contact-main-section { flex-direction: column; }
    .business-contact-details { padding: 3em 1em; }
    .form-container>div { padding: 2em 1em; }
    .video-grid-2 { grid-template-columns: repeat(1, 1fr); }
    .video-card { margin-bottom: 5em; }
  }

  @media screen and (max-width: 65em) {
    .welcome-text-left { width: 100%; }
    .welcome-text-left>p { width: 100%; }
  }

  @media screen and (max-width: 62.5em) {
    .footer-container { padding: 1rem 1rem 2rem 1rem; }
    .footer-top { display: block; }
    .footer-top>.company-brand, .footer-top>.footer-menu, .footer-top>.address-details { 
      padding: 1em 1em 2em 0;
      border-right: unset;
      border-bottom: 2px solid var(--blue-gray-color);
      text-align: center;
    }
    .footer-menu .menu-item { margin: 0; }
    .footer-top>.address-details { border-bottom: unset; }
    .footer-top .logo { margin-left: auto; margin-right: auto; }
    .footer .contact-info {
      display: inline-block;
      margin-left: auto;
      margin-right: auto;
    }
    .search-btn { right: 0; left: 14rem; }
    .footer .contact-detail { display: inline-block; width: 350px; }
    .address {
      display: inline-block;
      margin-left: auto;
      margin-right: auto;
      padding-left: 10rem;
    }
    .card-landscape { flex-direction: column; }
    .article-inline-image.align-right,
    .article-inline-image.align-left { float: unset; width: 100%; margin: 1em 0; }
    .article-inline-image img { width: 100%; height: auto; }
  }

  @media screen and (max-width: 50em) {
    .page-hero-header::before { clip-path: unset; }
    .hero-content { width: 100%; }
    .info-grid { flex-direction: column; text-align: center; }
    .social-bar-flex { flex-direction: column; }
    .contact-details-container { flex-direction: column; text-align: center; }
  }

  @media screen and (max-width: 45em) {
    .footer-menu .menu-item { margin: .5em 0; }
    .footer-menu .menu-item .menu-link { padding: .25em; }
    .address { padding-left: 0; }
    .footer .contact-detail { width: fit-content; }
    .popup-dialog { left: 1em; }
  }

  @media screen and (max-width: 37.5em) {
    .gallery-grid, .articles-grid, .contact-form { grid-template-columns: 1fr; }
    .project-content { margin-top: 0; }
    .promo-col { padding: 1em; }
    .result-card { flex-direction: column; }
    .hero-content .search-btn { left: unset; right: .5em; }
  }

  @keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/*
  UTILITIES

  Small single-purpose classes (like Tailwind-ish ideas).
  These are intentionally “quick wins” and should be consistent.
 */
@layer utilities {
  .icon { 
    width: 1em; 
    height: 1em; 
    display: inline; 
    vertical-align: -0.125em; 
    filter: var(--blue-color-icon); 
  }
  .menu-icon {
    width: .75em; 
    height: 1em; 
    display: inline; 
    vertical-align: -0.125em; 
    filter: var(--blue-color-icon); 
  }
  .flag {
    width: 1em;
    height: 1em;
    display: inline;
    vertical-align: -0.125em;
  }
  .arrow-icon {
    width: 1.5em; 
    height: 1em; 
    display: inline; 
    vertical-align: -0.125em; 
    filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(340deg) brightness(99%) contrast(102%);
  }
  .read-more { text-transform: uppercase; }
  .article-read-more { color: var(--blue-color); text-transform: uppercase; font-weight: bold; }
  .full-width { grid-column: span 2; }
  .title-dark { color: var(--blue-color); border-left-color: var(--blue-color); }
  .card-icon {
    font-size: 3em;
    margin-bottom: .2em;
    color: var(--blue-color);
  }
  .card-title {
    font-size: 1.15em;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: .5em;
    line-height: 1.4;
  }
  .card-text {
    font-size: .8em;
    line-height: 1.2;
    margin-bottom: 1em;
    font-weight: 500;
  }

  @media screen and (max-width: 37.5em) {
    .full-width { grid-column: span 1; }
  }
}

/*
  PAGE-SPECIFIC / OVERRIDES

  This is OPTIONAL, try to keep it minimal.

  Instead of IDs, it’s often:

  * route-level wrappers (.page-home, .page-pricing)
  * one-off overrides
 */
@layer overrides {
  .page-home .hero {
    padding-block: 4rem;
  }
  .footer .address .icon {
    filter: var(--white-color-icon);
    width: 1em;
    height: 1em;
  }
  .search-btn .icon { width: 1.25em; height: 1.25em; }
  .footer-bottom .footer-container { 
    display: flex; 
    gap: 2em;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
  }
  .footer-bottom .lang-code { color: var(--white-color); }
  .footer-bottom .menu-icon { filter: var(--white-color-icon); }
  .footer-bottom #language-list {
    top: -7.5rem;
  }
  .footer-bottom #language-list .lang-code { color: var(--blue-color); }
  .article-read-more>.arrow-icon { filter: var(--blue-color-icon); }
  .view-all-content .icon {
    display: block;
    margin: 0 auto 1em auto;
    filter: var(--white-color-icon) !important;
    width: 8em;
    height: 8em;
  }
  .articles-section .article-read-more { color: var(--white-color); }
  .articles-section .article-read-more .arrow-icon { filter: var(--white-color-icon); }
  .submit-btn .arrow-icon { filter: var(--blue-color-icon); }
  .features-section .read-more { color: var(--blue-color); font-weight: bold; }
  .features-section .read-more .arrow-icon { filter: var(--blue-color-icon); }
  .projects-section .read-more { color: var(--blue-color); font-weight: bold; padding-left: 1em; border-left: 4px solid transparent; }
  .projects-section .read-more .arrow-icon { filter: var(--blue-color-icon); }
  .dual-promo-section .read-more { font-weight: bold; color: var(--white-color); }
  .home-carousel .read-more { font-weight: bold; }
  .info-icon-box .icon {
    width: 1.5em;
    height: 1.5em;
  }
  .social-bar-flex .social { justify-content: end; padding-right: .5em; }
  .social-bar-flex .social-item { background: var(--white-color); padding: .5em; }
  body.gallery-page .gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    width: 100%;
  }
  body.gallery-page .gallery-item figure {
    width: 100%;
    height: 100%;
    margin: 0;
    position: relative;
  }
  body.gallery-page .gallery-item figure img {
    transition: transform 0.5s ease;
  }
  body.gallery-page .arrow-icon { filter: var(--white-color-icon); }
  .hero-content .search-form { padding-left: 1.2em; margin-top: .5em; }
  .hero-content .search-form input { width: 100%; }
  body.search-page .read-more { color: var(--blue-color); font-weight: bold; }
  body.search-page .read-more .arrow-icon { filter: var(--blue-color-icon); }
  body.articles-page .video-band { padding-bottom: 40px; }
  body.articles-page .video-desc { margin-bottom: 1em; }
  body.articles-page .read-more { color: var(--white-color); font-weight: bold; }
  body.articles-page .read-more .arrow-icon { filter: var(--white-color-icon); }
  body.articles-page .band-grey .read-more { color: var(--blue-color); }
  body.articles-page .band-grey .read-more .arrow-icon { filter: var(--blue-color-icon); }
  .back-btn .arrow-icon { filter: var(--blue-color-icon); }
  body.offers-page .video-media { margin-top: -120px; }
  .offer-buttons .read-more { 
    color: var(--white-color);
    border: 1px solid var(--white-color);
    padding: .75em 1em;
    font-weight: bold;
    text-transform: uppercase;
    font-size: .9em;
  }
  .band-grey .offer-buttons .read-more { border: 1px solid var(--blue-color); color: var(--blue-color); }
  .band-grey .submit-request-btn .arrow-icon { filter: var(--blue-color-icon); }
  body.offers-page .video-title { margin-bottom: 0; }
  body.offers-page .video-desc { margin-top: 1em; }

  #declare-interest-dialog { max-width: 700px; width: 700px; left: 30%; top: 30%; }
  #declare-interest-dialog .offer-dialog-header,
  #error-on-declare-interest-dialog .offer-dialog-header {
    background: var(--yellow-color);
    padding: 2em;
    display: flex;
    gap: 1em;
    justify-content: space-between;
    align-items: center;
  }
  #declare-interest-dialog .dialog-header-content,
  #error-on-declare-interest-dialog .dialog-header-content { 
    line-height: 1.2;
    padding-left: .5em;
    border-left: 3px solid var(--blue-color);
    flex: 2;
  }
  #declare-interest-dialog .offer-title,
  #error-on-declare-interest-dialog .offer-title {
    font-size: 1.1em;
    font-weight: bold;
    color: var(--blue-color);
    text-transform: uppercase;
  }
  #declare-interest-dialog .offer-coupon,
  #error-on-declare-interest-dialog .offer-coupon {
    color: var(--white-color);
    font-size: .875em;
    font-weight: 500;
  }
  #close-offer-dialog-btn,
  #close-offer-error-dialog-btn {
    background: rgba(0, 0, 0, 0.2);
    border: none;
    color: var(--white-color);
    width: 20px;
    height: 20px;
    font-size: 12px;
    padding: 0;
    outline: none;
  }
  #declare-interest-dialog .offer-dialog-body,
  #error-on-declare-interest-dialog .offer-dialog-body { padding: 2em; }
  #declare-interest-dialog .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    margin-bottom: 2em;
  }
  #declare-interest-dialog .form-group.full-width { grid-column: 1 / -1; }
  #declare-interest-dialog .form-actions { text-align: right; }
  #declare-interest-dialog .submit-offer-btn {
    background: transparent;
    border: none;
    text-transform: uppercase;
    font-size: .875em;
    font-weight: bold;
    color: var(--blue-color);
  }
  #declare-interest-dialog .submit-offer-btn .arrow-icon { filter: var(--blue-color-icon); }
  #error-on-declare-interest-dialog .error-message-container {
    display: flex;
    justify-content: space-between;
    gap: 1em;
    align-items: center;
  }
  #error-on-declare-interest-dialog .error-icon { font-size: 48px; color: var(--blue-color); }
  #error-on-declare-interest-dialog .error-text p {
    color: var(--blue-color);
    font-size: .875em;
    line-height: 1.4;
    font-weight: 500;
  }
  #error-on-declare-interest-dialog .error-dialog-footer { 
    padding: 1em 2em;
    text-align: center;
    border-top: 2px solid var(--gray-color-3);
  }
  #error-on-declare-interest-dialog #retry-offer-btn {
    background: transparent;
    border: none;
    color: var(--yellow-color);
    font-size: 1.25em;
    font-weight: 500;
  }

  @media screen and (max-width: 75em) {
    body.offers-page .video-media {
      margin-top: -80px;
    }
  }

  @media screen and (max-width: 37.5em) {
    #declare-interest-dialog {
      max-width: 100%;
      width: 100%;
      left: 0;
    }
    #declare-interest-dialog .form-grid { display: block; }
    #declare-interest-dialog .form-grid .form-group { margin: 1em 0; }
    #error-on-declare-interest-dialog, #contact-form-message-sent { left: 0; }
  }
}

/*
  STATES & HELPERS

  We MAY need some of these.
 */
@layer states {
  .is-active>.menu-link {
    color: var(--yellow-color);
  }
  .is-active::before {
    content: "";
    position: absolute;
    top: -1.1em;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--gray-color);
  }
  .menu-link:hover { background: var(--gray-color-2); }
  .sub-menu .menu-link:hover { background: inherit; }
  .sub-menu>.menu-item:hover {
    background: var(--yellow-color);
    border-left: 3px solid var(--blue-color);
    border-bottom: 2px solid var(--yellow-color);
  }
  .sub-menu-lvl2>.menu-item:hover {
    background: var(--blue-color);
    color: var(--yellow-color);
    border-left: 3px solid var(--yellow-color);
  }
  .sub-menu-lvl2>.menu-item:hover .menu-link {
    color: var(--yellow-color);
  }
  .lang-switcher:focus-within #language-list { display: block; }
  .lang-switcher:focus-within .menu-arrow-down { display: none; }
  .lang-switcher:focus-within .menu-arrow-up { display: block; }
  #language-list a:hover { background: var(--yellow-color); }
  .slide-read-more:hover { color: var(--yellow-color); }
  .slide-read-more:hover .arrow-icon { 
    filter: invert(84%) sepia(22%) saturate(6513%) hue-rotate(349deg) brightness(105%) contrast(90%);
  }
  .slider-control:hover {
    border: 1px solid var(--yellow-color);
    background: var(--yellow-color);
  }

  .read-more:hover { color: var(--yellow-color); }
  .read-more:hover .arrow-icon { 
    filter: invert(84%) sepia(22%) saturate(6513%) hue-rotate(349deg) brightness(105%) contrast(90%);
  }
  .footer-menu .is-active::before { display: none; }
  .footer-menu .menu-link:hover { background: inherit; color: var(--yellow-color); }
  .footer-menu .is-active .arrow-icon {
    margin-right: .5em;
    filter: var(--yellow-color-icon);
  }
  .footer-bottom .lang-switcher:focus-within .menu-arrow-down { display: block; }
  .footer-bottom .lang-switcher:focus-within .menu-arrow-up { display: none; }
  .article-read-more:hover { color: var(--yellow-color); }
  .article-read-more:hover>.arrow-icon { filter: var(--yellow-color-icon); }
  .view-all-articles:hover { color: var(--yellow-color); }
  .view-all-articles:hover .arrow-icon { filter: var(--yellow-color-icon); }
  .submit-btn:hover { color: var(--yellow-color); }
  .submit-btn:hover .arrow-icon { filter: var(--yellow-color-icon); }
  .dual-promo-section .col-yellow .read-more:hover { color: var(--blue-color); }
  .dual-promo-section .col-yellow .read-more:hover .arrow-icon { filter: var(--blue-color-icon); }
  .nav-arrow:hover { background: var(--blue-color); }
  .home-carousel .read-more:hover { color: var(--white-color); }
  .home-carousel .read-more:hover .arrow-icon { filter: var(white-color-icon); }
  .dialog-close-btn:hover { background: var(--yellow-color); }
  body.gallery-page .gallery-item:hover figure img {
    transform: scale(1.1);
  }
  body.gallery-page .gallery-item:hover .img-badge { opacity: 0; }
  body.gallery-page .gallery-item:hover .overlay-content { opacity: 1; }
  body.gallery-page .gallery-item:hover .overlay-title,
  body.gallery-page .gallery-item:hover .overlay-desc,
  body.gallery-page .gallery-item:hover .overlay-icon {
      transform: translateY(0);
      opacity: 1;
  }
  .gallery-item:nth-child(odd):hover .overlay-content {
    background: var(--blue-color);
    opacity: .95;
    color: var(--white-color);
  }
  .gallery-item:nth-child(odd):hover .overlay-title {
    color: var(--yellow-color);
    border-left: 5px solid var(--yellow-color);
  }
  .gallery-item:nth-child(even):hover .overlay-content {
    background: var(--yellow-color);
    opacity: .95;
    color: var(--white-color);
  }
  .gallery-item:nth-child(even):hover .overlay-title {
    color: var(--blue-color);
  }
  .play-btn:hover {
    background-color: var(--yellow-color);
    border-color: var(--yellow-color);
    color: var(--blue-color);
    transform: translate(-50%, -50%) scale(1.1);
  }
  .result-title:hover { color: var(--blue-color); }

  body.articles-page .band-yellow .read-more:hover { color: var(--blue-color); }
  body.articles-page .band-yellow .read-more:hover .arrow-icon { filter: var(--blue-color-icon); }
  body.articles-page .band-dark .read-more:hover { color: var(--yellow-color); }
  body.articles-page .band-dark .read-more:hover .arrow-icon { filter: var(--yellow-color-icon); }
  .page-link.active { color: var(--white-color); background: var(--yellow-color); border: 1px solid var(--yellow-color); }
  .page-link:hover { color: var(--white-color); background: var(--yellow-color); border: 1px solid var(--yellow-color); }
  .back-btn:hover { color: var(--yellow-color); }
  .back-btn:hover .arrow-icon { filter: var(--yellow-color-icon); }
  .band-yellow .offer-buttons .read-more:hover,
  .band-grey .offer-buttons .read-more:hover { 
    background: var(--blue-color); 
    color: var(--yellow-color);
    border: 1px solid var(--blue-color);
  }
  .band-dark .offer-buttons .read-more:hover {
    background: var(--yellow-color); 
    color: var(--blue-color);
    border: 1px solid var(--yellow-color);
  }
  .submit-request-btn:hover { color: var(--blue-color); }
  .band-dark .submit-request-btn:hover { color: var(--yellow-color); }
  .band-yellow .submit-request-btn:hover .arrow-icon { filter: var(--blue-color-icon); }
  .band-dark .submit-request-btn:hover .arrow-icon { filter: var(--yellow-color-icon); }
  .band-grey .submit-request-btn:hover { color: var(--yellow-color); }
  .band-grey .submit-request-btn:hover .arrow-icon { filter: var(--yellow-color-icon); }
  #declare-interest-dialog .submit-offer-btn:hover { color: var(--yellow-color); }
  #declare-interest-dialog .submit-offer-btn:hover .arrow-icon { filter: var(--yellow-color-icon); }

  @media screen and (max-width: 75em) {
    .is-active::before {
      display: none;
    }
    .menu-item.has-submenu>.menu-link { display: inline-block; }
    .sub-menu, .sub-menu-lvl2 {
      position: relative;
      top: 0;
      left: 0;
      width: 100%;
    }
  }
}

