/* V3 Static Design */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-plus-jakarta-sans), 'Plus Jakarta Sans', sans-serif;
  line-height: 1.6;
  color: #333;
  background: white;
}

.v3-container {
  min-height: 100vh;
}

/* V3 Header */
.v3-header {
  background: white;
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.v3-header-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.v3-header-logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

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

.v3-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 1.5rem;
}

.v3-nav-main {
  display: flex;
  justify-content: center;
  flex: 1;
}

.v3-nav-cta {
  display: flex;
  justify-content: flex-end;
}

.v3-nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.v3-nav-item {
  position: relative;
}

.v3-nav-has-dropdown {
  position: relative;
}

.v3-nav-has-dropdown:hover .v3-nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.v3-nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.v3-nav-link:hover {
  color: #FE8E40;
}

.v3-nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.v3-dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.v3-nav-has-dropdown:hover .v3-dropdown-arrow {
  transform: rotate(180deg);
}

.v3-nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  min-width: 150px;
  margin-top: 0.5rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.v3-nav-dropdown-item {
  padding: 0.7rem 1.2rem;
  color: #333;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.v3-nav-dropdown-item:hover {
  background-color: #f8f9fa;
  color: #FE8E40;
}

.v3-cta-button {
  background: #FE8E40;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
}

.v3-cta-button:hover {
  background: #e55a1a;
}

/* Mobile Hamburger Menu */
.v3-mobile-menu-button {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  z-index: 1001;
}

.v3-hamburger {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.v3-hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #333;
  border-radius: 1px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.v3-hamburger-open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.v3-hamburger-open span:nth-child(2) {
  opacity: 0;
}

.v3-hamburger-open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation */
.v3-nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  height: 100vh;
  width: 280px;
  background: white;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1000;
  padding-top: 80px;
}

.v3-nav-mobile-open {
  right: 0;
}

.v3-nav-links-mobile {
  list-style: none;
  padding: 0;
  margin: 0;
}

.v3-nav-links-mobile li {
  border-bottom: 1px solid #f0f0f0;
}

.v3-nav-link-mobile {
  display: block;
  padding: 1rem 2rem;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: background-color 0.2s ease;
}

.v3-nav-link-mobile:hover {
  background: #f8f9fa;
  color: #FE8E40;
}

.v3-nav-dropdown-trigger-mobile {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1rem 2rem;
  color: #333;
  font-weight: 500;
  font-size: 1rem;
  transition: background-color 0.2s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.v3-nav-dropdown-trigger-mobile:hover, 
.v3-nav-dropdown-trigger-mobile.v3-nav-active {
  background: #f8f9fa;
  color: #FE8E40;
}

.v3-nav-dropdown-mobile {
  background: #f8f9fa;
  display: flex;
  flex-direction: column;
}

.v3-nav-dropdown-item-mobile {
  padding: 0.8rem 3rem;
  color: #333;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  display: block;
}

.v3-nav-dropdown-item-mobile:hover {
  background: #f0f0f0;
  color: #FE8E40;
}

.v3-cta-button-mobile {
  display: block;
  margin: 2rem;
  background: #FE8E40;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.2s ease;
}

.v3-cta-button-mobile:hover {
  background: #e55a1a;
}

.v3-mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* V3 Hero Section */
.v3-hero {
  background: white;
  padding: 4rem 0;
}

.v3-hero-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.v3-hero-centered {
  display: flex;
  justify-content: center;
  align-items: center;
}

.v3-hero-content-centered {
  text-align: center;
  max-width: 800px;
}

.v3-hero-content h1 {
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #333;
}

.v3-hero-content p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  line-height: 1.6;
}

/* Review Stats */
.v3-review-stats-container {
  margin-top: 4rem;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.v3-review-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
  max-width: 600px;
  position: relative;
  perspective: 1000px;
}

.v3-review-stat-item {
  padding: 1.5rem;
  border-radius: 15px;
  min-width: 160px;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.5s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transform-origin: center;
  will-change: transform;
  position: relative;
  z-index: 1;
}

.v3-review-stat-item:hover {
  transform: translateY(-5px) scale(1.05) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.v3-review-stat-item-1 { animation: float1 5s ease-in-out infinite; }
.v3-review-stat-item-2 { animation: float2 6s ease-in-out infinite; }
.v3-review-stat-item-3 { animation: float3 7s ease-in-out infinite; }
.v3-review-stat-item-4 { animation: float4 5.5s ease-in-out infinite; }

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(5px, -8px) rotate(1deg); }
  50% { transform: translate(-3px, 5px) rotate(-1deg); }
  75% { transform: translate(-7px, -3px) rotate(0.5deg); }
}

@keyframes float2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  20% { transform: translate(-5px, 7px) rotate(-1deg); }
  40% { transform: translate(8px, 2px) rotate(1.5deg); }
  60% { transform: translate(3px, -7px) rotate(-0.5deg); }
  80% { transform: translate(-4px, -2px) rotate(1deg); }
}

@keyframes float3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  30% { transform: translate(7px, 5px) rotate(1deg); }
  60% { transform: translate(-6px, -8px) rotate(-1.5deg); }
}

@keyframes float4 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-8px, -5px) rotate(-1deg); }
  66% { transform: translate(6px, 8px) rotate(1.5deg); }
}

.v3-review-stat-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.v3-review-stat-label {
  font-size: 0.9rem;
  line-height: 1.4;
  text-align: left;
  opacity: 0.9;
}

/* Client Logos */
.v3-clients {
  padding: 4rem 0;
  background: #f8f9fa;
}

.v3-clients-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.v3-clients-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.v3-clients-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
}

.v3-clients-link {
  color: #FE8E40;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}

.v3-clients-link:hover {
  text-decoration: underline;
}

.v3-clients-static-slider {
  width: 100%;
  position: relative;
  margin-bottom: 2rem;
  overflow: hidden;
}

.v3-clients-slider-container {
  position: relative;
  width: 100%;
  height: 390px;
}

.v3-clients-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform: translateX(100%);
}

.v3-clients-slide-prev {
  transform: translateX(-100%);
}

.v3-clients-slide-next {
  transform: translateX(100%);
}

.v3-clients-slide-active {
  opacity: 1;
  transform: translateX(0);
  z-index: 1;
}

.v3-slide-prev {
  animation: slideFromLeft 0.5s ease forwards;
}

.v3-slide-next {
  animation: slideFromRight 0.5s ease forwards;
}

@keyframes slideFromLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.v3-clients-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .v3-clients-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.v3-clients-navigation {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.v3-clients-dots {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.v3-clients-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.v3-clients-nav-btn:hover {
  background: #f8f8f8;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.v3-client-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ddd;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.v3-client-dot-active {
  background: #FE8E40;
  transform: scale(1.2);
}

.v3-client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v3-client-logo-box {
  width: 100%;
  height: 180px;
  background: #252525;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.v3-client-logo-img {
  width: auto;
  height: auto;
  max-width: 90%;
  max-height: 160px;
  object-fit: contain;
  opacity: 0.9;
  transition: all 0.3s ease;
  filter: brightness(1.2) contrast(1.1);
}

.v3-client-logo-box:hover .v3-client-logo-img {
  opacity: 1;
  transform: scale(1.05);
}

.v3-client-logo:hover .v3-client-logo-box {
  background: #f0f0f0;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

/* V3 Mission Section */
.v3-mission {
  background: #FE8E40;
  padding: 6rem 0;
  color: white;
}

.v3-mission-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.v3-mission-header {
  text-align: center;
  margin-bottom: 4rem;
}

.v3-mission-badge {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: block;
}

.v3-mission-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.v3-mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.v3-mission-image {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.v3-mission-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.v3-mission-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.v3-mission-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FE8E40;
  flex-shrink: 0;
}

.v3-mission-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.v3-mission-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

.v3-mission-button {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.3);
  align-self: flex-start;
}

.v3-feature-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.v3-feature-list {
  list-style: none;
  margin-bottom: 2rem;
}

.v3-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.v3-feature-list li::before {
  content: "✓";
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.v3-feature-button {
  background: white;
  color: #FC6E22;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  display: inline-block;
}

.v3-feature-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.v3-feature-image {
  border-radius: 15px;
  overflow: hidden;
  height: 200px;
  position: relative;
}

.v3-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stats Section - Now merged into mission */

.v3-stats-container {
  width: 100%;
  margin: 4rem auto 0;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.v3-stat-card {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 15px;
}

.v3-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.v3-stat-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
}

/* Services Section */
.v3-services {
  background: #f8f9fa;
  padding: 3rem 0;
}

.v3-services-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.v3-services-header {
  margin-bottom: 4rem;
}

.v3-service-badge {
  color: #FE8E40;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: block;
}

.v3-services-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.v3-services-link {
  color: #FE8E40;
  text-decoration: none;
  font-weight: 500;
}

.v3-services-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.v3-services-header p {
  font-size: 1.1rem;
  color: #666;
}

.v3-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.v3-service-card {
  background: transparent;
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid #FE8E40;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  position: relative;
}

.v3-service-card .v3-service-header {
  flex: 1;
  padding: 0 !important;
  background: transparent !important;
}

.v3-service-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  border-radius: 50%;
  align-self: flex-end;
  color: #999;
}

.v3-service-icon {
  width: 50px;
  height: 50px;
  background: #FE8E40;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
}

.v3-service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
}

.v3-service-card p {
  color: #666;
  line-height: 1.6;
}

.v3-service-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0 0;
}

.v3-service-list li {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.8rem;
  position: relative;
  padding-left: 1.2rem;
}

.v3-service-list li:before {
  content: "•";
  color: #FE8E40;
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

/* Portfolio Section */
.v3-portfolio {
  background: white;
  padding: 6rem 0;
  color: #333;
}

.v3-portfolio-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.v3-portfolio-header {
  margin-bottom: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 4rem;
}

.v3-portfolio-header-left {
  flex: 1;
}

.v3-portfolio-badge {
  color: #FE8E40;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: block;
}

.v3-portfolio-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
  color: #333;
}

.v3-portfolio-header-right {
  flex: 1;
  text-align: right;
}

.v3-portfolio-header-right p {
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.v3-portfolio-cta {
  background: #FE8E40;
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  display: inline-block;
}

.v3-portfolio-slider {
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.v3-portfolio-track {
  display: flex;
  gap: 2rem;
  animation: slide 30s linear infinite;
  width: fit-content;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.v3-portfolio-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  width: 280px;
  height: 400px;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
  text-decoration: none;
  color: inherit;
  background: #000;
}

.v3-portfolio-item:hover {
  transform: translateY(-5px);
}

.v3-portfolio-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  border-radius: 15px;
  padding: 0;
  margin: 0;
}

.v3-portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.v3-portfolio-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.v3-portfolio-category {
  font-size: 0.9rem;
  color: #FE8E40;
  font-weight: 500;
}

/* Footer Section */
.v3-footer-section {
  background: #f8f9fa;
  padding: 4rem 0 2rem;
}

.v3-footer-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

.v3-cta-card {
  background: #FE8E40;
  color: white;
  padding: 3rem;
  border-radius: 20px;
}

.v3-cta-badge {
  color: white;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: block;
}

.v3-cta-card h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.v3-cta-card p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.v3-cta-button {
  background: white;
  color: #FE8E40;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  display: inline-block;
}

.v3-footer-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

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

.v3-footer-column h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

.v3-footer-column ul {
  list-style: none;
  padding: 0;
}

.v3-footer-column ul li {
  margin-bottom: 0.5rem;
}

.v3-footer-column ul li a {
  color: #666;
  text-decoration: none;
  font-size: 0.95rem;
}

.v3-footer-column ul li a:hover {
  color: #FE8E40;
}

.v3-footer-column p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.v3-social-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}

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

.v3-social-links a {
  text-decoration: none;
  color: unset;
}

.v3-social-links span {
  color: #666;
  font-size: 0.95rem;
}

/* Final Footer */
.v3-final-footer {
  background: white;
  padding: 2rem 0;
  border-top: 1px solid #eee;
}

.v3-final-footer-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.v3-footer-logo {
  opacity: 0.8;
}

.v3-footer-logo-section {
  margin-bottom: 1.5rem;
}

.v3-footer-column-logo {
  opacity: 0.9;
}

.v3-copyright {
  color: #666;
  font-size: 0.9rem;
  text-align: center;
}

/* V3 Portfolio Detail Pages */
.v3-portfolio-detail-hero {
  background: white;
  padding: 6rem 0 4rem;
  margin-top: 0;
}

.v3-portfolio-detail-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.v3-portfolio-detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
}

.v3-breadcrumb-link {
  color: #666;
  text-decoration: none;
}

.v3-breadcrumb-link:hover {
  color: #FE8E40;
}

.v3-breadcrumb-separator {
  color: #999;
}

.v3-breadcrumb-current {
  color: #FE8E40;
  font-weight: 500;
}

.v3-portfolio-detail-category {
  color: #FE8E40;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.v3-portfolio-detail-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #333;
}

.v3-portfolio-detail-description {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.v3-portfolio-detail-video {
  width: 100%;
  max-width: 1000px;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  position: relative;
}

.v3-portfolio-detail-video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.v3-portfolio-detail-metrics {
  background: #f8f9fa;
  padding: 4rem 0;
}

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

.v3-metric-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.v3-metric-value {
  font-size: 3rem;
  font-weight: 700;
  color: #FE8E40;
  margin-bottom: 0.5rem;
}

.v3-metric-label {
  font-size: 0.9rem;
  color: #666;
  font-weight: 500;
  line-height: 1.4;
}

.v3-portfolio-detail-content {
  background: white;
  padding: 6rem 0;
}

.v3-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 6rem;
}

.v3-content-section {
  
}

.v3-content-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #333;
}

.v3-content-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #666;
}

.v3-portfolio-detail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.v3-gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 350px;
}

.v3-gallery-item:hover {
  transform: translateY(-5px);
}

.v3-gallery-image {
  object-fit: cover;
}

.v3-portfolio-detail-results {
  background: #FE8E40;
  padding: 6rem 0;
  color: white;
}

.v3-results-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: white;
}

.v3-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.v3-result-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.v3-result-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.v3-result-text {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.9;
}

.v3-portfolio-detail-cta {
  background: #1a1a1a;
  padding: 6rem 0;
  text-align: center;
  color: white;
}

.v3-cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.v3-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.v3-cta-description {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.v3-cta-button {
  background: #FE8E40;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.v3-cta-button:hover {
  background: #e55a1a;
  transform: translateY(-2px);
}

/* Tablet Responsive Design */
@media (max-width: 1024px) {
  .v3-header-container {
    padding: 0 1.5rem;
    gap: 1.25rem;
  }

  .v3-hero-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .v3-mission-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .v3-footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Tablet Responsive Design */
@media (max-width: 1024px) {
  .v3-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* Mobile Responsive Design */
@media (max-width: 768px) {
  /* Header Mobile Styles */
  .v3-header-container {
    padding: 0 1rem;
    gap: 1rem;
  }

  .v3-header-logo img {
    height: 36px;
  }

  .v3-nav-desktop {
    display: none;
  }

  .v3-mobile-menu-button {
    display: block;
  }

  /* Hero Section Mobile */
  .v3-hero {
    padding: 3rem 0;
  }

  .v3-hero-container {
    padding: 0 1rem;
  }

  .v3-hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.1;
  }

  .v3-hero-content p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .v3-review-stats {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, auto);
    gap: 1.5rem;
    max-width: 280px;
  }
  
  .v3-review-stat-item {
    width: 100%;
    justify-content: center;
  }

  /* Clients Section Mobile */
  .v3-clients-grid {
    gap: 2rem;
    justify-content: center;
  }
  
  .v3-clients-slider-container {
    height: 780px; /* 4 rows × 180px + 3 gaps × 2rem = 780px */
  }

  /* Mission Section Mobile */
  .v3-mission {
    padding: 4rem 0;
  }

  .v3-mission-container {
    padding: 0 1rem;
  }

  .v3-mission-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .v3-mission-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .v3-stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 3rem;
  }

  .v3-stat-card {
    padding: 1.5rem;
  }

  /* Services Section Mobile */
  .v3-services {
    padding: 4rem 0;
  }

  .v3-services-container {
    padding: 0 1rem;
  }

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

  .v3-services-header {
    margin-bottom: 3rem;
  }

  .v3-services-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .v3-services-header h2 {
    font-size: 2rem;
  }

  /* Portfolio Section Mobile */
  .v3-portfolio {
    padding: 4rem 0;
  }

  .v3-portfolio-container {
    padding: 0 1rem;
  }

  .v3-portfolio-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
  }

  .v3-portfolio-header-right {
    text-align: left;
  }

  .v3-portfolio-item {
    width: 250px;
    height: 350px;
  }

  /* Footer Section Mobile */
  .v3-footer-section {
    padding: 3rem 0 2rem;
  }

  .v3-footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1rem;
  }

  .v3-cta-card {
    padding: 2rem;
  }

  .v3-cta-card h2 {
    font-size: 2rem;
  }

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

  /* Project Detail Pages Mobile */
  .v3-portfolio-detail-hero {
    padding: 4rem 0 3rem;
  }

  .v3-portfolio-detail-container {
    padding: 0 1rem;
  }

  .v3-portfolio-detail-title {
    font-size: 2.5rem;
  }

  .v3-portfolio-detail-video {
    height: 300px;
    max-width: 100%;
  }

  .v3-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .v3-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .v3-gallery-item {
    height: 250px;
  }

  .v3-portfolio-detail-gallery {
    grid-template-columns: 1fr;
  }

  .v3-results-grid {
    grid-template-columns: 1fr;
  }

  .v3-cta-title {
    font-size: 2rem;
  }
}

/* Small Mobile Responsive Design */
@media (max-width: 480px) {
  .v3-hero-content h1 {
    font-size: 2rem;
  }

  .v3-mission-title {
    font-size: 1.75rem;
  }

  .v3-services-header h2 {
    font-size: 1.75rem;
  }

  .v3-portfolio-detail-title {
    font-size: 2rem;
  }

  .v3-cta-card h2 {
    font-size: 1.75rem;
  }

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

  .v3-metrics-grid {
    grid-template-columns: 1fr;
  }

  .v3-nav-mobile {
    width: 100%;
    right: -100%;
  }

  .v3-nav-mobile-open {
    right: 0;
  }
}

/* V3 Services Banner */
.v3-services-banner {
  background: #F9A8D4;
  padding: 1.5rem 0;
  overflow: hidden;
  width: 100%;
}

.v3-services-scroll {
  width: 100%;
  overflow: hidden;
}

.v3-services-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: scroll-left 50s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.v3-service-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-plus-jakarta-sans), 'Plus Jakarta Sans', sans-serif;
}

.v3-service-icon {
  font-size: 1.8rem;
}

.v3-service-text {
  font-size: 1.5rem;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .v3-service-item {
    gap: 0.8rem;
    font-size: 1.2rem;
  }
  
  .v3-service-icon {
    font-size: 1.4rem;
  }
  
  .v3-service-text {
    font-size: 1.2rem;
  }
  
  .v3-services-track {
    gap: 2rem;
  }
}

/* V3 Industries Banner */
.v3-industries-banner {
  background: #FB923C;
  padding: 1.5rem 0;
  overflow: hidden;
  width: 100%;
}

.v3-industries-scroll {
  width: 100%;
  overflow: hidden;
}

.v3-industries-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  animation: scroll-left 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.v3-industry-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  font-family: var(--font-plus-jakarta-sans), 'Plus Jakarta Sans', sans-serif;
}

.v3-industry-icon {
  font-size: 1.8rem;
}

.v3-industry-text {
  font-size: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .v3-industry-item {
    gap: 0.8rem;
    font-size: 1.2rem;
  }
  
  .v3-industry-icon {
    font-size: 1.4rem;
  }
  
  .v3-industry-text {
    font-size: 1.2rem;
  }
  
  .v3-industries-track {
    gap: 2rem;
  }
}
