/* =========================================================
   GLOBAL WIDTH CONTAINER
   ========================================================= */

.dw-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Optional: slightly wider on large screens */
@media (min-width: 1400px) {
  .dw-container {
    max-width: 1320px;
  }
}

.dw-about { font-family: inherit; }

/* HERO */
.dw-about-hero {
  background:#111;
  color:#fff;
  padding:80px 0;
}
.dw-about-hero-inner {
  display:flex;
  gap:40px;
  align-items:center;
}
.dw-about-hero-text { flex:1; }
.dw-about-hero-video { flex:1; }
.dw-about-hero-video iframe {
  width:100%;
  height:320px;
  border-radius:10px;
}

.dw-label {
  font-size:12px;
  letter-spacing:1px;
  color:#999;
  display:block;
  margin-bottom:10px;
}

/* INTRO */
.dw-about-intro {
  padding:60px 0;
  text-align:center;
  max-width:800px;
  margin:auto;
}

/* FEATURES */
.dw-feature-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
}
.dw-feature-card {
  background:#fff;
  padding:25px;
  border-radius:10px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

/* SPLIT */
.dw-about-split {
  padding:60px 0;
  background:#f7f7f7;
}
.dw-about-split-inner {
  display:flex;
  gap:40px;
  align-items:center;
}
.dw-about-split-image img {
  width:100%;
  border-radius:10px;
}

/* VALUES */
.dw-values-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  text-align:center;
}

/* CTA */
.dw-about-cta {
  background:#111;
  color:#fff;
  text-align:center;
  padding:60px 0;
}
.dw-btn {
  padding:12px 24px;
  text-decoration:none;
  border-radius:6px;
}
.dw-btn-primary {
  background:#fff;
  color:#000;
}
.dw-btn-outline {
  border:1px solid #fff;
  color:#fff;
}



.dw-about-main{
  padding: 60px 0;
  background: #f7f7f7;
}

.dw-about-grid{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* LEFT TEXT */
.dw-about-text h2{
  margin-bottom: 10px;
}

.dw-about-text h3{
  margin-top: 25px;
}

.dw-about-text p{
  line-height: 1.6;
  color: #555;
}

.dw-about-text ul{
  padding-left: 18px;
}

.dw-about-text li{
  margin-bottom: 6px;
}

/* RIGHT SIDE */
.dw-about-side{
  display: grid;
  gap: 20px;
}

.dw-side-card{
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform .2s ease;
}

.dw-side-card:hover{
  transform: translateY(-4px);
}

.dw-side-card img{
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.dw-side-card h4{
  margin: 12px 15px 5px;
}

.dw-side-card p{
  margin: 0 15px 15px;
  font-size: 14px;
  color: #666;
}

/* MOBILE */
@media (max-width: 900px){
  .dw-about-grid{
    grid-template-columns: 1fr;
  }
}



/* =========================================================
   ABOUT PAGE CSS
   ========================================================= */

.dw-about-page {
  --dw-navy: #102033;
  --dw-blue: #1d4f8f;
  --dw-light-blue: #eef5fb;
  --dw-orange: #f0a83a;
  --dw-border: #dde6ef;
  --dw-text: #344255;
  --dw-muted: #6d7b8a;
  --dw-white: #ffffff;

  color: var(--dw-text);
  font-family: inherit;
}

/* HERO */
.dw-about-hero {
  background:
    linear-gradient(135deg, rgba(16,32,51,.95), rgba(29,79,143,.88)),
    url("/images/about/about-hero.jpg") center/cover no-repeat;
  color: #fff;
  padding: 70px 28px;
  border-radius: 22px;
  margin: 0 0 42px;
  text-align: center;
}

.dw-about-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  font-weight: 800;
}

.dw-about-hero p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.6;
  color: rgba(255,255,255,.9);
}

/* SECTIONS */
.dw-about-section {
  background: var(--dw-white);
  border: 1px solid var(--dw-border);
  border-radius: 22px;
  padding: 38px;
  margin-bottom: 28px;
  box-shadow: 0 18px 45px rgba(16,32,51,.07);
}

.dw-about-section--alt {
  background: linear-gradient(180deg, #f8fbff, #ffffff);
}

.section-head {
  margin-bottom: 28px;
}

.section-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--dw-blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-head h2,
.dw-about-section h2 {
  margin: 0 0 10px;
  color: var(--dw-navy);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  font-weight: 800;
}

.section-head p {
  margin: 0;
  color: var(--dw-muted);
  font-size: 17px;
}

/* TEXT */
.dw-about-text p,
.dw-about-section p {
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 16px;
}

.dw-about-section strong {
  color: var(--dw-navy);
}

/* TWO COLUMN */
.dw-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 34px;
  align-items: center;
}

.dw-about-image {
  border-radius: 18px;
  overflow: hidden;
  background: #eef2f6;
  min-height: 260px;
  box-shadow: 0 14px 34px rgba(16,32,51,.12);
}

.dw-about-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

/* PRODUCT CARDS */
.dw-product-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.dw-product-card,
.dw-feature {
  background: #fff;
  border: 1px solid var(--dw-border);
  border-radius: 18px;
  padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.dw-product-card:hover,
.dw-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(29,79,143,.35);
  box-shadow: 0 18px 36px rgba(16,32,51,.10);
}

.dw-product-card h3,
.dw-feature h3 {
  margin: 0 0 10px;
  color: var(--dw-navy);
  font-size: 18px;
  line-height: 1.25;
}

.dw-product-card p,
.dw-feature p {
  margin: 0;
  color: var(--dw-muted);
  font-size: 15px;
  line-height: 1.55;
}

/* FEATURES */
.dw-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

/* LISTS */
.dw-list {
  margin: 18px 0 22px;
  padding: 0;
  list-style: none;
}

.dw-list li {
  position: relative;
  padding: 12px 0 12px 34px;
  border-bottom: 1px solid var(--dw-border);
  font-size: 16px;
}

.dw-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 12px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--dw-light-blue);
  color: var(--dw-blue);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
  line-height: 22px;
}

/* CTA TEXT */
.dw-about-cta {
  margin-top: 24px !important;
  padding: 18px 20px;
  border-left: 5px solid var(--dw-orange);
  background: #fff8ec;
  border-radius: 14px;
  color: var(--dw-navy);
}

.dw-about-cta a {
  color: var(--dw-blue);
  font-weight: 800;
  text-decoration: none;
}

.dw-about-cta a:hover {
  text-decoration: underline;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(180deg, #f7c55a 0%, #f0a83a 45%, #e68a00 100%);
  color: #111 !important;
  border: 1px solid #c87f00;
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow: 0 10px 22px rgba(230,138,0,.28);
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(230,138,0,.35);
}

.btn-large {
  padding: 15px 34px;
  font-size: 17px;
}

/* FINAL CTA */
.dw-about-final {
  text-align: center;
  background:
    linear-gradient(135deg, rgba(16,32,51,.96), rgba(29,79,143,.92));
  color: #fff;
}

.dw-about-final h2 {
  color: #fff;
}

.dw-about-final p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255,255,255,.88);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .dw-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dw-feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .dw-about-hero {
    padding: 46px 22px;
    border-radius: 16px;
  }

  .dw-about-section {
    padding: 26px 22px;
    border-radius: 16px;
  }

  .dw-about-grid {
    grid-template-columns: 1fr;
  }

  .dw-product-grid {
    grid-template-columns: 1fr;
  }

  .dw-about-image {
    min-height: 220px;
  }

  .dw-about-image img {
    min-height: 220px;
  }
}