:root {
  --primary-green: #4b9556;
  --primary-green-hover: #3c6845;
  --dark-green: #2a352c;
  --bg-white: #ffffff;
  --bg-light: #f8f9fa;
  --border-light: #e9edf2;
  --border-soft: #f1f3f5;
  --text-dark: #1a1a1a;
  --text-muted: #6c757d;
  --text-white: #ffffff;
  --font-display: Work Sans, sans-serif;
  --font-body: Noto Sans, sans-serif;
  --radius-lg: 4px;
  --radius-md: 3px;
  --radius-sm: 2px;
  --header-height: 80px;
  --topbar-height: 40px;
}

html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .display-font {
  font-family: var(--font-display);
  font-weight: 700;
}

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

.section-pad {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .section-pad {
    padding: 50px 0;
  }
}

.top-bar {
  min-height: var(--topbar-height);
  background-color: var(--primary-green);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 15px;
  text-align: center;
}

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1020;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-light);
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  .sticky-header {
    height: auto !important;
    padding: 10px 0;
    align-items: flex-start;
  }
}
.sticky-header .navbar {
  padding: 0;
}
@media (max-width: 991px) {
  .sticky-header .navbar {
    align-items: flex-start;
  }
}
.sticky-header .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.sticky-header .navbar-toggler .material-symbols-outlined {
  font-size: 30px;
  vertical-align: middle;
}
@media (max-width: 991px) {
  .sticky-header .navbar-collapse {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
    width: 100%;
  }
}
.sticky-header .nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark) !important;
  padding: 0.5rem 1rem !important;
}
@media (max-width: 991px) {
  .sticky-header .nav-link {
    padding: 12px 20px !important;
    font-size: 16px;
    border-radius: var(--radius-sm);
    margin: 2px 0;
  }
}
.sticky-header .nav-link:hover {
  color: var(--primary-green) !important;
}
@media (max-width: 991px) {
  .sticky-header .nav-link:hover {
    background-color: rgba(75, 149, 86, 0.05);
  }
}

.btn-primary-custom {
  background-color: var(--primary-green);
  border: 1px solid var(--primary-green);
  color: var(--text-white);
  border-radius: var(--radius-sm);
  padding: 12px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary-custom:hover {
  background-color: var(--primary-green-hover);
  border-color: var(--primary-green-hover);
  color: var(--text-white);
  transform: translateY(-1px);
}
.btn-ghost {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--text-white);
  border-radius: var(--radius-sm);
  padding: 12px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--text-white);
  color: var(--text-white);
}
.btn-hero-more {
  background-color: transparent;
  border: none;
  color: var(--text-white);
  font-family: var(--font-display);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}
.btn-hero-more .icon-circle {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.btn-hero-more:hover {
  color: var(--text-white);
  opacity: 0.8;
}
.btn-hero-more:hover .icon-circle {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(3px);
}

.navbar-logo {
  width: 6.5rem;
  height: auto;
}

.hero-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 45px;
  color: var(--text-white);
}
@media (max-width: 991px) {
  .hero-card {
    min-height: 400px;
    padding: 40px 20px;
  }
}
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 125%;
  height: 125%;
  object-fit: cover;
  transform: translate(-50%, -40%);
  z-index: 0;
}
.hero-video-darken {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 62%;
  background: rgba(75, 149, 86, 0.9);
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}
@media (max-width: 991px) {
  .hero-overlay {
    width: 100%;
    clip-path: none;
    background: linear-gradient(to bottom, rgba(75, 149, 86, 0.95), rgba(75, 149, 86, 0.7));
  }
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-lead {
  max-width: 500px;
}

.mission-section {
  background-color: var(--primary-green);
}

.mission-content p {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

.text-eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: var(--primary-green);
  margin-bottom: 1rem;
  display: block;
}

.mosaic-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
@media (max-width: 991px) {
  .mosaic-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.mosaic-row {
  display: flex;
  gap: 20px;
  flex: 1;
}
@media (max-width: 991px) {
  .mosaic-row {
    display: contents;
  }
}

.mosaic-tile {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  flex: 1;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--text-white);
  min-height: 200px;
}
@media (max-width: 991px) {
  .mosaic-tile {
    aspect-ratio: 1/1;
    min-height: auto;
  }
}
.mosaic-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 60%);
  z-index: 1;
}
.mosaic-tile-content {
  position: relative;
  z-index: 2;
}
.mosaic-tile h3 {
  font-size: 18px;
  margin-bottom: 4px;
}
.mosaic-tile p {
  font-size: 13px;
  opacity: 0.8;
  margin: 0;
}
.mosaic-tile.tile-rain {
  background-image: url("/media/static/dugastore/rain.webp");
}
.mosaic-tile.tile-layers {
  background-image: url("/media/static/dugastore/light-layers.webp");
}
.mosaic-tile.tile-heat {
  background-image: url("/media/static/dugastore/comfort-heat.webp");
}
.mosaic-tile.tile-wind {
  background-image: url("/media/static/dugastore/windy.webp");
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cred-item .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 3px;
  background-color: var(--bg-white);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-green);
  flex-shrink: 0;
}
.cred-item h4 {
  font-size: 15px;
  margin-bottom: 2px;
}
.cred-item p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

.tech-card {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-top: 3px solid transparent;
  border-radius: var(--radius-md);
  padding: 40px;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.tech-card:hover {
  transform: translateY(-4px);
  border-top-color: var(--primary-green);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}
.tech-card .tech-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-light);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary-green);
}

.tech-lead {
  max-width: 600px;
}

.lookbook-tile {
  margin-bottom: 30px;
}
.lookbook-tile:hover .lookbook-img {
  transform: scale(1.02);
}
.lookbook-tile h3 {
  font-size: 18px;
  margin-bottom: 4px;
}
.lookbook-tile p {
  font-size: 14px;
  color: var(--text-muted);
}
.lookbook-img {
  border-radius: var(--radius-md);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: top;
  margin-bottom: 16px;
  transition: transform 0.5s ease;
}

.split-panels {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
}
@media (max-width: 767px) {
  .split-panels {
    flex-direction: column;
  }
}

.split-panel {
  flex: 1;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: var(--text-white);
  overflow: hidden;
}
@media (max-width: 767px) {
  .split-panel {
    height: 300px;
    flex: unset;
  }
}
.split-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  transition: background 0.4s ease;
  z-index: 1;
}
.split-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s ease, transform 0.8s ease;
}
.split-panel h3 {
  position: relative;
  z-index: 2;
  font-size: 48px;
  letter-spacing: 2px;
}
@media (max-width: 767px) {
  .split-panel h3 {
    font-size: 32px;
  }
}
.split-panel .sm_intext {
  position: static;
  z-index: 2;
}
.split-panel:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.split-panel:hover::before {
  background: rgba(0, 0, 0, 0.2);
}

.contact-wrapper {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}
.contact-info-panel {
  background-color: var(--dark-green);
  color: var(--text-white);
  padding: 50px;
  height: 100%;
}
@media (max-width: 991px) {
  .contact-info-panel {
    padding: 40px 20px;
  }
}
.contact-form-panel {
  padding: 50px;
}
@media (max-width: 991px) {
  .contact-form-panel {
    padding: 40px 20px;
  }
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}
.contact-item h5 {
  font-size: 13px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 4px;
}
.contact-item p {
  font-weight: 600;
  margin: 0;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

footer {
  background-color: var(--dark-green);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px;
}
footer .logo-text {
  color: var(--text-white);
  font-size: 24px;
  margin-bottom: 20px;
}
footer h4 {
  color: var(--text-white);
  font-size: 18px;
  margin-bottom: 25px;
}
footer ul {
  list-style: none;
  padding: 0;
}
footer ul li {
  margin-bottom: 12px;
}
footer ul li a:hover {
  color: var(--text-white);
}
footer .footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}
footer .social-links .sm_intext {
  display: flex;
  gap: 20px;
}
footer .social-links a:hover {
  color: var(--text-white);
}

.rounded-box {
  border-radius: var(--radius-md);
}

.bg-light-box {
  background-color: var(--bg-light);
}

.bg-primary-green {
  background-color: var(--primary-green) !important;
}

.badge-since {
  background-color: var(--primary-green);
  color: white;
  padding: 8px 16px;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
}

.check-list .check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.check-list .check-item .check-icon {
  color: var(--primary-green);
  font-size: 22px;
  flex-shrink: 0;
}
.check-list .check-item p {
  margin: 0;
  font-weight: 500;
}

.g-word {
  display: inline-block;
  will-change: opacity, transform;
}

.process-wrapper {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 991px) {
  .process-steps {
    flex-direction: column;
    gap: 10px;
  }
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 20px;
}
.process-step .step-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--border-light);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -1px;
}
.process-step .step-content h3 {
  font-size: 15px;
  margin-bottom: 4px;
  font-weight: 700;
}
.process-step .step-content p {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin: 0;
}

.process-arrow {
  color: var(--border-light);
}
.process-arrow span {
  font-size: 32px;
}
@media (max-width: 991px) {
  .process-arrow {
    transform: rotate(90deg);
  }
}

.timeline-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-green);
  font-weight: 700;
  font-size: 15px;
}
.timeline-badge span {
  font-size: 24px;
}

.navbar-brand-name {
  font-weight: 700;
  display: block;
  line-height: 1;
  font-size: 20px;
  letter-spacing: -0.5px;
}
.navbar-brand-sub {
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 1px;
}

.modal-content {
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
}
.modal-content h3 {
  font-family: var(--font-display);
  color: var(--dark-green);
}

.stock-cta-section {
  background-color: var(--dark-green);
  padding: 40px 0;
}

.stock-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .stock-cta-inner {
    flex-direction: column;
    text-align: center;
  }
}

.stock-cta-text {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--text-white);
  flex: 1;
  min-width: 260px;
}
.stock-cta-text h3 {
  font-size: 1.25rem;
  color: var(--text-white);
}
@media (max-width: 768px) {
  .stock-cta-text {
    flex-direction: column;
    text-align: center;
  }
}

.stock-cta-icon {
  font-size: 2.5rem;
  color: var(--primary-green);
  flex-shrink: 0;
}

.btn-hero-light {
  background-color: var(--text-white);
  color: var(--dark-green);
  font-family: var(--font-display);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  white-space: nowrap;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.btn-hero-light:hover {
  background-color: var(--primary-green);
  color: var(--text-white);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .btn-hero-light {
    width: 100%;
    justify-content: center;
  }
}

.modal-backdrop.show {
  opacity: 0.7;
  backdrop-filter: blur(4px);
}