/* ===================================================================
 * Breadcrumb Navigation
 * ------------------------------------------------------------------- */
.breadcrumb-container {
  background: #f8f9fa;
  padding: 1rem 0;
  margin: 0;
  border-bottom: 1px solid #e9ecef;
  position: relative;
  z-index: 100;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  color: #6c757d;
}

.breadcrumb-item a {
  color: #495057;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: #d4af37;
}

.breadcrumb-item.active {
  color: #d4af37;
  font-weight: 500;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  padding: 0 0.5rem;
  color: #adb5bd;
}

@media screen and (max-width: 768px) {
  .breadcrumb {
    font-size: 0.85rem;
  }
  
  .breadcrumb-item + .breadcrumb-item::before {
    padding: 0 0.35rem;
  }
}

/* Universal fade-in utility for sections and content */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}
/* Contact form */
.contact-form-row {
  margin-top: 3rem;
}

.contact-card {
  background: #ffffff;
  border: none;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}

.contact-card:hover {
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.contact-form-header {
  margin-bottom: 2.5rem;
  text-align: center;
}

.contact-form-header h3 {
  margin-bottom: 0.75rem;
  font-size: 2rem;
  color: #1f2937;
  font-weight: 700;
}

.contact-form-subtitle {
  color: #6b7280;
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

.contact-form .form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.contact-form .form-field.full {
  grid-column: 1 / -1;
}

.contact-form .form-field {
  position: relative;
}

.contact-form label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: #374151;
  font-weight: 600;
  margin-bottom: 0.75rem;
  transition: color 0.2s ease;
}

.contact-form label i {
  color: #d4af37;
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  color: #1f2937;
  transition: all 0.3s ease;
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
}

.contact-form input:hover,
.contact-form textarea:hover {
  border-color: #d1d5db;
  background: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #d4af37;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
  font-family: inherit;
}

.contact-form .form-field:focus-within label {
  color: #d4af37;
}

.contact-form .form-field:focus-within label i {
  color: #b8860b;
}

/* Fix Safari/Chrome autofill background */
.contact-form input:-webkit-autofill,
.contact-form textarea:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
  -webkit-text-fill-color: #1f2937;
  border-color: #d4af37;
  transition: background-color 5000s ease-in-out 0s;
}

.contact-form ::placeholder {
  color: #9ca3af;
  opacity: 1;
}

.form-submit-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.contact-form button.btn--primary,
.contact-submit-btn {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: #000;
  padding: 1.1rem 2.5rem;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.contact-form button.btn--primary::before,
.contact-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.contact-form button.btn--primary:hover::before,
.contact-submit-btn:hover::before {
  left: 100%;
}

.contact-form button.btn--primary:hover,
.contact-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #b8860b 0%, #9a7209 100%);
}

.contact-form button.btn--primary:active,
.contact-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.contact-form button.btn--primary i,
.contact-submit-btn i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.contact-form button.btn--primary:hover i,
.contact-submit-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .contact-card {
    padding: 2rem 1.5rem;
    border-radius: 12px;
  }

  .contact-form-header h3 {
    font-size: 1.75rem;
  }

  .contact-form-header {
    margin-bottom: 2rem;
  }

  .contact-form .form-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.9rem 1rem;
  }

  .contact-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
  }
}

@media (max-width: 480px) {
  .contact-card {
    padding: 1.5rem 1rem;
  }

  .contact-form-header h3 {
    font-size: 1.5rem;
  }

  .contact-form-subtitle {
    font-size: 0.9rem;
  }
}
/* Generic fade-up reveal utility */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* Projects display styles */
.projects-display {
  padding: 6rem 0 4rem;
  background: #f8f8f8;
}

.projects-style {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.projects-style-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.projects-style-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1.2rem;
  margin-bottom: 1.6rem;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.12);
  color: #8a6d1d;
}

.projects-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.5rem;
}

.projects-category-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 3.5rem;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.projects-category-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.9rem;
  border-radius: 999px;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  vertical-align: middle;
}

.projects-category-badge--commercial {
  background: rgba(212, 175, 55, 0.18);
  color: #8a6d1d;
}

.projects-category-badge--residential {
  background: rgba(16, 185, 129, 0.18);
  color: #047857;
}

.projects-category-card__header h3 {
  margin-top: 0;
  margin-bottom: 1.2rem;
  font-size: 2.4rem;
  color: #0f172a;
  font-family: "Montserrat", sans-serif;
}

.projects-category-card__header p {
  margin: 0;
  color: #4b5563;
  font-size: 1.6rem;
}

.projects-category-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.8rem;
}

.projects-category-list li {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid #e5e7eb;
}

.projects-category-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.project-name {
  font-weight: 600;
  font-size: 1.8rem;
  color: #111827;
  font-family: "Montserrat", sans-serif;
}

.project-meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  color: #6b7280;
  font-size: 1.5rem;
}

.project-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.project-tag--commercial {
  background: rgba(212, 175, 55, 0.18);
  color: #8a6d1d;
}

.project-tag--residential {
  background: rgba(16, 185, 129, 0.12);
  color: #047857;
}

@media (max-width: 1024px) {
  .projects-category-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .projects-display {
    padding: 4.5rem 0 3rem;
  }

  .projects-category-card {
    padding: 2.8rem;
  }
}

@media (max-width: 540px) {
  .projects-category-card {
    padding: 2.4rem;
  }

  .project-meta-line {
    flex-direction: column;
    align-items: flex-start;
  }
}

.projects-style-gallery {
  padding: 4rem 0 6rem;
}

.projects-style-gallery__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.2rem;
}

.projects-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.4rem;
}

.projects-gallery-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.projects-gallery-card__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.projects-gallery-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.projects-gallery-card__body {
  padding: 2.2rem 2.4rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.projects-gallery-card__body h4 {
  margin: 0;
  font-size: 1.85rem;
  color: #0f172a;
  font-family: "Montserrat", sans-serif;
}

.projects-gallery-card__body p {
  margin: 0;
  color: #6b7280;
  font-size: 1.5rem;
}

.projects-gallery-card:hover .projects-gallery-card__image img {
  transform: scale(1.05);
}

.projects-gallery-card--commercial {
  border-top: 4px solid rgba(212, 175, 55, 0.7);
}

.projects-gallery-card--residential {
  border-top: 4px solid rgba(16, 185, 129, 0.6);
}

@media (max-width: 1024px) {
  .projects-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .projects-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Why us */
.why-us {
  padding: 6rem 0;
  background: #111827;
  color: #f9fafb;
}

.why-us .section-header h2,
.why-us .section-header p {
  color: #f9fafb;
}

.why-us-grid {
  margin-top: 3.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem 3rem;
}

.why-us-grid .column {
  flex: 1 1 280px;
  display: flex;
}

.why-us-card {
  background: rgba(17, 24, 39, 0.65);
  border: 1px solid rgba(249, 250, 251, 0.08);
  border-radius: 16px;
  padding: 3rem;
  height: 100%;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.3);
  backdrop-filter: blur(6px);
  width: 100%;
}

.why-us-card h3 {
  margin-top: 0;
  margin-bottom: 1.4rem;
  font-size: 2.2rem;
  color: #facc15;
  font-family: "Montserrat", sans-serif;
}

.why-us-card p {
  margin: 0;
  color: rgba(249, 250, 251, 0.82);
  font-size: 1.6rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .why-us {
    padding: 4.5rem 0;
  }

  .why-us-card {
    padding: 2.4rem;
  }
}
/* =================================================================== 
 *  Imminent Main Stylesheet
 *  Template Ver. 1.0.0
 *  09-19-2019
 *  ------------------------------------------------------------------
 *
 *  TOC:
 *  # base style overrides
 *    ## links 
 *  # typography & general theme styles 
 *    ## Lists
 *    ## responsive video container
 *    ## floated image
 *    ## tables
 *    ## Spacing
 *  # preloader
 *  # forms
 *    ## Style Placeholder Text
 *    ## Change Autocomplete styles in Chrome
 *  # buttons
 *  # additional components
 *    ## additional typo styles
 *    ## skillbars
 *    ## alert box
 *  # site header
 *    ## header logo
 *    ## header email 
 *  # intro
 *    ## intro slides
 *    ## intro particles 
 *    ## grid overlay
 *    ## intro content
 *    ## intro content text
 *    ## intro content bottom
 *    ## intro content counter
 *    ## intro content notify
 *    ## modal
 *    ## intro social
 *    ## intro scroll
 *    ## animate intro content
 *    ## intro animations
 *  # info section
 *    ## tabs
 *    ## copyright
 *    ## go top
 *
 * =================================================================== */



/* ===================================================================
 * # base style overrides 
 *
 * ------------------------------------------------------------------- */
html {
  font-size: 10px;
}

@media screen and (max-width:400px) {
  html {
    font-size: 9.444444444444444px;
  }

}

html,
body {
  height: 100%;
}

body {
  background: #ffffff;
  font-family: "Gothic A1", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: normal;
  line-height: 1.778;
  color: #000000;
  margin: 0;
  padding: 0;
  position: relative;
  margin: 0 auto;
}


/* ------------------------------------------------------------------- 
 * ## links 
 * ------------------------------------------------------------------- */
a {
  color: #8dc63f;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

a:hover,
a:focus,
a:active {
  color: #33648a;
}

a:hover,
a:active {
  outline: 0;
}



/* ===================================================================
 * # typography & general theme styles
 * 
 * ------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Gothic A1", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #000000;
  font-variant-ligatures: common-ligatures;
  text-rendering: optimizeLegibility;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  margin-top: 6rem;
  margin-bottom: 1.6rem;
}

@media screen and (max-width:600px) {
  h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
    margin-top: 5.6rem;
  }

}

h5, .h5, h6, .h6 {
  margin-top: 4.8rem;
  margin-bottom: 1.2rem;
}

@media screen and (max-width:600px) {
  h5, .h5, h6, .h6 {
    margin-top: 4.4rem;
    margin-bottom: 0.8rem;
  }

}

h1, .h1 {
  font-size: 3.6rem;
  line-height: 1.222;
}

@media screen and (max-width:600px) {
  h1, .h1 {
    font-size: 3.3rem;
  }

}

h2, .h2 {
  font-size: 3.2rem;
  line-height: 1.25;
}

h3, .h3 {
  font-size: 2.4rem;
  line-height: 1.167;
}

h4, .h4 {
  font-size: 2.1rem;
  line-height: 1.333;
}

h5, .h5 {
  font-size: 1.8rem;
  line-height: 1.333;
}

h6, .h6 {
  font-size: 1.6rem;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: .3rem;
}

p img {
  margin: 0;
}

p.lead {
  font-family: "Gothic A1", sans-serif;
  font-weight: 400;
  font-size: 2.6rem;
  line-height: 1.846;
  margin-bottom: 3.6rem;
  color: #000000;
}

@media screen and (max-width:1200px) {
  p.lead {
    font-size: 2.4rem;
  }

}

@media screen and (max-width:600px) {
  p.lead {
    font-size: 2.2rem;
  }

}

em,
i,
strong,
b {
  font-size: inherit;
  line-height: inherit;
}

em,
i {
  font-family: "Gothic A1", sans-serif;
  font-style: italic;
}

strong,
b {
  font-family: "Gothic A1", sans-serif;
  font-weight: 700;
}

small {
  font-size: 1.2rem;
  line-height: inherit;
}

blockquote {
  margin: 4rem 0;
  padding: 4rem 4rem;
  border-left: 4px solid black;
  position: relative;
  margin: 0 auto;
}

@media screen and (max-width:600px) {
  blockquote {
    padding: 3.2rem 3.2rem;
  }

}

@media screen and (max-width:400px) {
  blockquote {
    padding: 2.8rem 2.8rem;
  }

}

blockquote p {
  font-family: "Gothic A1", sans-serif;
  font-weight: 400;
  padding: 0;
  font-size: 2.8rem;
  line-height: 1.857;
  color: #000000;
}

@media screen and (max-width:1200px) {
  blockquote p {
    font-size: 2.6rem;
  }

}

@media screen and (max-width:600px) {
  blockquote p {
    font-size: 2.2rem;
  }

}

blockquote cite {
  display: block;
  font-family: "Gothic A1", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  line-height: 1.333;
}

blockquote cite:before {
  content: "\2014 \0020";
}

blockquote cite,
blockquote cite a,
blockquote cite a:visited {
  color: #646464;
  border: none;
}

abbr {
  font-family: "Gothic A1", sans-serif;
  font-weight: 700;
  font-variant: small-caps;
  text-transform: lowercase;
  letter-spacing: .05rem;
  color: #646464;
}

var,
kbd,
samp,
code,
pre {
  font-family: Consolas, "Andale Mono", Courier, "Courier New", monospace;
}

pre {
  padding: 2.4rem 3.2rem 3.2rem;
  background: #efefef;
  overflow-x: auto;
}

code {
  font-size: 1.4rem;
  margin: 0 .2rem;
  padding: .4rem .8rem;
  white-space: nowrap;
  background: #efefef;
  border: 1px solid #d3d3d3;
  color: #000000;
  border-radius: 3px;
}

pre > code {
  display: block;
  white-space: pre;
  line-height: 2;
  padding: 0;
  margin: 0;
}

pre.prettyprint > code {
  border: none;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
  text-decoration: none;
}

mark {
  background: #fff099;
  color: #000000;
}

hr {
  border: solid #e0e0e0;
  border-width: 1px 0 0;
  clear: both;
  margin: 8rem 0 9.6rem;
  height: 0;
}


/* ------------------------------------------------------------------- 
 * ## Lists 
 * ------------------------------------------------------------------- */
ol {
  list-style: decimal;
}

ul {
  list-style: disc;
}

li {
  display: list-item;
}

ol,
ul {
  margin-left: 1.6rem;
}

ul li {
  padding-left: .4rem;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin: .8rem 0 .8rem 1.6rem;
}

ul.disc li {
  display: list-item;
  list-style: none;
  padding: 0 0 0 .8rem;
  position: relative;
  margin: 0 auto;
}

ul.disc li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8dc63f;
  position: absolute;
  left: -16px;
  top: 11px;
  vertical-align: middle;
}

dt {
  margin: 0;
  color: #8dc63f;
}

dd {
  margin: 0 0 0 2rem;
}


/* ------------------------------------------------------------------- 
 * ## responsive video container
 * ------------------------------------------------------------------- */
.video-container {
  position: relative;
  margin: 0 auto;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed,
.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* ------------------------------------------------------------------- 
 * ## floated image
 * ------------------------------------------------------------------- */
img.h-pull-right {
  margin: 1.2rem 0 1.2rem 2.8rem;
}

img.h-pull-left {
  margin: 1.2rem 2.8rem 1.2rem 0;
}


/* ------------------------------------------------------------------- 
 * ## tables
 * ------------------------------------------------------------------- */
table {
  border-width: 0;
  width: 100%;
  max-width: 100%;
  font-family: "Gothic A1", sans-serif;
  border-collapse: collapse;
}

th,
td {
  padding: 1.5rem 3.2rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

th {
  color: #000000;
  font-family: "Gothic A1", sans-serif;
  font-weight: 700;
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th:last-child,
td:last-child {
  padding-right: 0;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}


/* ------------------------------------------------------------------- 
 * ## Spacing
 * ------------------------------------------------------------------- */
button,
.btn {
  margin-bottom: 1.6rem;
}

fieldset {
  margin-bottom: 1.6rem;
}

input,
textarea,
select,
pre,
blockquote,
figure,
table,
p,
ul,
ol,
dl,
form,
.video-container,
.ss-custom-select {
  margin-bottom: 3.2rem;
}



/* ===================================================================
 * # preloader
 *
 * ------------------------------------------------------------------- */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1d1d1d;
  z-index: 500;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.no-js #preloader,
.oldie #preloader {
  display: none;
}

#loader {
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  padding: 0;
  display: inline-block;
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
}

#loader > div {
  content: "";
  background: #ffffff;
  width: 6px;
  height: 6px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
}

#loader > div:nth-of-type(1) {
  left: 15px;
}

#loader > div:nth-of-type(3) {
  left: -15px;
}

/* dots jump */
.dots-jump > div {
  -webkit-animation: dots-jump 1.2s infinite ease;
  animation: dots-jump 1.2s infinite ease;
  animation-delay: 0.2s;
}

.dots-jump > div:nth-of-type(1) {
  animation-delay: 0.4s;
}

.dots-jump > div:nth-of-type(3) {
  animation-delay: 0s;
}

@-webkit-keyframes dots-jump {
  0% {
    top: 0;
  }

  40% {
    top: -6px;
  }

  80% {
    top: 0;
  }

}

@keyframes dots-jump {
  0% {
    top: 0;
  }

  40% {
    top: -6px;
  }

  80% {
    top: 0;
  }

}

/* dots fade */
.dots-fade > div {
  -webkit-animation: dots-fade 1.6s infinite ease;
  animation: dots-fade 1.6s infinite ease;
  animation-delay: 0.4s;
}

.dots-fade > div:nth-of-type(1) {
  animation-delay: 0.8s;
}

.dots-fade > div:nth-of-type(3) {
  animation-delay: 0s;
}

@-webkit-keyframes dots-fade {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 0.2;
  }

  80% {
    opacity: 1;
  }

}

@keyframes dots-fade {
  0% {
    opacity: 1;
  }

  40% {
    opacity: 0.2;
  }

  80% {
    opacity: 1;
  }

}

/* dots pulse */
.dots-pulse > div {
  -webkit-animation: dots-pulse 1.2s infinite ease;
  animation: dots-pulse 1.2s infinite ease;
  animation-delay: 0.2s;
}

.dots-pulse > div:nth-of-type(1) {
  animation-delay: 0.4s;
}

.dots-pulse > div:nth-of-type(3) {
  animation-delay: 0s;
}

@-webkit-keyframes dots-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  40% {
    -webkit-transform: scale(1.1);
    transform: scale(1.3);
  }

  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

}

@keyframes dots-pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  40% {
    -webkit-transform: scale(1.1);
    transform: scale(1.3);
  }

  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

}



/* ===================================================================
 * # forms
 *
 * ------------------------------------------------------------------- */
fieldset {
  border: none;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
  display: block;
  height: 6.4rem;
  padding: 1.5rem 24px 1.5rem;
  border: 0;
  outline: none;
  color: #000000;
  font-family: "Gothic A1", sans-serif;
  font-size: 1.5rem;
  line-height: 3.2rem;
  max-width: 100%;
  background-color: #e0e0e0;
  border: 1px solid transparent;
  transition: all .3s ease-in-out;
  border-radius: 4px;
}

.ss-custom-select {
  position: relative;
  margin: 0 auto;
  padding: 0;
}

.ss-custom-select select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-indent: 0.01px;
  text-overflow: '';
  margin: 0;
  line-height: 3rem;
  vertical-align: middle;
}

.ss-custom-select select option {
  padding-left: 2rem;
  padding-right: 2rem;
}

.ss-custom-select select::-ms-expand {
  display: none;
}

.ss-custom-select::after {
  border-bottom: 2px solid #000000;
  border-right: 2px solid #000000;
  content: '';
  display: block;
  height: 8px;
  width: 8px;
  margin-top: -7px;
  pointer-events: none;
  position: absolute;
  right: 2.4rem;
  top: 50%;
  transition: all 0.15s ease-in-out;
  -webkit-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

textarea {
  min-height: 25.6rem;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  color: #000000;
  box-shadow: 0 0 5px rgba(141, 198, 63, 0.8);
  border: 1px solid #8dc63f;
}

label,
legend {
  font-family: "Gothic A1", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 2;
  margin-bottom: .8rem;
  color: #000000;
  display: block;
}

input[type="checkbox"],
input[type="radio"] {
  display: inline;
}

label > .label-text {
  display: inline-block;
  margin-left: 1rem;
  font-family: "Gothic A1", sans-serif;
  line-height: inherit;
}

label > input[type="checkbox"],
label > input[type="radio"] {
  margin: 0;
  position: relative;
  margin: 0 auto;
  top: .2rem;
}


/* ------------------------------------------------------------------- 
 * ## Style Placeholder Text
 * ------------------------------------------------------------------- */
::-webkit-input-placeholder {

  /* WebKit, Blink, Edge */
  color: #8c8c8c;
}

:-moz-placeholder {

  /* Mozilla Firefox 4 to 18 */
  color: #8c8c8c;
  opacity: 1;
}

::-moz-placeholder {

  /* Mozilla Firefox 19+ */
  color: #8c8c8c;
  opacity: 1;
}

:-ms-input-placeholder {

  /* Internet Explorer 10-11 */
  color: #8c8c8c;
}

::-ms-input-placeholder {

  /* Microsoft Edge */
  color: #8c8c8c;
}

::placeholder {

  /* Most modern browsers support this now. */
  color: #8c8c8c;
}

.placeholder {
  color: #8c8c8c !important;
}


/* ------------------------------------------------------------------- 
 * ## Change Autocomplete styles in Chrome
 * ------------------------------------------------------------------- */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus
input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: #8dc63f;
  transition: background-color 5000s ease-in-out 0s;
}



/* ===================================================================
 * # buttons
 *
 * ------------------------------------------------------------------- */
.btn,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  display: inline-block;
  font-family: "Gothic A1", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .6rem;
  height: 6rem;
  line-height: 5.6rem;
  padding: 0 3.2rem;
  margin: 0 .4rem 1.6rem 0;
  color: #ffffff;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: all .3s ease-in-out;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 4px;
  background-color: #272727;
  border: 0.2rem solid #272727;
}

.btn:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.btn:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
  outline: 0;
}

/* button primary
 * ------------------------------------------------- */
.btn.btn--primary,
button.btn--primary,
input[type="submit"].btn--primary,
input[type="reset"].btn--primary,
input[type="button"].btn--primary {
  background: #8dc63f;
  border-color: #8dc63f;
  color: #ffffff;
}

.btn.btn--primary:hover,
button.btn--primary:hover,
input[type="submit"].btn--primary:hover,
input[type="reset"].btn--primary:hover,
input[type="button"].btn--primary:hover,
.btn.btn--primary:focus,
button.btn--primary:focus,
input[type="submit"].btn--primary:focus,
input[type="reset"].btn--primary:focus,
input[type="button"].btn--primary:focus {
  background: #000000;
  border-color: #000000;
}

/* button modifiers
 * ------------------------------------------------- */
.btn.h-full-width,
button.h-full-width {
  width: 100%;
  margin-right: 0;
}

.btn--small,
button.btn--small {
  height: 5.6rem !important;
  line-height: 5.2rem !important;
}

.btn--medium,
button.btn--medium {
  height: 6.4rem !important;
  line-height: 6rem !important;
}

.btn--large,
button.btn--large {
  height: 6.8rem !important;
  line-height: 6.4rem !important;
}

.btn--stroke,
button.btn--stroke {
  background: transparent !important;
  border: 0.2rem solid #000000;
  color: #000000;
}

.btn--stroke:hover,
button.btn--stroke:hover {
  background: #000000 !important;
  border: 0.2rem solid #000000;
  color: #ffffff;
}

.btn--pill,
button.btn--pill {
  padding-left: 3.2rem !important;
  padding-right: 3.2rem !important;
  border-radius: 1000px !important;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}



/* =================================================================== 
 * # additional components
 *
 * ------------------------------------------------------------------- */


/* ------------------------------------------------------------------- 
 * ## additional typo styles
 * ------------------------------------------------------------------- */
.drop-cap:first-letter {
  float: left;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: 5.334em;
  line-height: 1;
  padding: 0 0.125em 0 0;
  text-transform: uppercase;
  background: transparent;
  color: #000000;
}

/* line definition style 
 * ----------------------------------------------- */
.lining dt,
.lining dd {
  display: inline;
  margin: 0;
}

.lining dt + dt:before,
.lining dd + dt:before {
  content: "\A";
  white-space: pre;
}

.lining dd + dd:before {
  content: ", ";
}

.lining dd + dd:before {
  content: ", ";
}

.lining dd:before {
  content: ": ";
  margin-left: -0.2em;
}

/* dictionary definition style 
 * ----------------------------------------------- */
.dictionary-style dt {
  display: inline;
  counter-reset: definitions;
}

.dictionary-style dt + dt:before {
  content: ", ";
  margin-left: -0.2em;
}

.dictionary-style dd {
  display: block;
  counter-increment: definitions;
}

.dictionary-style dd:before {
  content: counter(definitions, decimal) ". ";
}

/** 
 * Pull Quotes
 * -----------
 * markup:
 *
 * <aside class="pull-quote">
 *    <blockquote>
 *      <p></p>
 *    </blockquote>
 *  </aside>
 *
 * --------------------------------------------------------------------- */
.pull-quote {
  position: relative;
  margin: 0 auto;
  padding: 2.4rem 0;
}

.pull-quote blockquote {
  background-color: #efefef;
  border: none;
  margin: 0;
  padding-top: 9.6rem;
  position: relative;
  margin: 0 auto;
}

.pull-quote blockquote:before {
  content: "";
  display: block;
  height: 3.2rem;
  width: 3.2rem;
  background-repeat: no-repeat;
  background: center center;
  background-size: contain;
  background-image: url(../images/icons/icon-quote.svg);
  position: absolute;
  top: 4rem;
  left: 4rem;
}

/** 
 * Stats Tab
 * ---------
 * markup:
 *
 * <ul class="stats-tabs">
 *    <li><a href="#">[value]<em>[name]</em></a></li>
 *  </ul>
 *
 * Extend this object into your markup.
 *
 * --------------------------------------------------------------------- */
.stats-tabs {
  padding: 0;
  margin: 3.2rem 0;
}

.stats-tabs li {
  display: inline-block;
  margin: 0 1.6rem 3.2rem 0;
  padding: 0 1.5rem 0 0;
  border-right: 1px solid #e0e0e0;
}

.stats-tabs li:last-child {
  margin: 0;
  padding: 0;
  border: none;
}

.stats-tabs li a {
  display: inline-block;
  font-size: 2.5rem;
  font-family: "Gothic A1", sans-serif;
  font-weight: 700;
  border: none;
  color: #000000;
}

.stats-tabs li a:hover {
  color: #8dc63f;
}

.stats-tabs li a em {
  display: block;
  margin: .8rem 0 0 0;
  font-family: "Gothic A1", sans-serif;
  font-size: 1.5rem;
  font-weight: normal;
  font-style: normal;
  color: #646464;
}


/* ------------------------------------------------------------------- 
 * ## skillbars
 * ------------------------------------------------------------------- */
.skill-bars {
  list-style: none;
  margin: 6.8rem 0 3.2rem;
}

.skill-bars li {
  height: .4rem;
  background: #c3c3c3;
  width: 100%;
  margin-bottom: 6.8rem;
  padding: 0;
  position: relative;
  margin: 0 auto;
}

.skill-bars li strong {
  position: absolute;
  left: 0;
  top: -4rem;
  font-family: "Gothic A1", sans-serif;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: .2rem;
  font-size: 1.4rem;
  line-height: 2.4rem;
}

.skill-bars li .progress {
  background: #000000;
  position: relative;
  margin: 0 auto;
  height: 100%;
}

.skill-bars li .progress span {
  position: absolute;
  right: 0;
  top: -3.6rem;
  display: block;
  font-family: "Gothic A1", sans-serif;
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1;
  background: #000000;
  padding: .8rem .8rem;
  border-radius: 3px;
}

.skill-bars li .progress span::after {
  position: absolute;
  bottom: -10px;
  margin-left: -5px;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-top-color: #000000;
  content: "";
}

.skill-bars li .percent5 {
  width: 5%;
}

.skill-bars li .percent10 {
  width: 10%;
}

.skill-bars li .percent15 {
  width: 15%;
}

.skill-bars li .percent20 {
  width: 20%;
}

.skill-bars li .percent25 {
  width: 25%;
}

.skill-bars li .percent30 {
  width: 30%;
}

.skill-bars li .percent35 {
  width: 35%;
}

.skill-bars li .percent40 {
  width: 40%;
}

.skill-bars li .percent45 {
  width: 45%;
}

.skill-bars li .percent50 {
  width: 50%;
}

.skill-bars li .percent55 {
  width: 55%;
}

.skill-bars li .percent60 {
  width: 60%;
}

.skill-bars li .percent65 {
  width: 65%;
}

.skill-bars li .percent70 {
  width: 70%;
}

.skill-bars li .percent75 {
  width: 75%;
}

.skill-bars li .percent80 {
  width: 90%;
}

.skill-bars li .percent85 {
  width: 85%;
}

.skill-bars li .percent90 {
  width: 90%;
}

.skill-bars li .percent95 {
  width: 95%;
}

.skill-bars li .percent100 {
  width: 100%;
}


/* ------------------------------------------------------------------- 
 * ## alert box
 * ------------------------------------------------------------------- */
.alert-box {
  padding: 2.4rem 4rem 2.4rem 3.2rem;
  position: relative;
  margin: 0 auto;
  margin-bottom: 3.2rem;
  border-radius: 3px;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.6;
}

.alert-box__close {
  position: absolute;
  display: block;
  right: 1.6rem;
  top: 1.6rem;
  cursor: pointer;
  width: 12px;
  height: 12px;
}

.alert-box__close::before,
.alert-box__close::after {
  content: '';
  position: absolute;
  display: inline-block;
  width: 2px;
  height: 12px;
  top: 0;
  left: 5px;
}

.alert-box__close::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.alert-box__close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.alert-box--error {
  background-color: #ffd1d2;
  color: #dd4043;
}

.alert-box--error .alert-box__close::before,
.alert-box--error .alert-box__close::after {
  background-color: #dd4043;
}

.alert-box--success {
  background-color: #c8e675;
  color: #637533;
}

.alert-box--success .alert-box__close::before,
.alert-box--success .alert-box__close::after {
  background-color: #637533;
}

.alert-box--info {
  background-color: #d5ebfb;
  color: #387fb2;
}

.alert-box--info .alert-box__close::before,
.alert-box--info .alert-box__close::after {
  background-color: #387fb2;
}

.alert-box--notice {
  background-color: #fff099;
  color: #827217;
}

.alert-box--notice .alert-box__close::before,
.alert-box--notice .alert-box__close::after {
  background-color: #827217;
}



/* ===================================================================
 * # site header
 *
 * ------------------------------------------------------------------- */
.s-header {
  z-index: 100;
  width: 100%;
  height: 8rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6); /* low opacity dark background */
  backdrop-filter: saturate(120%) blur(8px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.s-header.is-sticky {
  background: rgba(0, 0, 0, 0.9); /* slightly stronger when scrolled */
  backdrop-filter: saturate(120%) blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}


/* -------------------------------------------------------------------
 * ## header logo
 * ------------------------------------------------------------------- */
.header-logo {
  z-index: 101;
  display: inline-block;
  margin: 0;
  padding: 0;
  transition: all .3s;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  position: absolute;
  right: 8rem;
  top: 50%;
}

.header-logo a {
  display: block;
  padding: 0;
  outline: 0;
  border: none;
}

.header-logo img {
  width: 140px;
  height: 23px;
}


/* -------------------------------------------------------------------
 * ## header email
 * ------------------------------------------------------------------- */
.header-email {
  font-size: 1.5rem;
  line-height: 3.2rem;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  position: absolute;
  top: 50%;
  left: 8rem;
}

.header-email svg {
  fill: #72a130;
  height: 1.5rem;
  width: 1.5rem;
  margin-right: .4rem;
  -webkit-transform: translate3d(0, 3px, 0);
  transform: translate3d(0, 3px, 0);
}

.header-email a {
  color: rgba(255, 255, 255, 0.4);
  display: inline-block;
  position: relative;
  margin: 0 auto;
}

.header-email a::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background-color: #72a130;
  transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  position: absolute;
  left: 0;
  bottom: 0;
}

.header-email a:hover {
  color: #ffffff;
}

.header-email a:hover::after {
  width: 100%;
}

/* header site nav */
.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 2.4rem;
}

.site-nav__link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  position: relative;
  margin: 0 auto;
}

.site-nav__link:hover {
  color: #ffffff;
}

.site-nav__link::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background-color: #72a130;
  transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  position: absolute;
  left: 0;
  bottom: -2px;
}

.site-nav__link:hover::after {
  width: 100%;
}

.mobile-menu-toggle {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3.6rem;
  height: 3.6rem;
  background: rgba(212, 175, 55, 0.12);
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  cursor: pointer;
  margin-left: auto;
}

.mobile-menu-toggle span {
  width: 18px;
  height: 2px;
  background: #f8f9fa;
  display: block;
  margin: 3px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.55);
  transform: translateY(-1px);
}

.mobile-menu-toggle.active {
  background: #d4af37;
  border-color: #d4af37;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

@keyframes mobileMenuFade {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu-toggle {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3.6rem;
  height: 3.6rem;
  background: rgba(212, 175, 55, 0.12);
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  cursor: pointer;
  margin-left: auto;
}

.mobile-menu-toggle span {
  width: 18px;
  height: 2px;
    background: #f8f9fa;
  display: block;
  margin: 3px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.55);
  transform: translateY(-1px);
}

.mobile-menu-toggle.active {
  background: #d4af37;
  border-color: #d4af37;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}


/* ------------------------------------------------------------------- 
 * responsive:
 * header
 * ------------------------------------------------------------------- */
@media screen and (max-width:1100px) {
  .header-logo {
    right: 4rem;
  }

  .header-email {
    left: 4rem;
  }

}

@media screen and (max-width:800px) {
  .s-header {
    top: 1.6rem;
  }

  .header-logo img {
    width: 125px;
    height: 20px;
  }

}

@media screen and (max-width:600px) {
  .header-logo img {
    width: 120px;
    height: 19px;
  }

}

@media screen and (max-width:500px) {
  .header-logo {
    right: 3.2rem;
  }

  .header-email {
    left: 3.2rem;
  }

}

@media screen and (max-width:400px) {
  .header-logo {
    right: auto;
    left: 4.2rem;
  }

  .header-email {
    display: none;
  }

}



/* ===================================================================
 * # intro
 *
 * ------------------------------------------------------------------- */
.s-intro {
  width: 100%;
  height: 100vh;
  min-height: 82rem;
  background-color: #000000;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.s-intro--static {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.s-intro--static::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: .4;
}

.s-intro--static::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, black 100%);
  opacity: .6;
}

.s-intro--particles {
  background-color: #010e0f;
}

.s-intro--particles::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
}


/* -------------------------------------------------------------------
 * ## intro slides
 * ------------------------------------------------------------------- */
.intro-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.intro-slider-img {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  height: 100vh;
  min-height: 82rem;
}

.intro-slider-img::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: .5;
}

.intro-slider-img::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, black 100%);
  opacity: .8;
}

.intro-slider-img.bg-opacity-40::before {
  opacity: .4;
}

.intro-slider-img.bg-opacity-50::before {
  opacity: .5;
}

.intro-slider-img.bg-opacity-60::before {
  opacity: .6;
}

.intro-slider-img.bg-opacity-70::before {
  opacity: .7;
}

.intro-slider-img.bg-opacity-80::before {
  opacity: .8;
}

.intro-slider-img.bg-opacity-90::before {
  opacity: .9;
}


/* -------------------------------------------------------------------
 * ## intro particles 
 * ------------------------------------------------------------------- */
.intro-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  padding: 0;
  margin: 0;
  opacity: .35;
}

.intro-particles canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* -------------------------------------------------------------------
 * ## grid overlay
 * ------------------------------------------------------------------- */
.grid-overlay {
  z-index: 1;
  display: block;
  width: 89%;
  height: 100%;
  max-width: 1200px;
  opacity: .65;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}

.grid-overlay > div,
.grid-overlay::before,
.grid-overlay::after {
  background-color: rgba(255, 255, 255, 0.1);
  height: 100%;
  width: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
}

.grid-overlay::before {
  content: "";
  left: 25%;
}

.grid-overlay::after {
  content: "";
  right: 25%;
}



/* -------------------------------------------------------------------
 * ## intro content
 * ------------------------------------------------------------------- */
.intro-content {
  z-index: 2;
  height: 100%;
  padding-top: 20vh;
  padding-bottom: 24rem;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
}


/* -------------------------------------------------------------------
 * ## intro content text
 * ------------------------------------------------------------------- */
.intro-content__text h3 {
  display: inline-block;
  font-family: "Gothic A1", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2rem;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: #8dc63f;
  padding-left: .6rem;
  margin-top: 2rem;
  margin-bottom: .8rem;
  position: relative;
  margin: 0 auto;
}

.intro-content__text h3::before {
  content: "";
  display: block;
  width: 7.2rem;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  position: absolute;
  top: 1rem;
  right: calc(100% + 2.8rem);
}

.intro-content__text h1 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: 8rem;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: normal;
  margin-top: 2rem;
  margin-bottom: .8rem;
}

.logo-styles {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: 3rem;
  line-height: 1.2;
  color: #ffffff;
  letter-spacing: normal;
  margin-top: 2rem;
  margin-bottom: .8rem;
}

.font-dm{
  font-family: "DM Serif Display", serif;
  font-weight: 400;
}

/* -------------------------------------------------------------------
 * ## intro content bottom
 * ------------------------------------------------------------------- */
.intro-content__bottom {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: absolute;
  left: 20px;
  bottom: 9.6rem;
}


/* -------------------------------------------------------------------
 * ## intro content counter
 * ------------------------------------------------------------------- */
.intro-content__counter-wrap {
  margin-right: 8rem;
}

.intro-content__counter-wrap h4 {
  margin-top: 2rem;
  margin-bottom: .8rem;
  font-family: "Gothic A1", sans-serif;
  font-weight: 400;
  font-size: 1.9rem;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.4);
}

.counter {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  font-weight: 600;
  font-size: 4rem;
  line-height: 1;
  color: #ffffff;
}

.counter__time {
  margin-top: 1.2rem;
  margin-right: 6px;
  padding: 1.4rem 1.6rem;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.3);
}

.counter span {
  font-weight: 400;
  font-size: 1.8rem;
  color: rgba(255, 255, 255, 0.4);
  position: relative;
  margin: 0 auto;
  left: -2px;
}


/* -------------------------------------------------------------------
 * ## intro content notify
 * ------------------------------------------------------------------- */
.intro-content__notify button {
  z-index: 2;
  font-size: 1rem;
  margin: 0;
  height: 5.6rem !important;
  line-height: 5.4rem !important;
  border: 1px solid #ffffff !important;
  color: #ffffff;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.intro-content__notify button svg {
  fill: #ffffff;
  height: 1rem;
  width: 1rem;
  margin-left: .4rem;
}

.intro-content__notify button::before {
  z-index: -1;
  content: "";
  height: 100%;
  width: 0;
  background-color: #ffffff;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  position: absolute;
  top: 0;
  left: 0;
}

.intro-content__notify button:hover {
  color: #000000;
}

.intro-content__notify button:hover svg {
  fill: #000000;
}

.intro-content__notify button:hover::before {
  width: 100%;
}


/* -------------------------------------------------------------------
 * ## modal
 * ------------------------------------------------------------------- */
.modal {
  z-index: 400;
  height: 100%;
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.6;
  text-align: center;
  color: rgba(0, 0, 0, 0.7);
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  transition: visibility 0s linear 0.3s, opacity 0.3s 0s, transform 0.3s;
  overflow-y: auto;
  position: fixed;
  left: 0;
  top: 0;
}

.modal h3 {
  margin-top: 2rem;
}

.modal svg {
  fill: #8dc63f;
  width: 4.8rem;
  height: 4.8rem;
}

.modal.show-modal {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: visibility 0s linear 0s, opacity 0.3s 0s, transform 0.3s;
}

.modal__inner {
  -webkit-transform: translate3d(-50%, -50%, 0);
  transform: translate3d(-50%, -50%, 0);
  padding: 5.6rem 3.2rem 2rem;
  width: 90vw;
  max-width: 34rem;
  border-radius: 0.4rem;
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
}

.modal__close {
  display: block;
  right: 2rem;
  top: 2rem;
  cursor: pointer;
  width: 12px;
  height: 12px;
  position: absolute;
}

.modal__close::before,
.modal__close::after {
  content: '';
  position: absolute;
  display: inline-block;
  width: 2px;
  height: 12px;
  top: 0;
  left: 5px;
}

.modal__close::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  background-color: #000000;
}

.modal__close::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  background-color: #000000;
}

.modal form input[type="email"] {
  height: 5.6rem;
  padding: 1.2rem 24px 1.2rem;
}

.modal form label {
  color: #000000;
  font-family: "Gothic A1", sans-serif;
  font-size: 1.3rem;
  line-height: 1.846;
  padding: 0 2rem;
}

.modal form label i {
  padding-right: 6px;
}

.modal form label svg {
  height: 1.3rem !important;
  margin-right: 4px;
}


/* -------------------------------------------------------------------
 * ## intro social
 * ------------------------------------------------------------------- */
.intro-social {
  z-index: 2;
  list-style: none;
  font-size: 13px;
  line-height: 1.6rem;
  margin: 0;
  padding-bottom: 9.6rem;
  width: 1.5rem;
  text-align: center;
  position: absolute;
  right: 8rem;
  bottom: 0;
}

.intro-social a {
  color: rgba(255, 255, 255, 0.6);
}

.intro-social a:hover,
.intro-social a:focus,
.intro-social a:active {
  color: #ffffff;
}

.intro-social li {
  padding-left: 0;
  margin-bottom: 1.6rem;
}

.intro-social li:last-child {
  margin-bottom: 2rem;
}

.intro-social::before {
  content: '';
  display: block;
  width: 1px;
  height: 7.8rem;
  background-color: rgba(255, 255, 255, 0.4);
  position: absolute;
  bottom: 0;
}


/* -------------------------------------------------------------------
 * ## intro scroll
 * ------------------------------------------------------------------- */
.intro-scroll {
  z-index: 2;
  line-height: 12px;
  position: absolute;
  left: 8rem;
  bottom: 0;
  -webkit-transform: rotate(-90deg) translate3d(0, 100%, 0);
  transform: rotate(-90deg) translate3d(0, 100%, 0);
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

.intro-scroll .scroll-link {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-align: left;
  color: rgba(255, 255, 255, 0.4);
  padding-left: 9.6rem;
  margin: 0;
  position: relative;
  margin: 0 auto;
}

.intro-scroll .scroll-link:hover,
.intro-scroll .scroll-link:focus {
  color: #ffffff;
}

.intro-scroll::before {
  display: block;
  content: "";
  background-color: rgba(255, 255, 255, 0.1);
  width: 7.8rem;
  height: 1px;
  position: absolute;
  left: 0;
  top: 50%;
}


/* -------------------------------------------------------------------
 * ## animate intro content
 * ------------------------------------------------------------------- */
html.ss-preload .intro-content__text,
html.ss-preload .intro-content__bottom {
  opacity: 0;
}

html.ss-loaded .intro-content__text {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

html.ss-loaded .intro-content__bottom {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

html.no-csstransitions .intro-content__text,
html.no-csstransitions .intro-content__bottom {
  opacity: 1;
}


/* ------------------------------------------------------------------- 
 * ## intro animations 
 * ------------------------------------------------------------------- */

/* fade in */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

}

@keyframes fadeIn {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

}

/* fade in left */
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

}

/* fade out */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
    visibility: visible;
  }

  to {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

}

@keyframes fadeOut {
  from {
    opacity: 1;
    visibility: visible;
  }

  to {
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

}


/* ------------------------------------------------------------------- 
 * responsive:
 * intro
 * ------------------------------------------------------------------- */
@media screen and (max-width:1800px) {
  .intro-content__text h1 {
    font-size: 7.3rem;
  }

}

@media screen and (max-width:1700px) {
  .intro-content {
    max-width: 1200px;
  }

}

@media screen and (max-width:1600px) {
  .grid-overlay {
    border-right: none !important;
    border-left: none !important;
  }

  .grid-overlay::before {
    left: 22.5%;
  }

  .grid-overlay::after {
    right: 22.5%;
  }

  .intro-content {
    max-width: 1080px;
  }

  .intro-content__text h1 {
    font-size: 7rem;
  }

}

@media screen and (max-width:1400px) {
  .intro-content {
    max-width: 900px;
  }

  .intro-content__text h1 {
    font-size: 6.6rem;
  }

}

@media screen and (max-width:1200px) {
  .intro-content {
    max-width: 800px;
  }

  .intro-content__text h1 {
    font-size: 6.3rem;
  }

  .intro-content__bottom {
    left: 16px;
  }

}

@media screen and (max-width:1100px) {
  .intro-content__text h3::before {
    width: 4rem;
  }

  .intro-social {
    right: 4rem;
  }

  .intro-scroll {
    left: 4rem;
  }

}

@media screen and (max-width:1024px) {
  .s-intro {
    max-height: 800px;
  }

  .intro-content {
    max-width: 600px;
  }

  .intro-content__text h1 {
    font-size: 6rem;
  }

}

@media screen and (max-width:800px) {
  .intro-content {
    max-width: 70vw;
    padding-top: 16rem;
  }

  .intro-content__text h3::before {
    display: none;
  }

  .intro-content__text h1 {
    font-size: 4.8rem;
  }

  .intro-content__text br {
    display: none;
  }

  .intro-content__notify {
    margin-top: 3.6rem;
  }

}

@media screen and (max-width:700px) {
  .intro-content__text h1 {
    font-size: 4.2rem;
  }

  .counter {
    font-size: 2.8rem;
  }

  .counter span {
    font-size: 1.2rem;
  }

}

@media screen and (max-width:600px) {
  .s-intro {
    max-height: none;
  }

  .intro-content {
    max-width: 80vw;
    padding-bottom: 12rem;
  }

  .intro-content__text h3 {
    font-size: 1.2rem;
  }

  .intro-content__text h1 {
    font-size: 3.8rem;
  }

  .intro-content__bottom {
    left: 10px;
    display: block;
    position: static;
    margin-top: 9.6rem;
  }

  .intro-content__counter-wrap {
    margin-right: 0;
  }

}

@media screen and (max-width:500px) {
  .intro-content {
    max-width: 90vw;
  }

  .intro-content__bottom {
    margin-right: 5rem;
  }

  .intro-social {
    display: none;
  }

  .intro-scroll {
    -webkit-transform: rotate(-90deg) translate3d(0, 100%, 0);
    transform: translate3d(100%, 0, 0) rotate(-90deg);
    right: 3.2rem;
    left: auto;
  }

}

@media screen and (max-width:400px) {
  .grid-overlay > div,
  .grid-overlay::before,
  .grid-overlay::after {
    display: none;
  }

}

@media screen and (max-width:350px) {
  .intro-content__text h1 {
    font-size: 3.4rem;
  }

}



/* ===================================================================
 * # info section
 *
 * ------------------------------------------------------------------- */
.s-info {
  padding-top: 16rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
  position: relative;
  margin: 0 auto;
}

.s-info .vert-line {
  width: 1.5rem;
  height: 20rem;
  position: absolute;
  top: 0;
  right: 8rem;
}

.s-info .vert-line::before {
  content: "";
  display: block;
  height: inherit;
  width: 1px;
  background-color: #8dc63f;
  position: absolute;
  top: 0;
}

.s-info::before {
  display: block;
  content: "";
  width: 55%;
  height: 65%;
  background-color: #ffffff;
  opacity: .5;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: 0;
}

.s-info h1,
.s-info h4 {
  margin-top: 2rem;
}

.s-info h1 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  padding-bottom: 3.6rem;
  margin-bottom: 3.6rem;
  position: relative;
  margin: 0 auto;
}

.s-info h1::after {
  display: block;
  content: "";
  width: 8rem;
  height: 1px;
  background-color: #8dc63f;
  position: absolute;
  left: 0;
  bottom: 0;
}

.s-info footer {
  margin-top: 9.6rem;
}


/* -------------------------------------------------------------------
 * ## tabs
 * ------------------------------------------------------------------- */

/* tabs navigation
 * -------------------------------------- */
.tab-nav {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tab-nav__list {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  list-style: none;
  margin: 0;
  font-size: 1.6rem;
  line-height: 6.8rem;
  position: relative;
  margin: 0 auto;
}

.tab-nav__list li {
  -webkit-flex-shrink: 0;
  -ms-flex-shrink: 0;
  flex-shrink: 0;
  padding: 0;
  border-bottom: 1px solid #efefef;
}

.tab-nav__list a {
  display: block;
  color: rgba(0, 0, 0, 0.5);
  padding: 0 3.2rem;
  position: relative;
  margin: 0 auto;
}

.tab-nav__list a:hover,
.tab-nav__list a:focus,
.tab-nav__list a:active {
  color: #000000;
}

.tab-nav__list .active a {
  color: #000000;
  background-color: #efefef;
  border-radius: 4px 4px 0 0;
  position: relative;
  margin: 0 auto;
}

/* tab content
 * -------------------------------------- */
.tab-content {
  margin-top: 6.4rem;
  position: relative;
  margin: 0 auto;
}

/* services listing
 * --------------------------------------- */
.services-list {
  margin-top: 4rem;
  position: relative;
  margin: 0 auto;
  max-width: 100% !important;
}

.services-list__item {
  margin-bottom: 2rem;
}

.services-list__item-content::before {
  display: none;
  content: none;
}

.service-number {
  display: none;
}

/* link list
 * -------------------------------------- */
.link-list {
  list-style: none;
  margin-left: 0;
}

.link-list li {
  padding-left: 0;
}

.link-list a {
  color: #000000;
}

.link-list a:hover,
.link-list a:focus,
.link-list a:active {
  color: #8dc63f;
}

/* tab contact bottom
 * -------------------------------------- */
.contact-email {
  display: inline-block;
  font-family: "Gothic A1", sans-serif;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  margin: 5.6rem 0 .8rem;
  color: #8dc63f;
  border-bottom: 1px solid #efefef;
}

.contact-email:hover,
.contact-email:focus {
  color: #8dc63f;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.contact-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.8;
}

.contact-number a {
  color: #000000;
}

.contact-number a:hover,
.contact-number a:focus {
  color: #8dc63f;
}

.contact-number a::after {
  content: "/";
  font-weight: 400;
  margin: 0 .6rem 0 1rem;
  color: #646464;
}

.contact-number a:last-child::after {
  display: none;
}


/* ------------------------------------------------------------------- 
 * ## Modern Footer (Deuren Style)
 * ------------------------------------------------------------------- */
.site-footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 5rem 0 0;
  position: relative;
}

.footer-content {
  padding: 2rem 0 4rem;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 2rem;
}

.footer-column h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #d4af37;
}

.footer-contact {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.8;
}

.footer-contact p {
  margin-bottom: 1.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2.5rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #d4af37;
}

/* ------------------------------------------------------------------- 
 * ## go top
 * ------------------------------------------------------------------- */
.ss-go-top {
  z-index: 999;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
}

.ss-go-top a {
  text-decoration: none;
  border: 0 none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  background: #d4af37;
  color: #ffffff;
  border-radius: 50%;
  transition: all .3s;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.ss-go-top a:hover {
  background: #b8860b;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.ss-go-top a i {
  font-size: 1.2rem;
  color: #ffffff;
}


/* ------------------------------------------------------------------- 
 * responsive:
 * info
 * ------------------------------------------------------------------- */
@media screen and (max-width:1200px) {
  .tab-content {
    padding-right: 15vw;
  }

}

@media screen and (max-width:1100px) {
  .s-info .vert-line {
    right: 4rem;
  }

}

@media screen and (max-width:1000px) {
  .tab-content {
    padding-right: 40px;
  }

}

@media screen and (max-width:800px) {
  .tab-content {
    padding-right: 0;
  }

  .services-list__item-content {
    padding-right: 60px;
  }

  .contact-email {
    font-size: 5.8vw;
  }

  .footer-content .row {
    flex-direction: column;
  }
  
  .footer-column {
    width: 100%;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .ss-go-top {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .ss-go-top a {
    height: 45px;
    width: 45px;
  }

}

@media screen and (max-width:600px) {
  .s-info {
    padding-top: 12rem;
  }

  .tab-nav__list {
    font-size: 1.5rem;
    line-height: 5.6rem;
  }

  .tab-nav__list a {
    padding: 0 2.2rem;
  }

  .services-list__item-content {
    padding-right: 0;
  }

}

@media screen and (max-width:500px) {
  .s-info {
    padding-top: 9.6rem;
  }

  .s-info .vert-line {
    display: none;
  }

  .ss-go-top {
    bottom: 8rem;
  }

  .ss-go-top a {
    height: 4.8rem;
    width: 4.8rem;
    line-height: 4.8rem;
  }

}

@media screen and (max-width:400px) {
  .s-info footer {
    text-align: center;
    position: relative;
  margin: 0 auto;
    margin-top: 4.8rem;
    padding-top: 6.4rem;
  }

  .services-list__item-content::before {
    font-size: 3.3rem;
  }

  .ss-go-top {
    top: 0;
    bottom: auto;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }

}

/*# sourceMappingURL=main.css.map */


/* ensure nav links are visible on dark background */
.s-header.is-sticky .site-nav__link,
.s-header.is-sticky .site-nav-home {
  color: rgba(255, 255, 255, 0.9) !important;
}

.s-header.is-sticky .site-nav__link:hover,
.s-header.is-sticky .site-nav-home:hover {
  color: #d4af37 !important;
}

.s-header.is-sticky .site-nav__link::after,
.s-header.is-sticky .site-nav-home::after {
  background-color: #d4af37 !important;
}

/* Make logo visible on sticky */
.s-header.is-sticky .logo-styles {
  color: #ffffff !important;
}

/* Force horizontal navigation for about.html */
.s-header .site-nav__list {
  display: flex !important;
  flex-direction: row !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 2.4rem !important;
}

.s-header .site-nav__list li {
  display: inline-block !important;
  margin: 0 !important;
  padding: 0 !important;
}

.s-header .site-nav__link {
  display: inline-block !important;
  color: rgba(39, 39, 41, 0.6) !important;
  text-decoration: none !important;
  position: relative !important;
}

.s-header .site-nav-home {
  display: inline-block !important;
  color: rgb(255, 255, 255) !important;
  text-decoration: none !important;
  position: relative !important;
}

.s-header .site-nav__link:hover {
  color: #ffffff !important;
}

.s-header .site-nav__link::after,
.s-header .site-nav-home::after {
  content: '' !important;
  display: block !important;
  width: 0 !important;
  height: 1px !important;
  background-color: #d4af37 !important;
  transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1) !important;
  position: absolute !important;
  left: 0 !important;
  bottom: -2px !important;
}

.s-header .site-nav__link:hover::after,
.s-header .site-nav-home:hover::after {
  width: 100% !important;
}

.s-header .site-nav-home:hover {
  color: #d4af37 !important;
}

/* ensure nav links are visible on dark background when sticky */
/* visible links on dark header */
.s-header .site-nav__link,
.s-header .site-nav-home { color: rgba(255, 255, 255, 0.95) !important; }
.s-header .site-nav__link:hover,
.s-header .site-nav-home:hover { color: #d4af37 !important; }
.s-header .site-nav__link::after,
.s-header .site-nav-home::after { background-color: #d4af37 !important; }
.s-header .logo-styles { color: #ffffff !important; }

/* Montserrat Font Application */
p {
  font-family: 'Montserrat', sans-serif !important;
}

/* Prevent horizontal page scrolling */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Navigation links with Montserrat (except logo) */
.site-nav__link,
.header-main-nav a,
.smoothscroll {
  font-family: 'Montserrat', sans-serif !important;
}



/* Services Hero Banner */
.services-hero-banner {
  position: relative;
  height: 70vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 0;
}

.hero-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/sk_images/asanfina. 2.jpeg') center/cover no-repeat;
  opacity: 0.2;
}

.hero-banner-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 800px;
  padding: 2rem;
}

.hero-banner-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: #ffffff;
  font-weight: 400;
}

.hero-banner-content p {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-cta-btn {
  display: inline-block;
  padding: 1.2rem 3rem;
  background: #d4af37;
  color: #000000;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-cta-btn:hover {
  background: #b8860b;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Services Intro Grid */
.services-intro-grid {
  padding: 6rem 0;
  background: #ffffff;
}

.intro-text-center {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 900px;
}

.intro-text-center h2 {
  font-size: 3rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.intro-lead {
  font-size: 1.3rem;
  color: #6c757d;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Sketches Horizontal Scroll Animation */
.sketches-scroll-container {
  width: 100vw; /* span full viewport width */
  overflow: hidden; /* clip inner overflow so page doesn't scroll horizontally */
  margin: 3rem 0;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw; /* full-bleed: remove left gutter */
  margin-right: -50vw; /* full-bleed: remove right gutter */
}

.sketches-scroll-track {
  display: flex;
  width: calc(200%);
  gap: 0;
  transform: translateX(-50%);
  animation: scroll-end-to-end 18s linear infinite alternate;
  will-change: transform;
}

.sketch-item {
  flex: 0 0 auto;
  width: 200px;
  height: 250px;
  margin-right: 0;
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  /* visible by default */
  opacity: 1;
  transform: none;
}

.sketch-item:hover {
  transform: translateY(-5px);
}

.sketch-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sketch-item:hover img {
  transform: scale(1.05);
}

/* scroll animation: pop-in */
@keyframes sketch-pop-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.sketch-item.animate-in {
  animation: sketch-pop-in 600ms ease forwards;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .sketch-item {
    transform: none;
    opacity: 1;
  }
  .sketch-item.animate-in {
    animation: none;
  }
}

@keyframes scroll-end-to-end {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Pause animation on hover */
.sketches-scroll-container:hover .sketches-scroll-track {
  animation-play-state: paused;
}

/* Services page header styling */
.services-hero-banner .s-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: transparent;
}

.services-hero-banner .s-header .site-nav__link {
  color: #ffffff !important;
}

.services-hero-banner .s-header .site-nav__link:hover {
  color: #d4af37 !important;
}

.services-hero-banner .s-header .logo-styles {
  color: #ffffff !important;
}

.services-hero-banner .s-header .logo-styles:hover {
  color: #d4af37 !important;
}

/* Features Section - Services Page */
.s-features {
  padding: 6rem 0;
  background: #ffffff;
}

.s-features h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  background: #f8f9fa;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

.feature-item h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.feature-item p {
  color: #6c757d;
  line-height: 1.6;
}

/* Door Collections Section (Deuren Case Studies Style) */
.s-door-collections {
  padding: 6rem 0;
  background: #ffffff;
}

.s-door-collections h2 {
  text-align: center;
  font-size: 3rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.collections-subtitle {
  text-align: center;
  font-size: 1.3rem;
  color: #6c757d;
  margin-bottom: 4rem;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 1400px;
  margin: 0 auto;
}

.collection-card {
  background: #ffffff;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.collection-card:hover {
  transform: translateY(-5px);
}

.collection-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
  position: relative;
}

.collection-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.collection-card:hover .collection-image img {
  transform: scale(1.08);
}

.collection-info {
  padding: 2rem 0;
  border-bottom: 2px solid #e9ecef;
}

.collection-info h3 {
  font-size: 1.6rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.collection-card:hover .collection-info h3 {
  color: #d4af37;
}

.collection-info p {
  color: #6c757d;
  line-height: 1.7;
  font-size: 1.1rem;
  margin: 0;
}

/* Responsive Design for Services Page */
@media (max-width: 1024px) {
  .sketch-item {
    width: 180px;
    height: 220px;
  }
}

@media (max-width: 768px) {
  .services-hero-banner {
    height: 50vh;
    min-height: 400px;
  }
  
  .hero-banner-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-banner-content p {
    font-size: 1.2rem;
  }
  
  .sketch-item {
    width: 160px;
    height: 200px;
    margin-right: 1.5rem;
  }
  
  .intro-text-center h2 {
    font-size: 2.2rem;
  }
  
  .intro-lead {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .feature-item {
    padding: 2rem 1.5rem;
  }
  
  .feature-num {
    font-size: 2rem;
  }
  
  .feature-item h3 {
    font-size: 1.3rem;
  }
  
  .feature-item p {
    font-size: 1rem;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .collections-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .collection-image {
    height: 300px;
  }
  
  .collection-info {
    padding: 1.5rem 0;
  }
  
  .collection-info h3 {
    font-size: 1.4rem;
  }
  
  .collection-info p {
    font-size: 1rem;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* About page components */

/* Company Story Section */
.s-company-story {
  padding: 6rem 0;
  background: #ffffff;
}

.s-company-story h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 2rem;
}

.story-lead {
  text-align: center;
  font-size: 1.2rem;
  color: #6c757d;
  max-width: 800px;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.story-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story-item:nth-child(even) {
  direction: rtl;
}

.story-item:nth-child(even) > * {
  direction: ltr;
}

.story-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.story-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.story-image:hover img {
  transform: scale(1.05);
}

.story-text h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.story-text p {
  color: #6c757d;
  line-height: 1.6;
  font-size: 1.1rem;
}

/* Minimal Values Section */
.s-values-minimal {
  padding: 6rem 0;
  background: #ffffff;
}

.values-header {
  text-align: left;
  margin-bottom: 3rem;
}

.values-header h2 {
  font-size: 3rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 400;
}

.values-description {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.6;
}

.values-list {
  max-width: none;
  margin: 0;
}

.value-row {
  display: flex;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.value-row:last-child {
  border-bottom: none;
}

.value-row:hover {
  background: #fafafa;
  margin: 0 -1.5rem;
  padding: 2rem 1.5rem;
  border-radius: 8px;
}

.value-title {
  font-size: 1.6rem;
  color: #2c3e50;
  font-weight: 600;
  min-width: 180px;
  margin-right: 2rem;
  line-height: 1.3;
  text-align: left;
}

.value-description {
  flex: 1;
  color: #6c757d;
  line-height: 1.7;
  font-size: 1.4rem;
}

/* Clean Values Slider */
.values-slider {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 2rem;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  border: 1px solid #e9ecef;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.slider-slide.active {
  opacity: 1;
}

.slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.slider-navigation {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.nav-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-btn:hover {
  background: #d4af37;
  transform: scale(1.1);
  border-color: #d4af37;
}

.nav-btn i {
  color: #6c757d;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.nav-btn:hover i {
  color: #ffffff;
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s ease;
}

.dot.active {
  background: #d4af37;
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Team Section */
.s-team {
  padding: 6rem 0;
  background: #ffffff;
}

.s-team h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.team-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.team-member {
  background: #f8f9fa;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.member-image {
  height: 360px;
  overflow: hidden;
  background: #f5f5f5; /* contrast for light vectors */
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-info {
  padding: 1rem;
  text-align: center;
}

.member-info h3 {
  font-size: 1.25rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.member-role {
  color: #72a130;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.member-bio {
  color: #6c757d;
  line-height: 1.6;
}

/* Stats Section */
.s-stats {
  padding: 6rem 0;
  background: #f8f9fa;
  color: #2c3e50;
}

.s-stats h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #72a130;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
  .story-item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .story-item:nth-child(even) {
    direction: ltr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .values-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .values-slider {
    padding-left: 0;
    margin-top: 3rem;
  }
  
  .slider-container {
    height: 300px;
  }
  
  
  .slider-navigation {
    gap: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .nav-btn {
    width: 24px;
    height: 24px;
  }
  
  .nav-btn i {
    font-size: 0.8rem;
  }
  
  .dot {
    width: 6px;
    height: 6px;
  }
  
  .value-row {
    flex-direction: column;
    text-align: left;
    padding: 1.5rem 0;
  }
  
  .value-title {
    min-width: auto;
    margin-right: 0;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
  }
  
  .value-description {
    font-size: 1.3rem;
  }
  
  .value-row:hover {
    margin: 0 -1rem;
    padding: 1.5rem 1rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

/* Vision Mission Section */
.s-vision-mission {
  padding: 6rem 0;
  background: #ffffff;
  color: #2c3e50;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.vision-card, .mission-card {
  background: rgba(255,255,255,0.1);
  padding: 3rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.vision-card h2, .mission-card h2 {
  color: #72a130;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.vision-card p, .mission-card p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

/* Products Section */
.s-products {
  padding: 6rem 0;
  background: #f8f9fa;
}

.s-products h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 3rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.product-card {
  background: white;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-card h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid #72a130;
  padding-bottom: 0.5rem;
}

.product-card p {
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.door-types {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #72a130;
}

.door-types h4 {
  color: #2c3e50;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.door-types ul {
  list-style: none;
  padding: 0;
}

.door-types li {
  padding: 0.5rem 0;
  color: #495057;
  position: relative;
  margin: 0 auto;
  padding-left: 1.5rem;
}

.door-types li::before {
  content: "🚪";
  position: absolute;
  left: 0;
}

/* Responsive Design for Vision Mission and Products */
@media (max-width: 768px) {
  .vision-mission-grid {
    grid-template-columns: 1fr;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .vision-card, .mission-card {
    padding: 2rem;
  }
  
  .product-card {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .story-item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .story-item:nth-child(even) {
    direction: ltr;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .values-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .values-slider {
    padding-left: 0;
    margin-top: 3rem;
  }
  
  .slider-container {
    height: 300px;
  }
  
  
  .slider-navigation {
    gap: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .nav-btn {
    width: 24px;
    height: 24px;
  }
  
  .nav-btn i {
    font-size: 0.8rem;
  }
  
  .dot {
    width: 6px;
    height: 6px;
  }
  
  .value-row {
    flex-direction: column;
    text-align: left;
    padding: 1.5rem 0;
  }
  
  .value-title {
    min-width: auto;
    margin-right: 0;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
  }
  
  .value-description {
    font-size: 1.3rem;
  }
  
  .value-row:hover {
    margin: 0 -1rem;
    padding: 1.5rem 1rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .vision-mission-grid {
    grid-template-columns: 1fr;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

/* About page modern sections */

/* Image Showcase Sections (Deuren Style) */
.image-showcase-section {
  padding: 4rem 0;
  background: #ffffff;
}

.image-showcase-section.alt {
  background: #f8f9fa;
}

.image-showcase-section .row {
  align-items: center;
}

.showcase-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.showcase-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.showcase-image:hover img {
  transform: scale(1.05);
}

.showcase-content {
  padding: 3rem;
}

.showcase-content h2 {
  font-size: 3rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.showcase-content p {
  font-size: 1.6rem;
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.showcase-content p:last-child {
  margin-bottom: 0;
}

/* Responsive for Image Showcase */
@media (max-width: 800px) {
  .image-showcase-section {
    padding: 3rem 0;
  }
  
  .showcase-image img {
    height: 350px;
  }
  
  .showcase-content {
    padding: 2rem 1rem;
  }
  
  .showcase-content h2 {
    font-size: 2.2rem;
  }
  
  .showcase-content p {
    font-size: 1.4rem;
  }
  
  .image-showcase-section.alt .row {
    flex-direction: column-reverse;
  }
  
  .features-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .feature-card {
    padding: 1.0rem 1.5rem;
  }
  
  .feature-num {
    font-size: 2rem;
  }
  
  .feature-card h3 {
    font-size: 1.3rem;
  }
  
  .feature-card p {
    font-size: 2.8rem;
  }
}

@media (max-width: 1024px) and (min-width: 769px) {
  .features-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cta-content h2 {
    font-size: 2.5rem;
  }
  
  .cta-content p {
    font-size: 1.2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn-cta {
    width: 100%;
    max-width: 300px;
  }
  
  
  .testimonial-card p {
    font-size: 1.1rem;
  }
}

/* Why Choose SpaceKraft Section - Card Style */
.why-choose-cards {
  padding: 6rem 0;
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: 3rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 400;
}

.section-subtitle {
  font-size: 1.3rem;
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1300px;
  margin: 0 auto;
}

.feature-card {
  background: #f8f9fa;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  position: relative;
}

.feature-card:hover {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.feature-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: #d4af37;
  font-family: "DM Serif Display", serif;
  margin-bottom: 1rem;
  line-height: 1;
}

.feature-card h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 600;
}

.feature-card p {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.7;
  margin: 0;
}

/* Call to Action Section */
.cta-section {
  padding: 8rem 0;
  background: linear-gradient(135deg, #2c3e50 0%, #1a1a1a 100%);
  text-align: center;
  color: #ffffff;
}

.cta-content h2 {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.cta-content p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta {
  display: inline-block;
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-cta.primary {
  background: #d4af37;
  color: #000000;
}

.btn-cta.primary:hover {
  background: #b8860b;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-cta.secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-cta.secondary:hover {
  background: #ffffff;
  color: #2c3e50;
  transform: translateY(-3px);
}

.contact-highlight {
  padding: 6rem 0;
  background: #f8f8f8;
}

.contact-highlight .section-header h2 {
  color: #2c3e50;
}

.contact-highlight .section-header p {
  color: #6b7280;
}

.contact-highlight-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  margin-top: 3.5rem;
}

.contact-highlight-card {
  flex: 1 1 320px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
}

.contact-highlight-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 2.1rem;
  color: #1f2937;
  font-family: "Montserrat", sans-serif;
}

.contact-highlight-card p {
  margin: 0 0 1.2rem;
  font-size: 1.5rem;
  color: #4b5563;
}

.contact-highlight-card a {
  color: #d4af37;
  text-decoration: none;
}

.contact-highlight-card a:hover {
  text-decoration: underline;
}

.contact-highlight-note {
  margin-bottom: 0;
  color: #6b7280;
  font-size: 1.4rem;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contact-highlight {
    padding: 4.5rem 0;
  }

  .contact-highlight-card {
    padding: 2.4rem;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: 6rem 0;
  background: #ffffff;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card {
  background: #f8f9fa;
  padding: 3rem 2.5rem;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.testimonial-quote {
  width: 50px;
  height: 50px;
  background: #d4af37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.testimonial-quote i {
  font-size: 1.5rem;
  color: #ffffff;
}

.testimonial-card p {
  font-size: 1.2rem;
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author h4 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 1rem;
  color: #6c757d;
}

/* Product Gallery Page */
.gallery-header {
  padding: 6rem 0 3rem;
  background: #ffffff;
  text-align: center;
}

.gallery-header h1 {
  font-size: 4rem;
  color: #2c3e50;
  margin-bottom: 1rem;
  font-weight: 400;
}

.gallery-intro {
  font-size: 1.3rem;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.gallery-filter {
  padding: 2rem 0;
  background: #ffffff;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 0;
}

.filter-btn {
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
  margin-bottom: -2px;
}

.filter-btn:hover {
  color: #2c3e50;
  border-bottom-color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
}

.filter-btn.active {
  color: #2c3e50;
  border-bottom-color: #d4af37;
  font-weight: 600;
  background: rgba(212, 175, 55, 0.15);
}

.gallery-section {
  padding: 4rem 0;
  background: #ffffff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: scale(1);
  transition: all 0.3s ease;
}

.gallery-image {
  position: relative;
  overflow: hidden;
  background: #000000;
  aspect-ratio: 4/3;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 2rem;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-info h3 {
  font-size: 1.4rem;
  color: #ffffff;
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.gallery-info p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Gallery Responsive */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .gallery-header h1 {
    font-size: 2.5rem;
  }
  
  .gallery-intro {
    font-size: 1.1rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .filter-buttons {
    gap: 0.3rem;
  }
  
  .filter-btn {
    padding: 0.8rem 1.2rem;
    font-size: 0.95rem;
  }
  
  .gallery-info h3 {
    font-size: 1.2rem;
  }
  
  .gallery-info p {
    font-size: 0.9rem;
  }
}

/* Entry Images Section - Make all images same size */
main .entry__thumb a img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
}

/* Remove bottom padding from main content section before Our Story */
main .row.block-large-1-3 {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Company Story Section */
.s-company-story {
  padding: 0 0 8rem 0;
  background: #ffffff;
  position: relative;
}


.s-company-story h2 {
  text-align: center;
  font-size: 3.5rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  width: 100%;
}

.s-company-story h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37 0%, #b8860b 100%);
  border-radius: 2px;
}

.story-lead {
  text-align: center;
  font-size: 1.3rem;
  color: #6c757d;
  max-width: 900px;
  margin: 0 auto 5rem;
  line-height: 1.7;
  font-weight: 400;
}

/* Horizontal Timeline Styles */
.story-timeline-horizontal {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.timeline-container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 300px;
}

.timeline-line {
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4af37 0%, #b8860b 100%);
  border-radius: 2px;
  z-index: 1;
}

.timeline-item {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 250px;
  z-index: 2;
}

.timeline-marker {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-year {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.timeline-year::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid #d4af37;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-year {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.timeline-item:hover .timeline-year::before {
  opacity: 1;
}

.timeline-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
}

.timeline-item:hover .timeline-content {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.timeline-content h3 {
  font-size: 2.2rem;
  color: #000000;
  margin-bottom: 1.5rem;
}

.timeline-content p {
  color: #333333;
  line-height: 1.8;
  font-size: 1.3rem;
  font-weight: 400;
}

/* Values Section */
.s-values {
  padding: 6rem 0;
  background: #ffffff;
}

.s-values h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 3rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #72a130, #8dc63f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.value-icon i {
  font-size: 1.8rem;
  color: white;
}

.value-card h3 {
  font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.value-card p {
  color: #6c757d;
  line-height: 1.6;
}

/* Team Section */
.s-team {
  padding: 6rem 0;
  background: #ffffff;
}

.s-team h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.team-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 3rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.team-member {
  background: #f8f9fa;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.member-image {
  width: 100%;
  height: 360px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.3s ease;
}

.team-member:hover .member-image img {
  transform: scale(1.05);
}

.member-info {
  padding: 1rem;
  text-align: center;
}

.member-info h3 {
  font-size: 1.25rem;
  color: #2c3e50;
  margin-bottom: 0.5rem;
}

.member-role {
  color: #72a130;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.member-bio {
  color: #6c757d;
  line-height: 1.6;
}

/* Vision Mission Section */
.s-vision-mission {
  padding: 6rem 0;
  background: #ffffff;
  color: #2c3e50;
}

.vision-mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.vision-card, .mission-card {
  background: rgba(255,255,255,0.1);
  padding: 3rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.vision-card h2, .mission-card h2 {
  color: #72a130;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.vision-card p, .mission-card p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}

/* Stats Section */
.s-stats {
  padding: 6rem 0;
  background: #f8f9fa;
  color: #2c3e50;
}

.s-stats h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #72a130;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
  .timeline-container {
    flex-direction: column;
    align-items: center;
    min-height: auto;
  }
  
  .timeline-line {
    display: none;
  }
  
  .timeline-item {
    max-width: 100%;
    margin-bottom: 3rem;
    flex-direction: row;
    align-items: center;
    text-align: left;
  }
  
  .timeline-marker {
    margin-bottom: 0;
    margin-right: 2rem;
  }
  
  .timeline-year {
    width: 70px;
    height: 70px;
    font-size: 1rem;
  }
  
  .timeline-content {
    text-align: left;
    flex: 1;
  }
  
  .timeline-content::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column;
    text-align: center;
  }
  
  .timeline-marker {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  
  .timeline-year {
    width: 60px;
    height: 60px;
    font-size: 0.9rem;
  }
  
  .timeline-content {
    text-align: center;
    padding: 2rem;
    min-height: 200px;
  }
  
  .timeline-content h3 {
    font-size: 1.6rem;
  }
  
  .timeline-content p {
    font-size: 1.1rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .values-header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .values-slider {
    padding-left: 0;
    margin-top: 3rem;
  }
  
  .slider-container {
    height: 300px;
  }
  
  
  .slider-navigation {
    gap: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
  
  .nav-btn {
    width: 24px;
    height: 24px;
  }
  
  .nav-btn i {
    font-size: 0.8rem;
  }
  
  .dot {
    width: 6px;
    height: 6px;
  }
  
  .value-row {
    flex-direction: column;
    text-align: left;
    padding: 1.5rem 0;
  }
  
  .value-title {
    min-width: auto;
    margin-right: 0;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
  }
  
  .value-description {
    font-size: 1.3rem;
  }
  
  .value-row:hover {
    margin: 0 -1rem;
    padding: 1.5rem 1rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .vision-mission-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .member-image {
    height: 200px;
  }
}


.about-video {
  width: 100%;
  height: auto;
  display: block;
  max-height: 500px;
  object-fit: cover;
}

@media (max-width: 768px) {
  
}


/* About Video Section */
.about-video-section {
  width: 90%;
  position: relative;
  margin: 0 auto;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.about-video {
  width: 100%;
  height: auto;
  display: block;
  min-height: 85vh;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-video {
    min-height: 60vh;
  }
}

/* ===================================================================
 * # Enhanced Responsiveness & Background Fixes
 * ------------------------------------------------------------------- */

/* Intro counter - desktop visual style (kept above responsive blocks) */
.intro-content__counter-wrap h4 {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.counter {
  display: flex;
  align-items: baseline;
  gap: 3.2rem;
  flex-wrap: nowrap;
}

.counter__time {
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 400;
  font-variant-numeric: tabular-nums; /* even digit widths */
  -moz-font-feature-settings: "tnum" 1;
  -webkit-font-feature-settings: "tnum" 1;
  font-feature-settings: "tnum" 1;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.counter__time span {
  display: inline-block;
  margin-top: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 300;
}

/* Remove top margins and padding from body and main sections */
body {
  margin: 0 !important;
  padding: 0 !important;
}

/* Ensure header starts at top with no gaps */
.s-header {
  margin-top: 0 !important;
  top: 0 !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
}

.header-logo {
  order: 1;
}

.header-email {
  order: 2;
}

@media screen and (max-width: 768px) {
  .s-header {
    padding: 0 2rem;
  }
  
  .header-logo {
    flex: 0 0 auto;
  }
  
  .header-email {
    order: 3;
  }
  
  .mobile-menu-toggle {
    order: 2;
    margin-left: auto;
  }
}

/* Fix intro sections to start at top */
.s-intro {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Fix services hero banner to start at top */
.services-hero-banner {
  margin-top: 0 !important;
  padding-top: 8rem; /* Account for fixed header */
}

/* Fix gallery header spacing */
.gallery-header {
  padding-top: 10rem !important; /* Account for fixed header + breadcrumb */
}

/* Fix s-info sections padding */
.s-info {
  padding-top: 10rem !important;
}

/* ===================================================================
 * # Mobile Responsiveness (max-width: 768px)
 * ------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
  
  /* Header adjustments */
  .s-header {
    height: 7rem;
    padding: 0 2rem;
  }
  
  .header-logo {
    flex: 1;
  }
  
  .logo-styles {
    font-size: 2rem !important;
  }
  
  /* Scroll to top button - move downward on mobile */
  .ss-go-top {
    bottom: 100px;
  }
  
  /* Navigation - Stack vertically on mobile */
  .header-email {
    position: fixed;
    top: 7.4rem;
    left: 0;
    right: 0;
    background: rgba(8, 8, 8, 0.95);
    padding: 2.4rem 2.5rem;
    display: none;
    z-index: 999;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .header-email.mobile-active {
    display: block;
    animation: mobileMenuFade 220ms ease forwards;
  }
  
  .site-nav__list {
    flex-direction: column !important;
    gap: 2rem !important;
    align-items: flex-start !important;
  }
  
  .site-nav__list li {
    width: 100%;
  }
  
  .site-nav__link,
  .site-nav-home {
    font-size: 1.8rem !important;
    padding: 0.75rem 0 !important;
    width: 100%;
  }

  .s-header .site-nav__list {
    flex-direction: column !important;
    gap: 2rem !important;
    align-items: flex-start !important;
  }

  .s-header .site-nav__list li {
    display: block !important;
    width: 100% !important;
  }

  .s-header .site-nav__link,
  .s-header .site-nav-home {
    display: block !important;
    width: 100% !important;
    text-align: left !important;
  }
  
  .site-nav__link::after,
  .site-nav-home::after {
    height: 2px !important;
    bottom: -6px !important;
    background-color: #d4af37 !important;
  }
  
  .site-nav__link:hover::after,
  .site-nav-home:hover::after {
    width: 40% !important;
  }

  .s-header {
    flex-direction: row;
    align-items: center;
  }

  .s-header .header-email {
    margin-top: 0;
  }

  .s-header .site-nav__list {
    padding: 0;
  }

  .s-header .mobile-menu-toggle {
    margin-top: 0.2rem;
  }
  
  /* Intro content */
  .intro-content {
    padding-top: 12rem !important;
    max-width: 90vw !important;
  }
  
  .intro-content__text h1 {
    font-size: 3.5rem !important;
    line-height: 1.2 !important;
  }
  
  .intro-content__text h3 {
    font-size: 1.6rem !important;
  }
  
  /* Counter adjustments */
  .intro-content__counter-wrap h4 {
    font-size: 1.4rem !important;
    margin-bottom: 1.5rem !important;
    letter-spacing: 0.3em !important;
    color: rgba(255, 255, 255, 0.8) !important;
  }
  
  .counter {
    display: flex !important;
    align-items: baseline !important;
    gap: 2rem !important;
    flex-wrap: wrap;
    justify-content: flex-start !important;
  }
  
  .counter__time {
    min-width: auto !important;
    margin-right: 0 !important;
    text-align: left !important;
    font-size: 3.5rem !important;
    font-variant-numeric: tabular-nums !important;
    display: flex !important;
    align-items: baseline !important;
    gap: 0.6rem !important;
  }
  
  .counter__time span {
    font-size: 1.4rem !important;
    display: inline-block !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    letter-spacing: 0.3em !important;
  }
  
  /* Intro bottom section adjustments */
  .intro-content__bottom {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  
  .intro-content__notify {
    margin-top: 0 !important;
    text-align: center;
  }
  
  .intro-content__notify .btn--stroke {
    padding: 1.2rem 2.5rem !important;
    font-size: 1.3rem !important;
  }
  
  /* Services hero banner */
  .services-hero-banner {
    height: 60vh !important;
    padding-top: 7rem !important;
  }
  
  .hero-banner-content h1 {
    font-size: 3rem !important;
  }
  
  .hero-banner-content p {
    font-size: 1.3rem !important;
  }
  
  /* Gallery adjustments */
  .gallery-header {
    padding-top: 9rem !important;
  }
  
  .gallery-header h1 {
    font-size: 3rem !important;
  }
  
  .filter-buttons {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  
  .filter-btn {
    padding: 0.8rem 1.5rem !important;
    font-size: 0.9rem !important;
  }
  
  /* Row and column adjustments */
  .row {
    padding: 0 2rem;
  }
  
  /* Image showcase sections */
  .image-showcase-section .row {
    flex-direction: column;
  }
  
  .image-showcase-section .column {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .showcase-image {
    margin-bottom: 2rem;
  }
  
  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  /* Contact form */
  .contact-form .form-grid {
    grid-template-columns: 1fr !important;
  }
  
  /* Collections grid */
  .collections-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  /* Features cards */
  .features-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  /* Team grid */
  .team-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  
  /* Values section */
  .s-values-minimal .row {
    flex-direction: column;
  }
  
  .s-values-minimal .column {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  /* Footer adjustments */
  .footer-content .row {
    flex-direction: column;
  }
  
  .footer-column {
    width: 100% !important;
    margin-bottom: 2rem;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

/* ===================================================================
 * # Tablet Responsiveness (768px - 1024px)
 * ------------------------------------------------------------------- */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  
  .intro-content__text h1 {
    font-size: 5rem !important;
  }
  
  /* Counter responsive for tablets */
  .intro-content__counter-wrap h4 {
    font-size: 1.6rem !important;
    margin-bottom: 1.8rem !important;
    letter-spacing: 0.32em !important;
  }
  
  .counter {
    display: flex !important;
    align-items: baseline !important;
    gap: 3rem !important;
    flex-wrap: wrap;
    justify-content: flex-start !important;
  }
  
  .counter__time {
    min-width: auto !important;
    text-align: left !important;
    font-size: 4rem !important;
    font-variant-numeric: tabular-nums !important;
    display: flex !important;
    align-items: baseline !important;
    gap: 0.7rem !important;
  }
  
  .counter__time span {
    font-size: 1.4rem !important;
    display: inline-block !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    letter-spacing: 0.3em !important;
  }
  
  .hero-banner-content h1 {
    font-size: 4rem !important;
  }
  
  .collections-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .features-cards-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ===================================================================
 * # Small Mobile Devices (max-width: 480px)
 * ------------------------------------------------------------------- */
@media screen and (max-width: 480px) {
  
  html {
    font-size: 8.5px !important;
  }
  
  .s-header {
    height: 6rem;
    padding: 0 1.5rem;
  }
  
  .logo-styles {
    font-size: 1.8rem !important;
  }
  
  .intro-content__text h1 {
    font-size: 2.8rem !important;
  }
  
  .intro-content__text h3 {
    font-size: 1.4rem !important;
  }
  
  .services-hero-banner {
    padding-top: 6rem !important;
    height: 50vh !important;
  }
  
  .hero-banner-content h1 {
    font-size: 2.5rem !important;
  }
  
  .hero-banner-content p {
    font-size: 1.1rem !important;
  }
  
  .gallery-header h1 {
    font-size: 2.5rem !important;
  }
  
  .row {
    padding: 0 1.5rem;
  }
  
  .intro-content__counter-wrap h4 {
    font-size: 1.2rem !important;
    margin-bottom: 1.2rem !important;
    text-align: center;
    letter-spacing: 0.28em !important;
  }
  
  .counter {
    display: flex !important;
    align-items: baseline !important;
    gap: 1.5rem !important;
    flex-wrap: wrap;
    justify-content: flex-start !important;
  }
  
  .counter__time {
    min-width: auto !important;
    text-align: left !important;
    font-size: 3rem !important;
    padding: 0;
    background: transparent;
    border-radius: 0;
    font-variant-numeric: tabular-nums !important;
    display: flex !important;
    align-items: baseline !important;
    gap: 0.5rem !important;
  }
  
  .counter__time span {
    font-size: 1.3rem !important;
    display: inline-block !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    opacity: 0.9;
    letter-spacing: 0.28em !important;
  }
  
  /* Intro bottom section for small mobile */
  .intro-content__bottom {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  
  .intro-content__notify {
    margin-top: 0 !important;
    text-align: center;
  }
  
  .intro-content__notify .btn--stroke {
    width: 100% !important;
    padding: 1rem 2rem !important;
    font-size: 1.2rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem;
  }
  
  .intro-content__notify .btn--stroke svg {
    width: 18px !important;
    height: 18px !important;
  }
  
  .filter-btn {
    padding: 0.7rem 1.2rem !important;
    font-size: 0.85rem !important;
  }
  
  .breadcrumb-container {
    padding: 0.75rem 0;
  }
  
  .breadcrumb {
    font-size: 0.75rem !important;
  }
}

/* ===================================================================
 * # Background Image Optimization
 * ------------------------------------------------------------------- */

/* Ensure all background images start at top */
.s-intro--slides .intro-slider-img {
  background-position: center top !important;
  background-size: cover !important;
}

/* Services banner background optimization */
.services-hero-banner {
  background-position: center top !important;
  background-size: cover !important;
}

/* Remove any unwanted margins on sections */
section {
  margin-top: 0 !important;
}

/* Ensure main content areas have no top margin */
main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Fix intro scroll position */
.intro-scroll {
  bottom: 4rem;
}

@media screen and (max-width: 768px) {
  .intro-scroll {
    bottom: 3rem;
  }
}

/* Ensure smooth transitions */
* {
  box-sizing: border-box;
}

/* Prevent horizontal scrolling */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ===================================================================
 * # Projects Page Styles
 * ------------------------------------------------------------------- */

/* Projects Hero Banner */
.projects-hero-banner {
  position: relative;
  height: 60vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
  background-image: url('../images/sk_images/_MAG8511.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 8rem;
}

.hero-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-banner-content {
  position: relative;
  z-index: 10;
  color: #ffffff;
  max-width: 800px;
  padding: 0 2rem;
}

.hero-banner-content h1 {
  font-size: 4.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 400;
}

.hero-banner-content p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

/* Projects Introduction Section */
.projects-intro-section {
  padding: 4rem 0;
  background: #ffffff;
  border-bottom: 1px solid #e9ecef;
}

.intro-message-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}

.intro-message-box h2 {
  font-size: 3.5rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  font-weight: 400;
}

.intro-message-box p {
  font-size: 1.2rem;
  color: #6c757d;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-family: 'Montserrat', sans-serif;
}

.intro-message-box .highlight-text {
  font-size: 1.1rem;
  color: #d4af37;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 0;
  border-left: 4px solid #d4af37;
  padding-left: 1.5rem;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Projects Grid */
.projects-section {
  padding: 4rem 0;
  background: #f8f9fa;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 4rem 3rem;
  margin-top: 3rem;
}

/* Project Card - Professional Portfolio Style */
.project-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  transform: scale(1);
  border: 1px solid #e9ecef;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-color: #d4af37;
}

.project-image {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: #f1f3f5;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-image img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-info {
  width: 100%;
}

.project-info h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
}

.project-info > p:first-of-type {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.4rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

.project-client {
  font-weight: 700 !important;
  color: #d4af37 !important;
  text-transform: uppercase;
  font-size: 0.85rem !important;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif !important;
}

/* Project Category Badge */
.project-category {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(212, 175, 55, 0.95);
  color: #000000;
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Montserrat', sans-serif;
  z-index: 10;
}

/* Project Details Container */
.project-details {
  padding: 2rem;
}

.project-details h3 {
  font-size: 1.6rem;
  color: #2c3e50;
  margin-bottom: 0.8rem;
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
}

.project-details > p {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 1rem;
  line-height: 1.6;
  font-family: 'Montserrat', sans-serif;
}

.project-client-text {
  font-size: 0.85rem !important;
  color: #d4af37 !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 1rem;
}

/* Projects CTA Section */
.projects-cta {
  padding: 6rem 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #2c3e50 100%);
  text-align: center;
}

.projects-cta .cta-content h2 {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.projects-cta .cta-content p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.projects-cta .cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.projects-cta .btn-cta {
  padding: 1.2rem 3rem;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;
}

.projects-cta .btn-cta.primary {
  background: #d4af37;
  color: #000000;
}

.projects-cta .btn-cta.primary:hover {
  background: #b8860b;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.projects-cta .btn-cta.secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.projects-cta .btn-cta.secondary:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-3px);
}

/* Responsive Styles for Projects */
@media screen and (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2.5rem;
  }
}

@media screen and (max-width: 768px) {
  .projects-hero-banner {
    height: 50vh;
  }
  
  .hero-banner-content h1 {
    font-size: 3rem;
  }
  
  .hero-banner-content p {
    font-size: 1.2rem;
  }
  
  .intro-message-box h2 {
    font-size: 2.5rem;
  }
  
  .intro-message-box p {
    font-size: 1.1rem;
  }
  
  .intro-message-box .highlight-text {
    font-size: 1rem;
    padding-left: 1rem;
  }
  
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .project-image {
    height: 280px;
  }
  
  .projects-cta .cta-content h2 {
    font-size: 2.5rem;
  }
  
  .projects-cta .cta-content p {
    font-size: 1.2rem;
  }
  
  .projects-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .projects-cta .btn-cta {
    width: 100%;
    max-width: 300px;
  }
}

@media screen and (max-width: 480px) {
  .projects-hero-banner {
    height: 45vh;
  }
  
  .hero-banner-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-banner-content p {
    font-size: 1.1rem;
  }
  
  .intro-message-box {
    padding: 0 1.5rem;
  }
  
  .intro-message-box h2 {
    font-size: 2rem;
  }
  
  .intro-message-box p {
    font-size: 1rem;
  }
  
  .intro-message-box .highlight-text {
    font-size: 0.95rem;
  }
  
  .projects-grid {
    gap: 1.5rem;
  }
  
  .project-overlay {
    padding: 2rem 1.5rem 1.5rem;
  }
  
  .project-info h3 {
    font-size: 1.3rem;
  }
  
  .projects-cta {
    padding: 4rem 0;
  }
  
  .projects-cta .cta-content h2 {
    font-size: 2rem;
  }
  
  .projects-cta .cta-content p {
    font-size: 1rem;
  }
}

/* ===================================================================
 * # Mobile Menu Toggle Button
 * ------------------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  position: relative;
  width: 30px;
  height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  margin-left: auto;
  order: 3;
}

.mobile-menu-toggle span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #ffffff;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transition: .25s ease-in-out;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle span:nth-child(1) {
  top: 0px;
}

.mobile-menu-toggle span:nth-child(2) {
  top: 10px;
}

.mobile-menu-toggle span:nth-child(3) {
  top: 20px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.mobile-menu-toggle.active span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
}

@media screen and (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .header-email {
    display: none;
  }
  
  .header-email.mobile-active {
    display: block !important;
  }
}
