/* ==========================================================================
   Symmetrix TECHNOLOGY - Master Responsive Stylesheet
   https://symmetrixsoftware.com
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Google Fonts Import & CSS Variables
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,400&family=Outfit:wght@300;400;500;600;700;800&family=Syne:wght@400;500;600;700;800&display=swap');

:root {
  --wdt-primary: #C0053E;
  --wdt-primary-rgb: 192, 5, 62;
  --wdt-secondary: #221429;
  --wdt-secondary-rgb: 34, 20, 41;
  --wdt-tertiary: #3C2B45;
  --wdt-tertiary-rgb: 60, 43, 69;
  --wdt-quaternary: #E6E8EA;
  --wdt-quaternary-rgb: 230, 232, 234;
  --wdt-body-bg: #E6E8EA;
  --wdt-body-text: #221429;
  --wdt-muted-text: #605467;
  --wdt-border-color: #C5C2C7;
  --wdt-white: #FFFFFF;
  --wdt-black: #000000;
  
  --wdt-font-base: 'Lato', sans-serif;
  --wdt-font-heading: 'Syne', 'Outfit', sans-serif;
  --wdt-font-accent: 'Outfit', sans-serif;

  --wdt-transition: all 0.3s ease;
  --wdt-shadow-sm: 0 4px 20px rgba(34, 20, 41, 0.06);
  --wdt-shadow-md: 0 10px 30px rgba(34, 20, 41, 0.12);
  --wdt-shadow-lg: 0 20px 50px rgba(34, 20, 41, 0.18);
  --wdt-radius: 8px;
}

/* --------------------------------------------------------------------------
   2. Reset & Core Structure
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--wdt-font-base);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--wdt-body-text);
  background-color: var(--wdt-body-bg);
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--wdt-secondary);
  text-decoration: none;
  transition: var(--wdt-transition);
}

a:hover {
  color: var(--wdt-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--wdt-font-heading);
  color: var(--wdt-secondary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); letter-spacing: -1px; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: -0.5px; }
h3 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h4 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h5 { font-size: 1.2rem; }
h6 { font-size: 1.05rem; }

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --------------------------------------------------------------------------
   3. Header & Navigation Structure
   -------------------------------------------------------------------------- */
.header-wrapper {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(230, 232, 234, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 194, 199, 0.4);
  transition: var(--wdt-transition);
}

.header-wrapper.scrolled {
  background-color: #FFFFFF;
  box-shadow: var(--wdt-shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

.logo-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-brand img {
  height: 42px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--wdt-font-base);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--wdt-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--wdt-primary);
  transition: var(--wdt-transition);
}

.nav-link:hover::after, .nav-item.active .nav-link::after {
  width: 100%;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--wdt-secondary);
  border-radius: var(--wdt-radius);
  padding: 0.8rem 0;
  box-shadow: var(--wdt-shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: var(--wdt-transition);
  z-index: 1100;
}

.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item a {
  display: block;
  padding: 0.6rem 1.4rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.dropdown-item a:hover {
  background-color: rgba(192, 5, 62, 0.2);
  color: var(--wdt-primary);
  padding-left: 1.8rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Button Component */
.btn-wdt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  background-color: var(--wdt-secondary);
  color: var(--wdt-white);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 50px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  z-index: 1;
  transition: var(--wdt-transition);
}

.btn-wdt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--wdt-primary);
  z-index: -1;
  transition: var(--wdt-transition);
}

.btn-wdt:hover::before {
  width: 100%;
}

.btn-wdt:hover {
  color: var(--wdt-white);
  box-shadow: 0 8px 20px rgba(192, 5, 62, 0.3);
  transform: translateY(-2px);
}

.btn-dots span {
  display: inline-block;
  width: 5px;
  height: 5px;
  background-color: var(--wdt-primary);
  border-radius: 50%;
}

.btn-wdt:hover .btn-dots span {
  background-color: var(--wdt-white);
}

/* Drawer Toggle Icon */
.drawer-toggle {
  background: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.drawer-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background-color: var(--wdt-secondary);
  border-radius: 3px;
  transition: var(--wdt-transition);
}

.drawer-toggle:hover span {
  background-color: var(--wdt-primary);
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--wdt-secondary);
  line-height: 1;
  padding: 5px;
}

/* --------------------------------------------------------------------------
   4. Side Drawer Modal Overlay
   -------------------------------------------------------------------------- */
.drawer-modal {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background: var(--wdt-secondary);
  color: var(--wdt-white);
  z-index: 2000;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--wdt-shadow-lg);
  transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  overflow-y: auto;
}

.drawer-modal.open {
  right: 0;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 20, 41, 0.75);
  backdrop-filter: blur(4px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: var(--wdt-transition);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.drawer-close {
  background: rgba(255, 255, 255, 0.1);
  color: var(--wdt-white);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--wdt-transition);
}

.drawer-close:hover {
  background: var(--wdt-primary);
  transform: rotate(90deg);
}

.drawer-quote {
  font-family: var(--wdt-font-heading);
  font-size: 1.3rem;
  line-height: 1.5;
  color: #FFFFFF;
  margin-bottom: 1.8rem;
  border-left: 3px solid var(--wdt-primary);
  padding-left: 1rem;
}

.drawer-partner-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 1.2rem;
  border-radius: var(--wdt-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.partner-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--wdt-primary);
}

.partner-text h6 {
  color: #FFFFFF;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.partner-text p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
}

/* --------------------------------------------------------------------------
   5. Hero Sections & Banner Layouts
   -------------------------------------------------------------------------- */
.hero-section {
  padding: 4.5rem 0 5.5rem 0;
  position: relative;
  background-color: var(--wdt-quaternary);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.2rem;
  background: rgba(192, 5, 62, 0.1);
  color: var(--wdt-primary);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  max-width: 100%;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
}

.hero-title span {
  color: var(--wdt-primary);
}

.hero-description {
  font-size: 1.1rem;
  color: var(--wdt-muted-text);
  margin-bottom: 2.2rem;
  max-width: 95%;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-image-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--wdt-shadow-lg);
  width: 100%;
}

.hero-image-box img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-image-box:hover img {
  transform: scale(1.03);
}

.page-banner {
  background-color: var(--wdt-secondary);
  color: var(--wdt-white);
  padding: 4.5rem 0;
  position: relative;
  background-image: radial-gradient(circle at 80% 20%, rgba(192, 5, 62, 0.15) 0%, transparent 50%);
}

.page-banner h1 {
  color: var(--wdt-white);
  margin-bottom: 0.8rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
}

.breadcrumb a:hover {
  color: var(--wdt-primary);
}

/* --------------------------------------------------------------------------
   6. Content Sections, Cards & Grids
   -------------------------------------------------------------------------- */
.section-padding {
  padding: 5rem 0;
}

.section-title-wrap {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem auto;
}

.section-subtitle {
  color: var(--wdt-primary);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  margin-bottom: 1rem;
}

/* Service Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #FFFFFF;
  padding: 2.2rem;
  border-radius: var(--wdt-radius);
  border: 1px solid rgba(197, 194, 199, 0.5);
  box-shadow: var(--wdt-shadow-sm);
  transition: var(--wdt-transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--wdt-shadow-md);
  border-color: var(--wdt-primary);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(192, 5, 62, 0.08);
  color: var(--wdt-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: var(--wdt-transition);
}

.service-card:hover .service-icon {
  background: var(--wdt-primary);
  color: #FFFFFF;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}

.service-card p {
  color: var(--wdt-muted-text);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--wdt-secondary);
  text-transform: uppercase;
}

.service-card:hover .link-arrow {
  color: var(--wdt-primary);
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.portfolio-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--wdt-secondary);
  box-shadow: var(--wdt-shadow-sm);
}

.portfolio-thumb {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-thumb {
  transform: scale(1.05);
  opacity: 0.85;
}

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.8rem;
  background: linear-gradient(to top, rgba(34, 20, 41, 0.95) 0%, rgba(34, 20, 41, 0) 100%);
  color: #FFFFFF;
  transform: translateY(6px);
  transition: var(--wdt-transition);
}

.portfolio-item:hover .portfolio-overlay {
  transform: translateY(0);
}

.portfolio-cat {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--wdt-primary);
  letter-spacing: 1px;
  margin-bottom: 0.3rem;
}

.portfolio-title {
  color: #FFFFFF;
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

/* Stats Counter Box */
.stats-box {
  background: var(--wdt-secondary);
  color: #FFFFFF;
  padding: 3.5rem 2rem;
  border-radius: 16px;
  margin: 3.5rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: var(--wdt-font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--wdt-primary);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.team-card {
  background: #FFFFFF;
  border-radius: var(--wdt-radius);
  overflow: hidden;
  box-shadow: var(--wdt-shadow-sm);
  border: 1px solid rgba(197, 194, 199, 0.5);
  transition: var(--wdt-transition);
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--wdt-shadow-md);
}

.team-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-info {
  padding: 1.4rem;
  text-align: center;
}

.team-role {
  color: var(--wdt-primary);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(197, 194, 199, 0.6);
  position: relative;
  transition: var(--wdt-transition);
}

.pricing-card.featured {
  background: var(--wdt-secondary);
  color: #FFFFFF;
  border-color: var(--wdt-primary);
}

.pricing-card.featured h3, .pricing-card.featured p {
  color: #FFFFFF;
}

.pricing-popular {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--wdt-primary);
  color: #FFFFFF;
  padding: 0.3rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 20px;
}

.price-tag {
  font-family: var(--wdt-font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  margin: 1.2rem 0;
}

.price-tag span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--wdt-muted-text);
}

.pricing-card.featured .price-tag span {
  color: rgba(255, 255, 255, 0.6);
}

.feature-list {
  margin: 1.8rem 0;
}

.feature-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(197, 194, 199, 0.3);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.pricing-card.featured .feature-list li {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #FFFFFF;
  border-radius: var(--wdt-radius);
  border: 1px solid rgba(197, 194, 199, 0.6);
  overflow: hidden;
}

.faq-question {
  padding: 1.2rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: var(--wdt-transition);
}

.faq-question:hover {
  color: var(--wdt-primary);
}

.faq-answer {
  padding: 0 1.5rem 1.2rem 1.5rem;
  color: var(--wdt-muted-text);
  display: none;
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: var(--wdt-primary);
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: var(--wdt-secondary);
  color: #FFFFFF;
  padding: 2.5rem;
  border-radius: 16px;
}

.contact-info-card h3 {
  color: #FFFFFF;
}

.info-item {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(192, 5, 62, 0.2);
  color: var(--wdt-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-form-card {
  background: #FFFFFF;
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(197, 194, 199, 0.6);
  box-shadow: var(--wdt-shadow-sm);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
  color: var(--wdt-secondary);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  background: #F8F9FA;
  border: 1px solid rgba(197, 194, 199, 0.8);
  border-radius: 8px;
  transition: var(--wdt-transition);
}

.form-control:focus {
  border-color: var(--wdt-primary);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(192, 5, 62, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

/* Blog Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: #FFFFFF;
  border-radius: var(--wdt-radius);
  overflow: hidden;
  border: 1px solid rgba(197, 194, 199, 0.5);
  box-shadow: var(--wdt-shadow-sm);
  transition: var(--wdt-transition);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--wdt-shadow-md);
}

.blog-thumb {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-content {
  padding: 1.5rem;
}

.blog-date {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--wdt-primary);
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

/* --------------------------------------------------------------------------
   7. Footer Section
   -------------------------------------------------------------------------- */
.footer-wrapper {
  background-color: var(--wdt-secondary);
  color: rgba(255, 255, 255, 0.8);
  padding: 4.5rem 0 2rem 0;
  border-top: 4px solid var(--wdt-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  margin-bottom: 3.5rem;
}

.footer-col h4 {
  color: #FFFFFF;
  font-size: 1.15rem;
  margin-bottom: 1.2rem;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--wdt-primary);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 1rem;
  margin-bottom: 1.2rem;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover {
  color: var(--wdt-primary);
  transform: translateX(4px);
}

.footer-subscribe p {
  font-size: 0.88rem;
  margin-bottom: 0.8rem;
}

.subscribe-form {
  display: flex;
  gap: 0.5rem;
}

.subscribe-form input {
  padding: 0.7rem 1rem;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
}

.subscribe-form button {
  padding: 0.7rem 1.2rem;
  border-radius: 30px;
  background: var(--wdt-primary);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--wdt-transition);
}

.subscribe-form button:hover {
  background: #FFFFFF;
  color: var(--wdt-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.social-links {
  display: flex;
  gap: 0.8rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--wdt-transition);
}

.social-links a:hover {
  background: var(--wdt-primary);
  transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   8. Comprehensive Responsive Media Queries
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .header-actions .btn-wdt {
    display: none; /* Hide button in header to prevent mobile header overflow */
  }

  .nav-menu {
    display: none;
    position: fixed;
    top: 85px;
    left: 0;
    width: 100%;
    height: calc(100vh - 85px);
    background-color: var(--wdt-secondary);
    padding: 2rem 1.5rem;
    overflow-y: auto;
    z-index: 1500;
  }

  .nav-menu.open {
    display: block !important;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link {
    color: #FFFFFF;
    font-size: 1.05rem;
    padding: 1rem 0;
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    padding: 0 0 1rem 1rem;
    display: none;
  }

  .nav-item:hover .dropdown-menu, .nav-item.open .dropdown-menu {
    display: block;
  }

  .mobile-nav-toggle {
    display: block;
  }

  .hero-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .header-container {
    height: 70px;
  }

  .logo-brand img {
    height: 36px;
  }

  .nav-menu {
    top: 70px;
    height: calc(100vh - 70px);
  }

  .hero-section {
    padding: 3rem 0 4rem 0;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
  }

  .hero-description {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn-wdt {
    width: 100%;
  }

  .hero-image-box img {
    height: 320px;
  }

  .section-padding {
    padding: 3.5rem 0;
  }

  .services-grid, .portfolio-grid, .team-grid, .pricing-grid, .blog-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-thumb {
    height: 280px;
  }

  .stats-box {
    padding: 2.5rem 1.5rem;
    margin: 2rem 0;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .subscribe-form {
    flex-direction: column;
  }

  .subscribe-form button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card, .contact-form-card {
    padding: 1.5rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }
}
