/* ============================================
   MANNINGS MEDIA - COMPLETE PROFESSIONAL STYLESHEET
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --mm-blue: #206a9c;
  --mm-blue-dark: #1a5a85;
  --mm-mid: #2781a6;
  --mm-teal: #44bbc5;
  --mm-teal-dark: #36a3ad;
  --mm-dark: #1b1b1b;
  --mm-darker: #151515;
  --mm-card: #222222;
  --mm-card-hover: #2a2a2a;
  --mm-text: #ffffff;
  --mm-text-muted: #999999;
  --mm-border: rgba(255, 255, 255, 0.08);
  --mm-gradient: linear-gradient(135deg, #206a9c 0%, #44bbc5 100%);
  --mm-gradient-hover: linear-gradient(135deg, #1a5a85 0%, #36a3ad 100%);
  --mm-radius: 16px;
  --mm-radius-sm: 10px;
  --mm-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  --mm-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================
   CSS RESET
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--mm-text);
  background-color: var(--mm-dark);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--mm-transition);
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--mm-text);
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
  color: var(--mm-text-muted);
  line-height: 1.8;
}

.gradient-text {
  background: var(--mm-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 100px 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: var(--mm-transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn i {
  transition: transform 0.3s ease;
}

.btn:hover i {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--mm-gradient);
  color: #fff;
}

.btn-primary:hover {
  background: var(--mm-gradient-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(32, 106, 156, 0.3);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--mm-dark);
  border-color: #fff;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 13px;
}

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(68, 187, 197, 0.1);
  border: 1px solid rgba(68, 187, 197, 0.2);
  border-radius: 50px;
  color: var(--mm-teal);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-header h2 {
  margin-bottom: 15px;
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 17px;
}

/* ============================================
   PRELOADER
   ============================================ */
.js-preloader {
  position: fixed;
  inset: 0;
  background: var(--mm-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.js-preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  margin-bottom: 30px;
  animation: preloaderPulse 1.5s ease-in-out infinite;
}

.preloader-logo img {
  width: 120px;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.6; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1); }
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
}

.preloader-progress {
  display: block;
  width: 0;
  height: 100%;
  background: var(--mm-gradient);
  border-radius: 3px;
  animation: preloaderProgress 1.5s ease-in-out forwards;
}

@keyframes preloaderProgress {
  0% { width: 0; }
  100% { width: 100%; }
}

/* ============================================
   HEADER
   ============================================ */
.header-area {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--mm-transition);
}

.header-area.header-sticky {
  top: 0;
  background: rgba(27, 27, 27, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid var(--mm-border);
}

.header-area.header-sticky .main-nav {
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
  border: none;
  box-shadow: none;
  padding: 0;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  height: 75px;
  background: rgba(34, 34, 34, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--mm-radius);
  border: 1px solid var(--mm-border);
  transition: var(--mm-transition);
}

.logo img {
  width: 150px;
  height: auto;
}

.main-nav .nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.main-nav .nav li a {
  display: block;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--mm-transition);
  background: transparent;  /* No background by default */
}

.main-nav .nav li a:hover {
  color: #fff;
  background: transparent;  /* No background on hover */
}

.main-nav .nav li a.active {
  color: #206a9c;  /* Your brand blue */
  font-weight: 500;
  background: transparent;  /* Remove the gradient background */
}

.nav-cta a {
  background: var(--mm-gradient) !important;
  color: #fff !important;
  font-weight: 500 !important;
  padding: 10px 22px !important;
}

.nav-cta a:hover {
  background: var(--mm-gradient-hover) !important;
  transform: translateY(-1px);
}

/* Mobile Menu Trigger */
.menu-trigger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.menu-trigger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--mm-transition);
}

.menu-trigger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-trigger.active span:nth-child(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(32, 106, 156, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(68, 187, 197, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(68, 187, 197, 0.1);
  border: 1px solid rgba(68, 187, 197, 0.2);
  border-radius: 50px;
  font-size: 13px;
  color: var(--mm-teal);
  margin-bottom: 25px;
}

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-description {
  font-size: 18px;
  color: var(--mm-text-muted);
  margin-bottom: 35px;
  max-width: 500px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.stat-label {
  font-size: 13px;
  color: var(--mm-text-muted);
  margin-top: 4px;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-image-wrapper {
  position: relative;
}

.hero-image {
  border-radius: var(--mm-radius);
  box-shadow: var(--mm-shadow);
}

.hero-float-card {
  position: absolute;
  background: rgba(34, 34, 34, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius-sm);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: floatCard 4s ease-in-out infinite;
}

.hero-float-card i {
  width: 32px;
  height: 32px;
  background: var(--mm-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}

.card-1 {
  top: 30px;
  right: -30px;
  animation-delay: 0s;
}

.card-2 {
  bottom: 40px;
  left: -20px;
  animation-delay: 2s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ============================================
   CLIENTS SECTION
   ============================================ */
.clients-section {
  padding: 40px 0;
  border-top: 1px solid var(--mm-border);
  border-bottom: 1px solid var(--mm-border);
}

.clients-label {
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 30px;
}

.client-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.client-logo-item {
  opacity: 0.5;
  transition: var(--mm-transition);
  filter: grayscale(100%) brightness(0) invert(0.5);
}

.client-logo-item:hover {
  opacity: 1;
  filter: grayscale(0%) brightness(1) invert(0);
}

.client-logo-item img {
  height: 35px;
  width: auto;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  background: var(--mm-darker);
}

.service-card {
  background: var(--mm-card);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  padding: 40px 30px;
  height: 100%;
  transition: var(--mm-transition);
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--mm-gradient);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(68, 187, 197, 0.3);
  box-shadow: var(--mm-shadow);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  background: var(--mm-gradient);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.service-icon-wrapper i {
  font-size: 24px;
  color: #fff;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  margin-bottom: 20px;
}

.service-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--mm-teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.service-link:hover {
  color: #fff;
}

.service-link:hover i {
  transform: translateX(4px);
}

/* ============================================
   FEATURED WORK
   ============================================ */
.featured-work {
  padding: 100px 0;
}

.project-card {
  background: var(--mm-card);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  overflow: hidden;
  transition: var(--mm-transition);
  margin-bottom: 30px;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--mm-shadow);
}

.project-image {
  position: relative;
  overflow: hidden;
}

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

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 27, 27, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--mm-transition);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-view {
  background: var(--mm-gradient);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.project-view:hover {
  color: #fff;
  background: var(--mm-gradient-hover);
}

.project-info {
  padding: 20px;
}

.project-category {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--mm-teal);
  display: block;
  margin-bottom: 8px;
}

.project-info h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.project-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--mm-text-muted);
}

.project-meta i {
  margin-right: 4px;
}

.project-meta i.fa-heart {
  color: #ff4757;
}

.project-meta i.fa-eye {
  color: var(--mm-teal);
}

/* ============================================
   ACTIVE PROJECTS
   ============================================ */
.active-projects {
  background: var(--mm-darker);
}

.project-track {
  background: var(--mm-card);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  overflow: hidden;
}

.project-track-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 25px;
  border-bottom: 1px solid var(--mm-border);
  transition: var(--mm-transition);
}

.project-track-item:last-child {
  border-bottom: none;
}

.project-track-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.track-client {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 200px;
}

.track-client img {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  object-fit: cover;
}

.track-client h4 {
  font-size: 15px;
  margin-bottom: 2px;
}

.track-client span {
  font-size: 13px;
  color: var(--mm-text-muted);
}

.track-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.track-value {
  font-size: 14px;
  font-weight: 500;
}

.track-deadline {
  min-width: 120px;
}

.track-progress {
  min-width: 150px;
}

.progress-bar-wrapper {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin: 6px 0;
}

.progress-bar {
  height: 100%;
  background: var(--mm-gradient);
  border-radius: 3px;
  transition: width 1s ease;
}

.track-status {
  min-width: 100px;
}

.status-pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
}

.status-active {
  background: rgba(68, 187, 197, 0.15);
  color: var(--mm-teal);
}

.status-review {
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
}

.status-planned {
  background: rgba(32, 106, 156, 0.15);
  color: var(--mm-blue);
}

.track-action {
  margin-left: auto;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 100px 0;
}

.testimonial-card {
  background: var(--mm-card);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  padding: 35px 30px;
  height: 100%;
  transition: var(--mm-transition);
  margin-bottom: 30px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--mm-shadow);
}

.testimonial-stars {
  margin-bottom: 20px;
}

.testimonial-stars i {
  color: #ffc107;
  font-size: 14px;
  margin-right: 2px;
}

.testimonial-card > p {
  font-size: 15px;
  font-style: italic;
  color: #ccc;
  margin-bottom: 25px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author h4 {
  font-size: 15px;
  margin-bottom: 2px;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--mm-text-muted);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 80px 0;
}

.cta-wrapper {
  background: var(--mm-gradient);
  border-radius: var(--mm-radius);
  padding: 70px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-wrapper::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -15%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 15px;
}

.cta-content h2 .gradient-text {
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  margin-bottom: 35px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: #fff;
  color: var(--mm-blue);
}

.cta-buttons .btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--mm-blue);
}

.cta-buttons .btn-outline-white {
  border-color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
  padding: 160px 0 60px;
  text-align: center;
  position: relative;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(32, 106, 156, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-header h1 {
  margin-bottom: 15px;
}

.page-header p {
  font-size: 18px;
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   FEATURED SHOWCASE
   ============================================ */
.featured-showcase {
  padding: 40px 0 80px;
}

.showcase-image {
  position: relative;
}

.showcase-image .main-image {
  border-radius: var(--mm-radius);
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.showcase-video {
  position: relative;
  border-radius: var(--mm-radius);
  overflow: hidden;
}

.showcase-video .video-thumbnail {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--mm-radius);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: var(--mm-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  transition: var(--mm-transition);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
  color: #fff;
}

.video-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(27, 27, 27, 0.8);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
}

/* ============================================
   SERVICE DETAIL
   ============================================ */
.service-detail {
  padding: 80px 0;
  background: var(--mm-darker);
}

.detail-card {
  background: var(--mm-card);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  padding: 40px;
}

.detail-info {
  margin-bottom: 30px;
}

.detail-header {
  margin-bottom: 20px;
}

.detail-header h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.detail-category {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(68, 187, 197, 0.1);
  border: 1px solid rgba(68, 187, 197, 0.2);
  border-radius: 50px;
  font-size: 12px;
  color: var(--mm-teal);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-stats {
  display: flex;
  gap: 20px;
}

.detail-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--mm-text-muted);
}

.detail-stat i {
  color: var(--mm-teal);
  font-size: 16px;
}

.detail-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--mm-radius-sm);
  border: 1px solid var(--mm-border);
  font-size: 14px;
  font-weight: 500;
  transition: var(--mm-transition);
}

.highlight-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(68, 187, 197, 0.3);
}

.highlight-item i {
  width: 36px;
  height: 36px;
  background: var(--mm-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}

.detail-gallery-image {
  border-radius: var(--mm-radius);
  margin-bottom: 30px;
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--mm-transition);
}

.detail-gallery-image:hover {
  transform: scale(1.02);
}

.detail-description {
  margin-bottom: 30px;
}

.detail-description p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.detail-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ============================================
   ALL SERVICES GRID
   ============================================ */
.all-services {
  padding: 80px 0;
}

.service-card-alt {
  background: var(--mm-card);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  overflow: hidden;
  transition: var(--mm-transition);
  margin-bottom: 30px;
  height: 100%;
}

.service-card-alt:hover {
  transform: translateY(-8px);
  box-shadow: var(--mm-shadow);
  border-color: rgba(68, 187, 197, 0.3);
}

.service-card-image {
  overflow: hidden;
}

.service-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card-alt:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-content {
  padding: 25px;
}

.service-card-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.service-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(68, 187, 197, 0.1);
  border-radius: 50px;
  font-size: 11px;
  color: var(--mm-teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.service-card-content p {
  font-size: 14px;
  margin-bottom: 15px;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
  padding: 80px 0;
  background: var(--mm-darker);
}

.process-step {
  text-align: center;
  padding: 30px;
  position: relative;
  margin-bottom: 30px;
}

.step-number {
  font-size: 3rem;
  font-weight: 800;
  background: var(--mm-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.process-step p {
  font-size: 14px;
  color: var(--mm-text-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--mm-darker);
  padding: 80px 0 0;
  border-top: 1px solid var(--mm-border);
}

.footer-brand {
  margin-bottom: 30px;
}

.footer-logo {
  width: 140px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  margin-bottom: 25px;
  max-width: 350px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  transition: var(--mm-transition);
}

.footer-social a:hover {
  background: var(--mm-gradient);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: var(--mm-text-muted);
  font-size: 14px;
  transition: var(--mm-transition);
}

.footer-links ul li a:hover {
  color: var(--mm-teal);
  padding-left: 4px;
}

.footer-contact ul li {
  color: var(--mm-text-muted);
  font-size: 14px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact ul li i {
  color: var(--mm-teal);
  margin-top: 4px;
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-top: 1px solid var(--mm-border);
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  font-size: 14px;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  color: var(--mm-text-muted);
  font-size: 14px;
}

.footer-bottom-links a:hover {
  color: var(--mm-teal);
}

/* ============================================
   CUSTOM SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--mm-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--mm-gradient);
  border-radius: 3px;
}

/* ============================================
   SELECTION
   ============================================ */
::selection {
  background: rgba(68, 187, 197, 0.3);
  color: #fff;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .main-nav .nav li a {
    padding: 8px 14px;
    font-size: 13px;
  }
  
  .hero-stats {
    gap: 25px;
  }
}

@media (max-width: 992px) {
  section {
    padding: 70px 0;
  }
  
  .hero-section {
    padding: 140px 0 70px;
  }
  
  .menu-trigger {
    display: flex;
  }
  
  .main-nav .nav {
    position: absolute;
    top: 85px;
    left: 0;
    right: 0;
    background: rgba(34, 34, 34, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid var(--mm-border);
    border-radius: var(--mm-radius);
    flex-direction: column;
    padding: 20px;
    gap: 5px;
    display: none;
  }
  
  .main-nav .nav.active {
    display: flex;
  }
  
  .main-nav .nav li {
    width: 100%;
  }
  
  .main-nav .nav li a {
    display: block;
    padding: 12px 20px;
    text-align: center;
  }
  
  .hero-visual {
    margin-top: 50px;
  }
  
  .hero-float-card {
    display: none;
  }
  
  .client-logos {
    gap: 30px;
  }
  
  .client-logo-item img {
    height: 25px;
  }
  
  .project-track-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .track-action {
    margin-left: 0;
    width: 100%;
  }
  
  .track-action .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  
  .cta-wrapper {
    padding: 50px 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .showcase-image .main-image,
  .showcase-video .video-thumbnail {
    height: 250px;
  }
  
  .showcase-image {
    margin-bottom: 30px;
  }
  
  .detail-highlights {
    margin-top: 30px;
  }
  
  .detail-gallery-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
  
  .footer-bottom-links {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .detail-card {
    padding: 25px;
  }
  
  .detail-highlights {
    grid-template-columns: 1fr;
  }
  
  .detail-cta {
    flex-direction: column;
  }
  
  .detail-cta .btn {
    width: 100%;
    justify-content: center;
  }
  
  .showcase-image .main-image,
  .showcase-video .video-thumbnail {
    height: 200px;
  }
  
  .detail-gallery-image {
    height: 150px;
  }
}

@media (max-width: 576px) {
  .main-nav {
    padding: 0 15px;
  }
  
  .logo img {
    width: 120px;
  }
  
  .hero-section {
    padding: 120px 0 50px;
  }
  
  .service-card {
    padding: 30px 20px;
  }
  
  .testimonial-card {
    padding: 25px 20px;
  }
  
  .page-header {
    padding: 140px 0 40px;
  }
}

/* ============================================
   PORTFOLIO FILTER
   ============================================ */
.portfolio-filter-section {
  padding: 0 0 40px;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 22px;
  background: var(--mm-card);
  border: 1px solid var(--mm-border);
  border-radius: 50px;
  color: var(--mm-text-muted);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--mm-transition);
}

.filter-btn:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.filter-btn.active {
  background: var(--mm-gradient);
  color: #fff;
  border-color: transparent;
}

/* ============================================
   FEATURED CAROUSEL
   ============================================ */
.featured-carousel {
  padding: 80px 0;
}

.text-left {
  text-align: left;
}

.text-left .section-badge {
  margin-left: 0;
}

.featured-item {
  background: var(--mm-card);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  overflow: hidden;
  transition: var(--mm-transition);
}

.featured-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--mm-shadow);
}

.featured-thumb {
  position: relative;
  overflow: hidden;
}

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

.featured-item:hover .featured-thumb img {
  transform: scale(1.05);
}

.featured-overlay {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: rgba(27, 27, 27, 0.85);
  backdrop-filter: blur(10px);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
}

.featured-info {
  padding: 20px;
}

.featured-info h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.featured-category {
  font-size: 12px;
  color: var(--mm-teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.featured-meta {
  display: flex;
  gap: 15px;
  font-size: 13px;
  color: var(--mm-text-muted);
}

.featured-meta i.fa-heart {
  color: #ff4757;
}

.featured-meta i.fa-eye {
  color: var(--mm-teal);
}

/* Owl Carousel Custom Nav */
.owl-nav {
  position: absolute;
  top: -60px;
  right: 0;
  display: flex;
  gap: 8px;
}

.owl-nav button {
  width: 40px;
  height: 40px;
  background: var(--mm-card) !important;
  border: 1px solid var(--mm-border) !important;
  border-radius: 50% !important;
  color: #fff !important;
  font-size: 16px !important;
  transition: var(--mm-transition);
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.owl-nav button:hover {
  background: var(--mm-gradient) !important;
  border-color: transparent !important;
}

/* ============================================
   TOP PROJECTS LIST
   ============================================ */
.top-projects-list {
  background: var(--mm-card);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  padding: 15px;
}

.top-project-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-bottom: 1px solid var(--mm-border);
  transition: var(--mm-transition);
}

.top-project-item:last-child {
  border-bottom: none;
}

.top-project-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.top-project-img {
  width: 60px;
  height: 60px;
  border-radius: var(--mm-radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.top-project-info {
  flex: 1;
}

.top-project-info h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.top-project-tag {
  font-size: 11px;
  color: var(--mm-teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 4px;
}

.top-project-stats {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--mm-text-muted);
}

.top-project-stats i.fa-star {
  color: #ffc107;
}

.top-project-stats i.fa-eye {
  color: var(--mm-teal);
}

.top-project-link {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mm-text-muted);
  font-size: 13px;
  flex-shrink: 0;
  transition: var(--mm-transition);
}

.top-project-link:hover {
  background: var(--mm-gradient);
  color: #fff;
}

/* ============================================
   HOW WE WORK
   ============================================ */
.how-we-work {
  padding: 80px 0;
  background: var(--mm-darker);
}

.work-step-card {
  background: var(--mm-card);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  padding: 35px 30px;
  text-align: center;
  height: 100%;
  transition: var(--mm-transition);
  margin-bottom: 30px;
}

.work-step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--mm-shadow);
  border-color: rgba(68, 187, 197, 0.3);
}

.work-step-icon {
  margin-bottom: 20px;
}

.work-step-icon img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.work-step-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.work-step-card p {
  font-size: 14px;
  margin-bottom: 15px;
}

/* ============================================
   PORTFOLIO GRID
   ============================================ */
.portfolio-grid {
  padding: 80px 0;
}

.portfolio-card {
  background: var(--mm-card);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  overflow: hidden;
  transition: all 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  margin-bottom: 30px;
}

.portfolio-thumb {
  position: relative;
  overflow: hidden;
}

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

.portfolio-card:hover .portfolio-thumb img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 27, 27, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: var(--mm-transition);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-badge {
  padding: 5px 14px;
  background: var(--mm-gradient);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
}

.portfolio-actions {
  display: flex;
  gap: 10px;
}

.portfolio-view,
.portfolio-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  transition: var(--mm-transition);
}

.portfolio-view {
  width: auto;
  padding: 0 16px;
  border-radius: 50px;
  gap: 6px;
}

.portfolio-view:hover,
.portfolio-link:hover {
  background: var(--mm-gradient);
  color: #fff;
}

.portfolio-info {
  padding: 20px;
}

.portfolio-avatar {
  float: left;
  margin-right: 10px;
}

.portfolio-avatar img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.portfolio-client {
  font-size: 13px;
  color: var(--mm-teal);
}

.portfolio-client i {
  color: var(--mm-teal);
  margin-right: 4px;
  font-size: 11px;
}

.portfolio-info h4 {
  font-size: 15px;
  margin-top: 8px;
  clear: both;
}

/* ============================================
   RESPONSIVE ADDITIONS
   ============================================ */
@media (max-width: 992px) {
  .featured-thumb img {
    height: 180px;
  }
  
  .portfolio-thumb img {
    height: 180px;
  }
  
  .filter-buttons {
    gap: 8px;
  }
  
  .filter-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .owl-nav {
    top: -50px;
  }
}

@media (max-width: 768px) {
  .featured-thumb img {
    height: 200px;
  }
  
  .portfolio-thumb img {
    height: 200px;
  }
  
  .filter-buttons {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
  }
  
  .filter-btn {
    flex-shrink: 0;
  }
}

/* ============================================
   TEAM LIST
   ============================================ */
.team-list {
  background: var(--mm-card);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  padding: 10px;
}

.team-member {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  border-bottom: 1px solid var(--mm-border);
  transition: var(--mm-transition);
}

.team-member:last-child {
  border-bottom: none;
}

.team-member:hover {
  background: rgba(255, 255, 255, 0.02);
}

.team-rank {
  font-size: 14px;
  font-weight: 700;
  color: var(--mm-teal);
  min-width: 24px;
}

.team-member img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.team-info {
  flex: 1;
}

.team-info h4 {
  font-size: 14px;
  margin-bottom: 2px;
}

.team-info span {
  font-size: 12px;
  color: var(--mm-text-muted);
}

.team-link {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mm-text-muted);
  font-size: 12px;
  flex-shrink: 0;
  transition: var(--mm-transition);
}

.team-link:hover {
  background: var(--mm-gradient);
  color: #fff;
}

/* ============================================
   ACTIVE PROJECTS GRID (Live Projects)
   ============================================ */
.active-projects-grid {
  padding: 80px 0;
  background: var(--mm-darker);
}

.project-live-card {
  background: var(--mm-card);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  overflow: hidden;
  transition: var(--mm-transition);
  margin-bottom: 30px;
}

.project-live-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--mm-shadow);
}

.project-live-thumb {
  position: relative;
  overflow: hidden;
}

.project-live-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-live-card:hover .project-live-thumb img {
  transform: scale(1.05);
}

.project-live-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 27, 27, 0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  transition: var(--mm-transition);
}

.project-live-card:hover .project-live-overlay {
  opacity: 1;
}

.live-badge {
  padding: 5px 14px;
  background: var(--mm-gradient);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
}

.project-live-stats {
  display: flex;
  gap: 12px;
  font-size: 12px;
}

.project-live-stats span {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 50px;
}

.project-live-info {
  padding: 20px;
}

.project-live-avatar {
  float: left;
  margin-right: 10px;
}

.project-live-avatar img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.project-live-client {
  font-size: 13px;
  color: var(--mm-teal);
}

.project-live-client i {
  color: var(--mm-teal);
  margin-right: 4px;
  font-size: 11px;
}

.project-live-info h4 {
  font-size: 15px;
  margin-top: 8px;
  margin-bottom: 12px;
  clear: both;
}

.project-live-progress {
  display: flex;
  align-items: center;
  gap: 10px;
}

.project-live-progress .progress-bar-wrapper {
  flex: 1;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
  margin: 0;
}

.project-live-progress .progress-bar {
  height: 100%;
  background: var(--mm-gradient);
  border-radius: 3px;
}

.project-live-progress span {
  font-size: 12px;
  color: var(--mm-text-muted);
  min-width: 35px;
}

/* ============================================
   RESPONSIVE ADDITIONS
   ============================================ */
@media (max-width: 992px) {
  .project-live-thumb img {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .project-live-thumb img {
    height: 200px;
  }
}

/* ============================================
   ABOUT INTRO
   ============================================ */
.about-intro {
  padding: 80px 0;
}

.about-image-wrapper {
  position: relative;
}

.about-main-image {
  border-radius: var(--mm-radius);
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-experience-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--mm-gradient);
  padding: 20px 30px;
  border-radius: var(--mm-radius);
  text-align: center;
  box-shadow: var(--mm-shadow);
}

.exp-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.exp-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

.about-content {
  padding-left: 20px;
}

.about-lead {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-content p {
  margin-bottom: 15px;
  font-size: 15px;
}

.about-stats-row {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.about-stat {
  text-align: center;
}

.about-stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  background: var(--mm-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-stat-label {
  font-size: 12px;
  color: var(--mm-text-muted);
}

/* ============================================
   MISSION & VALUES
   ============================================ */
.mission-values {
  padding: 80px 0;
  background: var(--mm-darker);
}

.value-card {
  background: var(--mm-card);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  padding: 35px 30px;
  text-align: center;
  height: 100%;
  transition: var(--mm-transition);
  margin-bottom: 30px;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--mm-shadow);
  border-color: rgba(68, 187, 197, 0.3);
}

.value-icon {
  width: 65px;
  height: 65px;
  background: var(--mm-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon i {
  font-size: 26px;
  color: #fff;
}

.value-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 14px;
  color: var(--mm-text-muted);
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team-section {
  padding: 80px 0;
}

.team-card {
  background: var(--mm-card);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  overflow: hidden;
  transition: var(--mm-transition);
  margin-bottom: 30px;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--mm-shadow);
}

.team-image {
  position: relative;
  overflow: hidden;
}

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

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-social-overlay {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  background: linear-gradient(transparent, rgba(27, 27, 27, 0.9));
  transition: var(--mm-transition);
}

.team-card:hover .team-social-overlay {
  bottom: 0;
}

.team-social-overlay a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: var(--mm-transition);
}

.team-social-overlay a:hover {
  background: var(--mm-gradient);
  transform: translateY(-3px);
}

.team-card-info {
  padding: 20px;
  text-align: center;
}

.team-card-info h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

.team-card-info span {
  display: block;
  font-size: 13px;
  color: var(--mm-teal);
  margin-bottom: 10px;
}

.team-card-info p {
  font-size: 13px;
  color: var(--mm-text-muted);
  line-height: 1.6;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline-section {
  padding: 80px 0;
  background: var(--mm-darker);
}

.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--mm-gradient);
  opacity: 0.3;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--mm-gradient);
  border-radius: 50%;
  z-index: 1;
  box-shadow: 0 0 20px rgba(68, 187, 197, 0.4);
}

.timeline-content {
  width: 45%;
  background: var(--mm-card);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  padding: 25px;
  transition: var(--mm-transition);
}

.timeline-content:hover {
  transform: translateY(-3px);
  box-shadow: var(--mm-shadow);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
}

.timeline-year {
  display: inline-block;
  padding: 4px 14px;
  background: var(--mm-gradient);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

.timeline-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--mm-text-muted);
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  padding: 80px 0;
}

.contact-info-card {
  background: var(--mm-card);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  padding: 30px;
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--mm-border);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--mm-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 20px;
  color: #fff;
}

.contact-info-item h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-info-item p {
  font-size: 14px;
  color: var(--mm-text-muted);
  line-height: 1.6;
}

.contact-form-card {
  background: var(--mm-card);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  padding: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mm-text-muted);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius-sm);
  color: #fff;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  transition: var(--mm-transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--mm-teal);
  background: rgba(255, 255, 255, 0.06);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

select.form-control option {
  background: var(--mm-card);
  color: #fff;
}

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

.btn-block {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
  padding: 0 0 80px;
}

.map-wrapper {
  border-radius: var(--mm-radius);
  overflow: hidden;
  border: 1px solid var(--mm-border);
}

.map-placeholder {
  height: 350px;
  background: var(--mm-card);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--mm-text-muted);
}

.map-placeholder i {
  font-size: 48px;
  opacity: 0.3;
}

.map-placeholder p {
  font-size: 14px;
}

/* ============================================
   RESPONSIVE ADDITIONS
   ============================================ */
@media (max-width: 992px) {
  .about-main-image {
    height: 350px;
  }
  
  .about-experience-badge {
    right: 10px;
    bottom: 20px;
    padding: 15px 20px;
  }
  
  .about-content {
    padding-left: 0;
    margin-top: 40px;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item,
  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    flex-direction: row;
  }
  
  .timeline-dot {
    left: 20px;
  }
  
  .timeline-content {
    width: calc(100% - 50px);
    margin-left: 50px !important;
  }
  
  .team-image img {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .about-main-image {
    height: 280px;
  }
  
  .about-stats-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .about-experience-badge {
    position: static;
    margin-top: 20px;
    text-align: center;
  }
  
  .team-image img {
    height: 280px;
  }
  
  .map-placeholder {
    height: 250px;
  }
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 80px 0;
  background: var(--mm-darker);
}

.process-card {
  text-align: center;
  padding: 30px 20px;
  position: relative;
  margin-bottom: 30px;
}

.process-number {
  font-size: 4rem;
  font-weight: 800;
  background: var(--mm-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
}

.process-icon {
  width: 70px;
  height: 70px;
  background: var(--mm-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.process-icon i {
  font-size: 28px;
  color: #fff;
}

.process-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 14px;
  color: var(--mm-text-muted);
}

/* ============================================
   ENQUIRY SECTION
   ============================================ */
.enquiry-section {
  padding: 80px 0;
}

.enquiry-info {
  padding-right: 20px;
}

.enquiry-info h2 {
  margin: 15px 0;
}

.enquiry-info > p {
  font-size: 16px;
  margin-bottom: 30px;
}

.enquiry-contact-details {
  margin-bottom: 30px;
}

.enquiry-contact-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--mm-border);
}

.enquiry-contact-item:last-child {
  border-bottom: none;
}

.enquiry-contact-item i {
  width: 40px;
  height: 40px;
  background: rgba(68, 187, 197, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mm-teal);
  font-size: 16px;
  flex-shrink: 0;
}

.enquiry-contact-item h4 {
  font-size: 15px;
  margin-bottom: 2px;
}

.enquiry-contact-item p {
  font-size: 13px;
  color: var(--mm-text-muted);
}

.enquiry-social h4 {
  font-size: 15px;
  margin-bottom: 12px;
}

.enquiry-social-links {
  display: flex;
  gap: 10px;
}

.enquiry-social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: var(--mm-transition);
}

.enquiry-social-links a:hover {
  background: var(--mm-gradient);
  transform: translateY(-3px);
}

.enquiry-form-wrapper {
  background: var(--mm-card);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  padding: 40px;
}

.enquiry-form-wrapper h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.enquiry-form-wrapper > p {
  font-size: 14px;
  color: var(--mm-text-muted);
  margin-bottom: 25px;
}

.enquiry-form .form-group {
  margin-bottom: 18px;
}

.enquiry-form .form-group label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mm-text-muted);
}

.enquiry-form .form-control {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius-sm);
  color: #fff;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  transition: var(--mm-transition);
}

.enquiry-form .form-control:focus {
  outline: none;
  border-color: var(--mm-teal);
  background: rgba(255, 255, 255, 0.05);
}

.enquiry-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.enquiry-form select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.enquiry-form select.form-control option {
  background: var(--mm-card);
  color: #fff;
}

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

.file-upload-wrapper {
  position: relative;
}

.file-upload-input {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 30px;
  border: 2px dashed var(--mm-border);
  border-radius: var(--mm-radius-sm);
  text-align: center;
  cursor: pointer;
  transition: var(--mm-transition);
}

.file-upload-label:hover {
  border-color: var(--mm-teal);
  background: rgba(68, 187, 197, 0.05);
}

.file-upload-label i {
  font-size: 28px;
  color: var(--mm-teal);
}

.file-upload-label span {
  font-size: 14px;
  color: #fff;
}

.file-upload-label small {
  font-size: 12px;
  color: var(--mm-text-muted);
}

.form-note {
  text-align: center;
  font-size: 12px !important;
  margin-top: 12px !important;
}

.form-note a {
  color: var(--mm-teal);
  text-decoration: underline !important;
}

.form-note a:hover {
  color: #fff;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 80px 0;
  background: var(--mm-darker);
}

.faq-item {
  background: var(--mm-card);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  padding: 25px;
  margin-bottom: 20px;
  transition: var(--mm-transition);
}

.faq-item:hover {
  border-color: rgba(68, 187, 197, 0.3);
}

.faq-item h4 {
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-item h4 i {
  color: var(--mm-teal);
  font-size: 18px;
}

.faq-item p {
  font-size: 14px;
  color: var(--mm-text-muted);
  padding-left: 28px;
}

/* ============================================
   RESPONSIVE ADDITIONS
   ============================================ */
@media (max-width: 992px) {
  .enquiry-info {
    padding-right: 0;
    margin-bottom: 40px;
  }
  
  .enquiry-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .enquiry-form-wrapper {
    padding: 20px;
  }
  
  .process-card {
    padding: 20px 15px;
  }
}

/* ============================================
   LOGIN SECTION
   ============================================ */
.login-section {
  padding: 80px 0;
}

.login-card {
  background: var(--mm-card);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  padding: 50px 40px;
  text-align: center;
}

.login-header i {
  font-size: 48px;
  color: var(--mm-teal);
  margin-bottom: 20px;
}

.login-header h2 {
  margin-bottom: 10px;
}

.login-header p {
  font-size: 14px;
  margin-bottom: 30px;
}

.login-form {
  text-align: left;
}

.login-form .form-group {
  margin-bottom: 20px;
}

.login-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mm-text-muted);
}

.input-icon-wrapper {
  position: relative;
}

.input-icon-wrapper i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.3);
  font-size: 14px;
}

.input-icon-wrapper .form-control {
  padding-left: 40px;
}

.login-form .form-control {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius-sm);
  color: #fff;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  transition: var(--mm-transition);
}

.login-form .form-control:focus {
  outline: none;
  border-color: var(--mm-teal);
  background: rgba(255, 255, 255, 0.05);
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.remember-me {
  font-size: 13px;
  color: var(--mm-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.remember-me input[type="checkbox"] {
  accent-color: var(--mm-teal);
}

.forgot-password {
  font-size: 13px;
  color: var(--mm-teal);
}

.forgot-password:hover {
  color: #fff;
}

.login-footer {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid var(--mm-border);
}

.login-footer p {
  font-size: 14px;
}

.login-footer a {
  color: var(--mm-teal);
  font-weight: 500;
}

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

/* ============================================
   CLIENT DASHBOARD
   ============================================ */
.client-dashboard {
  padding: 80px 0;
}

.dashboard-welcome {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--mm-card);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  padding: 25px 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.dashboard-welcome-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.dashboard-welcome-left h2 {
  font-size: 20px;
  margin-bottom: 4px;
}

.dashboard-welcome-left p {
  font-size: 14px;
  color: var(--mm-text-muted);
}

.dashboard-welcome-right {
  display: flex;
  gap: 10px;
}

.dashboard-stat-card {
  background: var(--mm-card);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  transition: var(--mm-transition);
}

.dashboard-stat-card:hover {
  border-color: rgba(68, 187, 197, 0.3);
  transform: translateY(-3px);
}

.dash-stat-icon {
  width: 50px;
  height: 50px;
  background: var(--mm-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-stat-icon i {
  font-size: 20px;
  color: #fff;
}

.dash-stat-number {
  display: block;
  font-size: 22px;
  font-weight: 700;
}

.stat-percent {
  font-size: 14px;
  color: var(--mm-text-muted);
}

.dash-stat-label {
  font-size: 12px;
  color: var(--mm-text-muted);
}

.dashboard-card {
  background: var(--mm-card);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  padding: 25px;
  margin-bottom: 30px;
}

.dashboard-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.dashboard-card-header h3 {
  font-size: 17px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dashboard-card-header h3 i {
  color: var(--mm-teal);
}

.view-all {
  font-size: 13px;
  color: var(--mm-teal);
  display: flex;
  align-items: center;
  gap: 4px;
}

.view-all:hover {
  color: #fff;
}

.unread-badge {
  background: var(--mm-gradient);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 500;
}

/* Dashboard Project List */
.dash-project-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--mm-border);
}

.dash-project-item:last-child {
  border-bottom: none;
}

.dash-project-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dash-project-icon i {
  font-size: 16px;
  color: #fff;
}

.dash-project-info {
  flex: 1;
}

.dash-project-info h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.dash-project-info span {
  font-size: 12px;
  color: var(--mm-text-muted);
  display: block;
  margin-bottom: 6px;
}

.dash-progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  width: 120px;
}

.dash-progress-fill {
  height: 100%;
  background: var(--mm-gradient);
  border-radius: 2px;
}

.dash-project-status {
  min-width: 90px;
  text-align: center;
}

.dash-project-action .btn {
  padding: 6px 16px;
  font-size: 12px;
}

/* Files Table */
.files-table-wrapper {
  overflow-x: auto;
}

.files-table {
  width: 100%;
  border-collapse: collapse;
}

.files-table th {
  text-align: left;
  padding: 10px 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid var(--mm-border);
}

.files-table td {
  padding: 12px;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.file-name {
  display: flex;
  align-items: center;
  gap: 8px;
}

.file-icon-img { color: #ff6b6b; }
.file-icon-video { color: #ffa502; }
.file-icon-pdf { color: #ff4757; }
.file-icon-zip { color: #7bed9f; }

.download-link {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mm-text-muted);
  font-size: 13px;
  transition: var(--mm-transition);
}

.download-link:hover {
  background: var(--mm-gradient);
  color: #fff;
}

/* Messages */
.messages-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.message-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: var(--mm-radius-sm);
  transition: var(--mm-transition);
  cursor: pointer;
}

.message-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.message-item.unread {
  background: rgba(68, 187, 197, 0.05);
  border-left: 2px solid var(--mm-teal);
}

.message-item img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.message-content h4 {
  font-size: 14px;
  margin-bottom: 2px;
}

.message-content p {
  font-size: 12px;
  color: var(--mm-text-muted);
  margin-bottom: 4px;
}

.message-content span {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
}

/* Deadlines */
.deadlines-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.deadline-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.deadline-date {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.deadline-day {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.deadline-month {
  font-size: 10px;
  text-transform: uppercase;
  color: var(--mm-text-muted);
}

.deadline-info {
  flex: 1;
}

.deadline-info h4 {
  font-size: 13px;
  margin-bottom: 2px;
}

.deadline-info span {
  font-size: 12px;
  color: var(--mm-text-muted);
}

.deadline-badge {
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 500;
}

.deadline-badge.urgent {
  background: rgba(255, 71, 87, 0.15);
  color: #ff4757;
}

.deadline-badge.upcoming {
  background: rgba(255, 165, 2, 0.15);
  color: #ffa502;
}

.deadline-badge.normal {
  background: rgba(68, 187, 197, 0.15);
  color: var(--mm-teal);
}

/* ============================================
   RESPONSIVE ADDITIONS
   ============================================ */
@media (max-width: 992px) {
  .dash-project-item {
    flex-wrap: wrap;
  }
  
  .dash-project-action {
    width: 100%;
  }
  
  .dash-project-action .btn {
    width: 100%;
    justify-content: center;
  }
  
  .files-table th:nth-child(3),
  .files-table td:nth-child(3),
  .files-table th:nth-child(4),
  .files-table td:nth-child(4) {
    display: none;
  }
}

@media (max-width: 768px) {
  .login-card {
    padding: 30px 20px;
  }
  
  .dashboard-welcome {
    flex-direction: column;
    text-align: center;
  }
  
  .dashboard-welcome-left {
    flex-direction: column;
  }
  
  .dashboard-stat-card {
    margin-bottom: 15px;
  }
}

/* Account Icon in Nav */
.nav-account a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 40px !important;
  height: 40px !important;
  padding: 0 !important;
  font-size: 22px !important;
  border-radius: 50% !important;
  transition: var(--mm-transition);
}

.nav-account a i {
  font-size: 22px;
}

.nav-account a:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.nav-account a.active {
  color: #206a9c !important;
  background: transparent !important;
}

/* ============================================
   WEDDING TEMPLATE
   ============================================ */
.wedding-hero {
  position: relative;
  height: 90vh;
  min-height: 500px;
  overflow: hidden;
}

.wedding-hero-image {
  position: relative;
  height: 100%;
}

.wedding-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wedding-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 27, 27, 0.9) 0%, rgba(27, 27, 27, 0.3) 50%, rgba(27, 27, 27, 0.2) 100%);
}

.wedding-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 80px 40px 60px;
  text-align: center;
}

.wedding-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 13px;
  margin-bottom: 20px;
}

.wedding-badge i {
  color: #ff6b81;
  margin-right: 6px;
}

.wedding-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.wedding-hero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 25px;
}

.wedding-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.wedding-meta i {
  margin-right: 6px;
  color: #ff6b81;
}

.wedding-gallery {
  padding: 80px 0;
}

.gallery-intro {
  margin-bottom: 50px;
}

.wedding-photo-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.wedding-photo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.wedding-photo-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.wedding-photo-card:hover img {
  transform: scale(1.05);
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.photo-overlay i {
  font-size: 30px;
  color: #ff6b81;
  transform: scale(0);
  transition: transform 0.4s ease;
}

.wedding-photo-card:hover .photo-overlay {
  opacity: 1;
}

.wedding-photo-card:hover .photo-overlay i {
  transform: scale(1);
}

/* ============================================
   DELIVERABLES TEMPLATE
   ============================================ */
.deliverables-hero {
  padding: 160px 0 60px;
  text-align: center;
}

.deliverable-meta {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 20px;
  font-size: 14px;
  color: var(--mm-text-muted);
}

.deliverable-meta i {
  color: var(--mm-teal);
  margin-right: 6px;
}

.deliverables-files {
  padding: 60px 0 80px;
}

.files-card {
  background: var(--mm-card);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  padding: 30px;
}

.files-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 15px;
}

.files-header h3 {
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.file-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  border-bottom: 1px solid var(--mm-border);
  transition: var(--mm-transition);
}

.file-item:last-child {
  border-bottom: none;
}

.file-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.file-icon {
  width: 45px;
  height: 45px;
  background: rgba(68, 187, 197, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--mm-teal);
  flex-shrink: 0;
}

.file-info {
  flex: 1;
}

.file-info h4 {
  font-size: 15px;
  margin-bottom: 3px;
}

.file-info span {
  font-size: 12px;
  color: var(--mm-text-muted);
}

/* ============================================
   LOGIN SECTION ENHANCEMENTS
   ============================================ */
.login-icon-wrapper {
  width: 70px;
  height: 70px;
  background: var(--mm-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.login-icon-wrapper i {
  font-size: 30px;
  color: #fff;
}

.form-hint {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 5px;
}

.login-error {
  background: rgba(255, 71, 87, 0.1);
  border: 1px solid rgba(255, 71, 87, 0.3);
  border-radius: var(--mm-radius-sm);
  padding: 12px 16px;
  margin-bottom: 20px;
  color: #ff4757;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: shakeError 0.4s ease;
}

@keyframes shakeError {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

.login-help {
  margin-top: 8px;
  font-size: 13px;
}

.login-help a {
  color: var(--mm-text-muted);
  text-decoration: underline !important;
}

.login-help a:hover {
  color: #fff;
}

.btn-block {
  position: relative;
}

.btn-success {
  color: #4cd137 !important;
}

/* ============================================
   PORTAL INFO SECTION
   ============================================ */
.portal-info-section {
  padding: 80px 0;
  background: var(--mm-darker);
}

.portal-info-card {
  background: var(--mm-card);
  border: 1px solid var(--mm-border);
  border-radius: var(--mm-radius);
  padding: 40px 30px;
  text-align: center;
  position: relative;
  height: 100%;
  transition: var(--mm-transition);
  margin-bottom: 30px;
}

.portal-info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--mm-shadow);
  border-color: rgba(68, 187, 197, 0.3);
}

.portal-step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 3rem;
  font-weight: 800;
  background: var(--mm-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.1;
  line-height: 1;
}

.portal-info-icon {
  width: 65px;
  height: 65px;
  background: var(--mm-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.portal-info-icon i {
  font-size: 26px;
  color: #fff;
}

.portal-info-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.portal-info-card p {
  font-size: 14px;
  color: var(--mm-text-muted);
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}