/* Wisdom Digital — Modern Design System */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Oswald:wght@500;600;700&display=swap');

:root {
  --wd-dark: #24262b;
  --wd-gold: #755200;
  --wd-gold-light: #8f6800;
  --wd-muted: #6f6f6f;
  --wd-bg: #fafafa;
  --wd-border: #eee;
  --wd-radius: 12px;
  --wd-shadow: 0 8px 24px rgba(36, 38, 43, 0.08);
  --wd-shadow-hover: 0 12px 32px rgba(36, 38, 43, 0.12);
  --wd-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --wd-font-display: 'Oswald', sans-serif;
}

body {
  font-family: var(--wd-font-body);
  color: var(--wd-muted);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6, .title {
  font-family: var(--wd-font-display);
  color: var(--wd-dark);
}

a {
  color: var(--wd-dark);
}

a:hover {
  color: var(--wd-gold);
}

.overview-block-ptb {
  padding: 50px 0 !important;
}

/* ---- Navigation ---- */
#main-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid var(--wd-border);
  box-shadow: 0 1px 8px rgba(36, 38, 43, 0.04);
  z-index: 10050;
}

.wd-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 40px;
  position: relative;
}

.wd-logo {
  display: block;
  flex-shrink: 0;
}

.wd-logo img {
  height: 36px;
  width: auto;
}

#main-header .wd-mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid var(--wd-border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  line-height: 1;
}

#main-header .wd-mobile-nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--wd-dark);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

#main-header .wd-nav {
  flex: 1;
}

.wd-nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.wd-nav-list > li {
  margin: 0;
  padding: 0;
}

.wd-nav-list > li > a {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: var(--wd-dark) !important;
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none !important;
  transition: color 0.2s ease, background 0.2s ease;
}

.wd-nav-list > li:hover > a,
.wd-nav-list > li.active > a,
.wd-nav-list > li.nav-active > a {
  color: var(--wd-gold) !important;
}

.wd-nav-list > li.nav-cta-advertise > a {
  border: 1.5px solid var(--wd-gold);
  color: var(--wd-gold) !important;
  padding: 8px 18px;
  font-weight: 600;
}

.wd-nav-list > li.nav-cta-advertise:hover > a {
  background: var(--wd-gold) !important;
  color: #fff !important;
}

.wd-nav-list > li.nav-cta-contact > a {
  background: var(--wd-dark) !important;
  color: #fff !important;
  padding: 8px 18px;
  font-weight: 600;
}

.wd-nav-list > li.nav-cta-contact:hover > a {
  background: var(--wd-gold) !important;
  color: #fff !important;
}

#main-header.wd-nav-open .wd-mobile-nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

#main-header.wd-nav-open .wd-mobile-nav-toggle span:nth-child(2) {
  opacity: 0;
}

#main-header.wd-nav-open .wd-mobile-nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Page Hero ---- */
.wd-page-hero {
  padding: 48px 0 40px;
  background: var(--wd-bg);
  border-bottom: 1px solid var(--wd-border);
}

.wd-page-hero h1 {
  margin: 0 0 8px;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
  color: var(--wd-dark);
}

.wd-page-hero .wd-page-subtitle {
  margin: 0;
  font-size: 1.05rem;
  color: var(--wd-muted);
  max-width: 560px;
}

/* ---- Buttons ---- */
.wd-btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--wd-dark);
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  text-decoration: none !important;
  transition: background 0.2s ease;
}

.wd-btn:hover {
  background: var(--wd-gold);
  color: #fff !important;
}

.wd-btn-outline {
  display: inline-block;
  padding: 11px 26px;
  background: transparent;
  color: var(--wd-gold) !important;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--wd-gold);
  border-radius: 6px;
  text-decoration: none !important;
  transition: all 0.2s ease;
}

.wd-btn-outline:hover {
  background: var(--wd-gold);
  color: #fff !important;
}

.wd-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.wd-section-header h2 {
  margin: 0 0 8px;
  font-size: 2rem;
  font-weight: 700;
}

.wd-section-header p {
  margin: 0;
  color: var(--wd-muted);
}

/* ---- Cards ---- */
.wd-card {
  background: #fff;
  border: 1px solid var(--wd-border);
  border-radius: var(--wd-radius);
  box-shadow: var(--wd-shadow);
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.wd-card:hover {
  box-shadow: var(--wd-shadow-hover);
  transform: translateY(-2px);
}

/* ---- Homepage Hero ---- */
.homepage-hero {
  padding: 70px 0 60px;
  background: linear-gradient(180deg, var(--wd-bg) 0%, #fff 100%);
  border-bottom: 1px solid var(--wd-border);
}

.homepage-hero .row {
  align-items: center;
}

.homepage-hero .hero-copy {
  padding-right: 30px;
}

.homepage-hero .hero-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  background: var(--wd-gold);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
}

.homepage-hero h1 {
  margin-bottom: 20px;
  font-family: var(--wd-font-display);
  font-weight: 700;
  color: var(--wd-dark);
  line-height: 1.05;
}

.homepage-hero .hero-brand {
  display: block;
  font-size: 58px;
  letter-spacing: -0.5px;
}

.homepage-hero .hero-title {
  display: block;
  margin-top: 8px;
  font-size: 42px;
  color: var(--wd-gold);
}

.homepage-hero p {
  margin-bottom: 28px;
  max-width: 420px;
  color: var(--wd-muted);
  font-size: 17px;
  line-height: 1.75;
}

.homepage-hero .hero-button {
  display: inline-block;
  padding: 14px 36px;
  background: var(--wd-dark);
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 6px;
  transition: background 0.2s ease;
  text-decoration: none !important;
}

.homepage-hero .hero-button:hover {
  background: var(--wd-gold);
  color: #fff !important;
}

.homepage-hero .hero-frame-link {
  display: block;
  text-decoration: none;
}

.homepage-hero .hero-browser-frame {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: var(--wd-radius);
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(36, 38, 43, 0.14);
}

.homepage-hero .hero-browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: #ececec;
  border-bottom: 1px solid #ddd;
}

.homepage-hero .hero-browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c4c4c4;
}

.homepage-hero .hero-browser-dot:nth-child(1) { background: #ff5f57; }
.homepage-hero .hero-browser-dot:nth-child(2) { background: #febc2e; }
.homepage-hero .hero-browser-dot:nth-child(3) { background: #28c840; }

.homepage-hero .hero-browser-url {
  margin-left: 10px;
  padding: 5px 14px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 999px;
  color: #666;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.homepage-hero .hero-browser-screen {
  background: #111;
  line-height: 0;
}

.homepage-hero .hero-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  object-position: top center;
}

/* ---- Stats Row ---- */
.wd-stat-row {
  padding: 50px 0;
  border-bottom: 1px solid var(--wd-border);
}

.wd-stat-row .wd-stat {
  text-align: center;
  padding: 20px 15px;
}

.wd-stat-row .wd-stat-number {
  display: block;
  font-family: var(--wd-font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--wd-dark);
  line-height: 1.1;
}

.wd-stat-row .wd-stat-label {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--wd-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---- Anniversary ---- */
.wd-anniversary-box {
  background: #fff;
  border: 1px solid var(--wd-border);
  border-radius: var(--wd-radius);
  padding: 25px;
  box-shadow: var(--wd-shadow);
}

.wd-anniversary-box .row {
  display: flex;
  flex-wrap: wrap;
}

.wd-anniversary-box .video-col,
.wd-anniversary-box .image-col {
  display: flex;
}

.wd-anniversary-box .video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 8px;
  overflow: hidden;
}

.wd-anniversary-box .video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wd-anniversary-box .image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  display: block;
}

.wd-anniversary-box .image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.wd-anniversary-box .image-wrap:hover img {
  transform: scale(1.03);
}

.wd-anniversary-box .enlarge-hint {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  padding: 8px 0;
  font-size: 13px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.wd-anniversary-box .image-wrap:hover .enlarge-hint {
  opacity: 1;
}

/* ---- News Grid ---- */
.wd-news-section {
  padding: 50px 0 60px;
}

.wd-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.wd-news-card {
  background: #fff;
  border: 1px solid var(--wd-border);
  border-radius: var(--wd-radius);
  overflow: hidden;
  box-shadow: var(--wd-shadow);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.wd-news-card:hover {
  box-shadow: var(--wd-shadow-hover);
  transform: translateY(-3px);
}

.wd-news-card-image {
  position: relative;
  display: block;
  line-height: 0;
  overflow: hidden;
}

.wd-news-card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.3s ease;
}

.wd-news-card:hover .wd-news-card-image img {
  transform: scale(1.03);
}

.wd-news-card-tag {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--wd-gold);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 4px;
}

.wd-news-card-body {
  padding: 20px 22px 24px;
}

.wd-news-card-body h5 {
  margin: 0 0 10px;
  font-family: var(--wd-font-display);
  font-size: 1.1rem;
  line-height: 1.35;
}

.wd-news-card-body h5 a {
  color: var(--wd-dark);
  text-decoration: none;
}

.wd-news-card-body h5 a:hover {
  color: var(--wd-gold);
}

.wd-news-card-body p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--wd-muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wd-news-card-body .wd-read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--wd-gold);
  text-decoration: none;
}

.wd-news-card-body .wd-read-more:hover {
  color: var(--wd-dark);
}

.wd-view-all {
  text-align: center;
  margin-top: 36px;
}

/* ---- Feature Pills ---- */
.wd-features-section {
  padding: 60px 0;
}

.wd-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.wd-feature-pill {
  flex: 1 1 140px;
  padding: 20px 18px;
  background: var(--wd-bg);
  border: 1px solid var(--wd-border);
  border-radius: var(--wd-radius);
  text-align: center;
}

.wd-feature-pill h6 {
  margin: 0 0 4px;
  font-family: var(--wd-font-display);
  font-size: 1rem;
  color: var(--wd-dark);
}

.wd-feature-pill p {
  margin: 0;
  font-size: 13px;
  color: var(--wd-muted);
}

/* ---- Testimonials ---- */
.wd-testimonials {
  padding: 70px 0 80px;
  background: #fff;
  border-top: 1px solid var(--wd-border);
}

.wd-testimonial-slider {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 52px;
}

.wd-testimonial-viewport {
  overflow: hidden;
}

.wd-testimonial-track {
  position: relative;
  min-height: 220px;
}

.wd-testimonial-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease, visibility 0.45s;
}

.wd-testimonial-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.wd-testimonial-card {
  background: var(--wd-bg);
  border: 1px solid var(--wd-border);
  border-radius: var(--wd-radius);
  padding: 40px 44px 36px;
  text-align: left;
}

.wd-testimonial-icon {
  color: var(--wd-gold);
  opacity: 0.85;
  margin-bottom: 20px;
}

.wd-testimonial-text {
  margin: 0 0 28px;
  font-size: 1.2rem;
  line-height: 1.75;
  color: var(--wd-dark);
  font-style: normal;
  font-weight: 400;
}

.wd-testimonial-text p {
  margin: 0;
}

.wd-testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--wd-border);
}

.wd-testimonial-author cite {
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  color: var(--wd-dark);
}

.wd-testimonial-author span {
  font-size: 14px;
  color: var(--wd-muted);
  line-height: 1.5;
}

.wd-testimonial-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid var(--wd-border);
  border-radius: 50%;
  background: #fff;
  color: var(--wd-dark);
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 2;
}

.wd-testimonial-nav:hover {
  background: var(--wd-dark);
  border-color: var(--wd-dark);
  color: #fff;
}

.wd-testimonial-prev {
  left: 0;
}

.wd-testimonial-next {
  right: 0;
}

.wd-testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.wd-testimonial-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #d4d4d4;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.wd-testimonial-dot.is-active {
  background: var(--wd-gold);
  transform: scale(1.25);
}

.wd-testimonial-dot:hover {
  background: var(--wd-gold);
}

/* ---- News Listing ---- */
.wd-news-listing {
  padding: 40px 0 60px;
}

.wd-search-bar {
  max-width: 640px;
  margin: 0 auto 40px;
  position: relative;
}

.wd-search-bar input[type="search"] {
  width: 100%;
  padding: 14px 50px 14px 20px;
  border: 1px solid var(--wd-border);
  border-radius: 999px;
  font-size: 15px;
  background: #fff;
  box-shadow: var(--wd-shadow);
  color: var(--wd-dark);
}

.wd-search-bar input[type="search"]:focus {
  outline: none;
  border-color: var(--wd-gold);
}

.wd-search-bar button {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--wd-dark);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.wd-search-bar button:hover {
  background: var(--wd-gold);
}

.wd-featured-story {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
  background: #fff;
  border: 1px solid var(--wd-border);
  border-radius: var(--wd-radius);
  overflow: hidden;
  box-shadow: var(--wd-shadow);
}

.wd-featured-story-image {
  line-height: 0;
}

.wd-featured-story-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: top center;
}

.wd-featured-story-body {
  padding: 32px 32px 32px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wd-featured-story-body .wd-news-date {
  font-size: 13px;
  font-weight: 500;
  color: var(--wd-gold);
  margin-bottom: 10px;
}

.wd-featured-story-body h2 {
  margin: 0 0 14px;
  font-size: 1.75rem;
  line-height: 1.25;
}

.wd-featured-story-body h2 a {
  color: var(--wd-dark);
  text-decoration: none;
}

.wd-featured-story-body h2 a:hover {
  color: var(--wd-gold);
}

.wd-featured-story-body p {
  margin: 0 0 18px;
  color: var(--wd-muted);
  line-height: 1.7;
}

.wd-news-feed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.wd-news-feed-card {
  background: #fff;
  border: 1px solid var(--wd-border);
  border-radius: var(--wd-radius);
  overflow: hidden;
  box-shadow: var(--wd-shadow);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.wd-news-feed-card:hover {
  box-shadow: var(--wd-shadow-hover);
  transform: translateY(-2px);
}

.wd-news-feed-card .wd-news-card-image img {
  height: 240px;
}

.wd-news-feed-card .wd-news-card-body {
  padding: 20px 24px 24px;
}

.wd-news-feed-card .wd-news-date {
  font-size: 12px;
  font-weight: 500;
  color: var(--wd-gold);
  margin-bottom: 8px;
}

/* ---- Article Layout ---- */
.wd-article-layout {
  padding: 40px 0 60px;
}

.wd-article-layout .row {
  align-items: flex-start;
}

.wd-article-layout .wd-sidebar-col {
  align-self: flex-start;
}

.wd-prose {
  margin-top: 0;
}

.wd-prose > :first-child {
  margin-top: 0;
}

section.wd-article-layout {
  padding: 40px 0 60px !important;
}

.wd-article-main {
  max-width: 100%;
}

.wd-article-hero img {
  width: 100%;
  height: auto;
  border-radius: var(--wd-radius);
  margin-bottom: 24px;
}

.wd-article-meta {
  font-size: 13px;
  font-weight: 500;
  color: var(--wd-gold);
  margin-bottom: 16px;
}

.wd-article-title {
  margin: 0 0 24px;
  font-size: 2rem;
  line-height: 1.2;
  color: var(--wd-dark);
}

.wd-article-body {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--wd-dark);
}

.wd-article-body a {
  color: var(--wd-gold);
  text-decoration: underline;
}

.wd-article-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.wd-article-body h2,
.wd-article-body h3 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
}

/* ---- Sidebar ---- */
.wd-sidebar {
  position: sticky;
  top: 80px;
  margin-top: 0;
  padding-top: 0;
}

.wd-sidebar .wd-search-bar {
  margin: 0 0 28px;
}

.wd-sidebar-title {
  font-family: var(--wd-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--wd-dark);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--wd-gold);
}

.wd-sidebar-post {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--wd-border);
}

.wd-sidebar-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.wd-sidebar-post img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.wd-sidebar-post-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 4px;
}

.wd-sidebar-post-title a {
  color: var(--wd-dark);
  text-decoration: none;
}

.wd-sidebar-post-title a:hover {
  color: var(--wd-gold);
}

.wd-sidebar-post-date {
  font-size: 12px;
  color: var(--wd-muted);
}

/* ---- Contact Cards ---- */
.wd-contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.wd-contact-card {
  background: #fff;
  border: 1px solid var(--wd-border);
  border-radius: var(--wd-radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--wd-shadow);
}

.wd-contact-card h4 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.wd-contact-card p {
  margin: 0;
  font-size: 14px;
  color: var(--wd-muted);
}

.wd-contact-form .form-control {
  border-radius: 8px;
  border: 1px solid var(--wd-border);
  padding: 12px 16px;
  color: var(--wd-dark);
}

.wd-contact-form .form-control:focus {
  border-color: var(--wd-gold);
  box-shadow: 0 0 0 3px rgba(117, 82, 0, 0.1);
}

.wd-contact-form .button.btn-yellow,
.wd-contact-form button[type="submit"] {
  background: var(--wd-dark);
  color: #fff;
  border: none;
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.wd-contact-form .button.btn-yellow:hover,
.wd-contact-form button[type="submit"]:hover {
  background: var(--wd-gold);
}

/* ---- Worldwide Map ---- */
.wd-map-wrap {
  border-radius: var(--wd-radius);
  overflow: hidden;
  border: 1px solid var(--wd-border);
  box-shadow: var(--wd-shadow);
}

.worldwide-map-wrap #map {
  border-radius: var(--wd-radius);
}

/* ---- About ---- */
.wd-prose {
  font-size: 16px;
  line-height: 1.8;
  color: var(--wd-dark);
}

.wd-prose a {
  color: var(--wd-gold);
}

.about-proclamation {
  margin: 35px auto 10px;
  max-width: 420px;
  text-align: center;
}

.about-proclamation img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--wd-border);
  border-radius: var(--wd-radius);
  box-shadow: var(--wd-shadow);
}

.about-proclamation p {
  margin: 14px 0 0;
  color: var(--wd-muted);
  font-size: 14px;
}

/* ---- Footer ---- */
.wd-footer {
  background: var(--wd-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 48px 0 24px;
}

.wd-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.wd-footer a:hover {
  color: #fff;
}

.wd-footer-logo img {
  height: 32px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.wd-footer-col h5 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 16px;
}

.wd-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wd-footer-col ul li {
  margin-bottom: 8px;
}

.wd-footer-col ul li a {
  font-size: 14px;
}

.wd-footer-bottom {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ---- Legacy overrides ---- */
.scrolling-text {
  display: none !important;
}

.iq-breadcrumb {
  display: none;
}

.iq-clients.gray-bg {
  background: transparent !important;
}

.iq-timer {
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
}

.counter-box .iq-timer i.flaticon {
  display: none;
}

.blog .iq-blog-box .iq-blogtag li a {
  border-radius: 4px;
}

#back-to-top .top {
  background: var(--wd-dark);
  border-radius: 50%;
}

#back-to-top .top:hover {
  background: var(--wd-gold);
}

.wd-brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 24px;
}

.wd-brands-grid .wd-card {
  padding: 24px;
  text-align: center;
}

.wd-brands-grid .wd-card img {
  max-width: 100%;
  height: auto;
}

.wd-content-page {
  padding: 40px 0 60px;
}

.wd-thank-you {
  text-align: center;
  padding: 60px 20px;
  font-size: 18px;
  color: var(--wd-dark);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  header .container-fluid {
    padding: 12px 20px;
  }

  .homepage-hero {
    padding: 45px 0 40px;
  }

  .homepage-hero .hero-copy {
    padding-right: 0;
    margin-bottom: 35px;
    text-align: center;
  }

  .homepage-hero p {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .homepage-hero .hero-brand {
    font-size: 44px;
  }

  .homepage-hero .hero-title {
    font-size: 32px;
  }

  .wd-news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .wd-featured-story {
    grid-template-columns: 1fr;
  }

  .wd-featured-story-body {
    padding: 24px;
  }

  .wd-featured-story-image img {
    min-height: 220px;
  }

  .wd-news-feed-grid {
    grid-template-columns: 1fr;
  }

  .wd-contact-cards {
    grid-template-columns: 1fr;
  }

  .wd-stat-row .wd-stat-number {
    font-size: 36px;
  }

  .wd-sidebar {
    position: static;
    margin-top: 40px;
  }

  .wd-page-hero h1 {
    font-size: 1.75rem;
  }
}

@media (max-width: 767px) {
  .wd-news-grid {
    grid-template-columns: 1fr;
  }

  .wd-anniversary-box .image-col {
    margin-top: 15px;
    min-height: 250px;
  }

  .wd-stat-row .wd-stat {
    padding: 12px 8px;
  }

  .wd-stat-row .wd-stat-number {
    font-size: 32px;
  }

  .wd-article-title {
    font-size: 1.5rem;
  }

  .wd-testimonial-slider {
    padding: 0 44px;
  }

  .wd-testimonial-card {
    padding: 28px 24px 24px;
  }

  .wd-testimonial-text {
    font-size: 1.05rem;
  }

  .wd-testimonial-nav {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .wd-header-bar {
    padding: 12px 16px;
    flex-wrap: wrap;
  }

  #main-header .wd-mobile-nav-toggle {
    display: flex !important;
    margin-left: auto;
  }

  #main-header .wd-nav {
    display: none !important;
    flex: 0 0 100%;
    width: 100%;
    order: 3;
  }

  #main-header.wd-nav-open .wd-nav {
    display: block !important;
  }

  .wd-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 12px;
    border-top: 1px solid var(--wd-border);
  }

  .wd-nav-list > li {
    width: 100%;
    border-bottom: 1px solid var(--wd-border);
  }

  .wd-nav-list > li:last-child {
    border-bottom: none;
  }

  .wd-nav-list > li > a {
    padding: 14px 4px;
    border-radius: 0;
  }

  .wd-nav-list > li.nav-cta-advertise,
  .wd-nav-list > li.nav-cta-contact {
    border-bottom: none;
    padding-top: 8px;
  }

  .wd-nav-list > li.nav-cta-advertise > a,
  .wd-nav-list > li.nav-cta-contact > a {
    text-align: center;
    border-radius: 6px !important;
  }

  section,
  .homepage-hero,
  .wd-page-hero,
  .main-content {
    z-index: 1;
  }
}

@media (max-width: 575px) {
  .wd-feature-pills {
    flex-direction: column;
  }
}
