/*
Theme Name: Wo2 Dark V2
Theme URI: https://iqramahmed.com
Author: Iqram Ahmed
Author URI: https://iqramahmed.com
Version:     2.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  background: #F5F7FA;
  color: #111213;
  overflow-x: hidden;
}

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 2rem;
  background: transparent;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 767px) {
  .nav {
    padding: 0;
  }
}

.nav-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.nav-logo {
  width: 80px;
  height: auto;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-logo.visible {
  opacity: 1;
  transform: translateY(0);
}

.nav-logo svg {
  width: 100%;
  height: auto;
  display: block;
}

.nav-logo svg path {
  fill: #F5F7FA;
}

.nav-menu-btn {
  position: relative;
  padding: 0.75rem 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  overflow: hidden;
  font-weight: 200;
  opacity: 0;
  animation: fadeInRight 0.6s ease forwards;
}

@media (max-width: 767px) {
  .nav-menu-btn {
    padding: 0;
    margin: 20px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.menu-icon,
.menu-text {
  position: relative;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  .menu-icon {
    width: 24px;
    height: 24px;
  }
  
  .menu-text {
    display: none;
  }
}

.menu-hover-bg {
  position: absolute;
  inset: 0;
  background: #000000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.menu-hover-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.3s ease;
}

@media (max-width: 767px) {
  .menu-hover-text {
    display: none;
  }
}

.nav-menu-btn:hover .menu-hover-bg {
  transform: scaleX(1);
}

@media (max-width: 767px) {
  .nav-menu-btn:hover .menu-hover-bg {
    transform: scaleX(0);
  }
}

.nav-menu-btn:hover .menu-hover-text {
  opacity: 1;
}

/* Menu Overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 900;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  display: block;
  opacity: 1;
}

.menu-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.menu-item {
  position: relative;
  background: transparent;
  border: none;
  font-size: 3rem;
  font-weight: 200;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(20px);
  padding: 0.5rem 2rem;
  overflow: hidden;
}

.menu-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #111213;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.menu-item:hover::before {
  transform: scaleX(1);
}

.menu-item:hover {
  color: #F5F7FA;
}

.menu-overlay.active .menu-item {
  animation: menuItemFadeIn 0.4s ease forwards;
}

.menu-overlay.active .menu-item:nth-child(1) {
  animation-delay: 0.1s;
}
.menu-overlay.active .menu-item:nth-child(2) {
  animation-delay: 0.15s;
}
.menu-overlay.active .menu-item:nth-child(3) {
  animation-delay: 0.2s;
}
.menu-overlay.active .menu-item:nth-child(4) {
  animation-delay: 0.25s;
}
.menu-overlay.active .menu-item:nth-child(5) {
  animation-delay: 0.3s;
}

.menu-item:hover {
  font-style: italic;
}

.menu-item-number {
  position: absolute;
  left: -3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-item:hover .menu-item-number {
  opacity: 1;
}

.menu-item-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #000000;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.menu-item:hover .menu-item-underline {
  transform: scaleX(1);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    to bottom,
    #111213,
    #1a1b1c,
    #111213
  );
  color: #F5F7FA;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.5;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      rgba(245, 247, 250, 0.02) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(245, 247, 250, 0.02) 1px,
      transparent 1px
    );
  background-size: 60px 60px;
  animation: gridFloat 15s ease-in-out infinite;
}

@keyframes gridFloat {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 0.5;
  }
  50% {
    transform: translate(20px, 20px);
    opacity: 0.8;
  }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(147, 197, 253, 0.2) 0%,
    rgba(129, 140, 248, 0.12) 30%,
    transparent 70%
  );
  filter: blur(40px);
  animation: aiPulse 8s ease-in-out infinite;
}

@keyframes aiPulse {
  0%, 100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.4;
  }
  50% {
    transform: scale(1.2) translate(30px, -30px);
    opacity: 0.7;
  }
}

.hero-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(147, 197, 253, 0.6);
  border-radius: 50%;
  animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate(100px, -100vh);
    opacity: 0;
  }
}

.hero-node {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(147, 197, 253, 0.3);
  border-radius: 50%;
  animation: nodePulse 4s ease-in-out infinite;
}

@keyframes nodePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}

.hero-connection {
  position: absolute;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(147, 197, 253, 0.2),
    transparent
  );
  transform-origin: left;
  animation: connectionPulse 3s ease-in-out infinite;
}

@keyframes connectionPulse {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-space-line {
  position: absolute;
  width: 2px;
  height: 100px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(147, 197, 253, 0.4),
    transparent
  );
  transform-origin: top center;
  animation: spaceLineFly 8s ease-in infinite;
  opacity: 0;
}

@keyframes spaceLineFly {
  0% {
    transform: perspective(500px) rotateX(65deg) translateY(0) translateZ(0) scaleY(1);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  80% {
    opacity: 0.4;
  }
  100% {
    transform: perspective(500px) rotateX(65deg) translateY(600px) translateZ(-400px) scaleY(2);
    opacity: 0;
  }
}

.hero-line {
  position: absolute;
  left: 0;
  width: 33.33%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: lineMove 15s linear infinite;
}

.hero-line:nth-child(9) {
  animation-duration: 18s;
  animation-delay: 2s;
}
.hero-line:nth-child(10) {
  animation-duration: 21s;
  animation-delay: 4s;
}
.hero-line:nth-child(11) {
  animation-duration: 24s;
  animation-delay: 6s;
}
.hero-line:nth-child(12) {
  animation-duration: 27s;
  animation-delay: 8s;
}
.hero-line:nth-child(13) {
  animation-duration: 30s;
  animation-delay: 10s;
}

.hero-icon {
  position: absolute;
  z-index: 10;
  color: rgba(255, 255, 255, 0.3);
}

.hero-icon-sparkles {
  top: 8rem;
  left: 3rem;
  animation: rotate360 30s linear infinite;
}

.hero-icon-layers {
  bottom: 8rem;
  right: 3rem;
  animation: floatUpDown 4s ease-in-out infinite;
}

.hero-content {
  position: relative;
  width: 100%;
  z-index: 10;
  padding: 0 2rem;
}

.hero-content > * {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: slideInFromRight 1s ease forwards 0.2s;
}

.hero-label-line {
  width: 4rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  transform: scaleX(0);
  transform-origin: right;
  animation: expandLine 0.8s ease forwards 0.4s;
}

.hero-label span {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}

.hero-main {
  margin-bottom: 4rem;
}

.hero-title {
  font-size: 12vw;
  line-height: 0.85;
  letter-spacing: -0.05em;
  font-weight: 100;
  margin-bottom: 2rem;
}

.hero-logo-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.3s;
}

.hero-logo-container svg {
  width: clamp(300px, 50vw, 500px);
  height: auto;
  animation: pixelReveal 2.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-logo-container svg path {
  fill: #ffffff;
}

@keyframes pixelReveal {
  0% {
    opacity: 0;
    filter: blur(40px) brightness(1.5);
    transform: scale(1.1);
  }
  50% {
    opacity: 0.7;
    filter: blur(10px) brightness(1.2);
  }
  100% {
    opacity: 1;
    filter: blur(0px) brightness(1);
    transform: scale(1);
  }
}

.hero-title-main {
  display: block;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.3s;
}

.hero-title-sub {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards 0.4s;
}

.hero-tagline-container {
  position: relative;
  height: 6rem;
  /* margin-left: 3rem; */
}

.hero-tagline {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-tagline.active {
  opacity: 1;
  transform: translateY(0);
}

.hero-tagline p {
  font-size: 2rem;
  font-weight: 200;
  line-height: 1.4;
}

.hero-tagline .highlight {
  font-style: italic;
  font-weight: 300;
}

.hero-tagline .muted {
  color: rgba(255, 255, 255, 0.6);
}

.hero-bottom {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards 0.8s;
}

.hero-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 300;
  opacity: 0;
  animation: slideInFromRight 1s ease forwards 2.8s;
}

.hero-info svg {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards 3.2s;
}

.hero-info span {
  letter-spacing: 0.1em;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #ffffff;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background: #ffffff;
  color: #000000;
}

.hero-cta svg {
  transition: transform 0.3s ease;
}

.hero-cta:hover svg {
  transform: translateX(0.5rem);
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards 1.2s;
}

.scroll-indicator span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

.scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: scrollLineMove 2s ease-in-out infinite;
}

/* Services Section */
.services {
  position: relative;
  padding: 8rem 2rem;
  background: #fafaf9;
  overflow: hidden;
}

.services-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.05;
  background-image: radial-gradient(
    circle,
    black 1px,
    transparent 1px
  );
  background-size: 40px 40px;
  animation: rotate360 60s linear infinite;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 6rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
}

.section-label.visible {
  animation: fadeIn 0.6s ease forwards;
}

.section-label.visible .section-line {
  animation: lineExpand 1.2s ease forwards 0.3s;
}

@keyframes lineExpand {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.section-label span {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: rgba(0, 0, 0, 0.8);
  font-weight: 300;
}

.section-line {
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  transform: scaleX(0);
  transform-origin: left;
}

.services-container {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}

.service-item {
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.service-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-number {
  position: absolute;
  left: -5rem;
  top: 0;
  font-size: 12rem;
  opacity: 0.05;
  font-weight: 100;
  line-height: 1;
}

.service-content {
  position: relative;
}

.service-tag {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-left: 3rem;
}

.service-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #000000;
}

.service-tag span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: rgba(0, 0, 0, 0.4);
  font-weight: 300;
}

.service-item h3 {
  font-size: 4rem;
  font-weight: 200;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  padding-left: 3rem;
}

.service-item p {
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
  max-width: 42rem;
  padding-left: 3rem;
}

/* Diagonal Divider */
.diagonal-divider {
  display: none;
}

/* Specialties Section */
.specialties {
  padding: 8rem 2rem;
  background: #fafaf9;
}

.specialties-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
}

.specialty-item {
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.specialty-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.specialty-number {
  position: absolute;
  top: -2rem;
  left: -1rem;
  font-size: 5rem;
  opacity: 0.05;
  font-weight: 100;
}

.specialty-line {
  width: 3rem;
  height: 1px;
  background: #000000;
  margin-bottom: 1.5rem;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease 0.2s;
}

.specialty-item.visible .specialty-line {
  transform: scaleX(1);
}

.specialty-item h3 {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.specialty-item p {
  font-size: 1.125rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.6;
}

/* Products Section */
.products {
  padding: 8rem 2rem;
  background: #fafaf9;
}

.products-masonry {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.product-item {
  position: relative;
  padding: 3rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(40px);
}

.product-item.visible {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.product-item:nth-child(2) {
  animation-delay: 0.15s;
}
.product-item:nth-child(3) {
  animation-delay: 0.3s;
}
.product-item:nth-child(4) {
  animation-delay: 0.45s;
}
.product-item:nth-child(5) {
  animation-delay: 0.6s;
}
.product-item:nth-child(6) {
  animation-delay: 0.75s;
}

.product-item:hover {
  transform: translateY(-12px);
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.product-wide,
.product-tall {
  grid-column: span 1;
  grid-row: span 1;
}

.product-number {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 5rem;
  font-weight: 100;
  line-height: 1;
  opacity: 0.05;
  transition: opacity 0.5s ease;
}

.product-item:hover .product-number {
  opacity: 0.1;
}

.product-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-height: 200px;
}

.product-item h3 {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.product-item p {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 300;
  line-height: 1.7;
  font-size: 1rem;
  flex: 1;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #000000;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.3s ease;
}

.product-link:hover {
  gap: 1rem;
}

.product-link svg {
  transition: transform 0.3s ease;
}

.product-link:hover svg {
  transform: translate(2px, -2px);
}

/* Testimonials Section */
.testimonials {
  padding: 8rem 2rem;
  background: #fafaf9;
}

.testimonials-container {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.testimonial-item {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.testimonial-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-offset {
  margin-left: 8rem;
}

.testimonial-quote {
  font-size: 1.875rem;
  font-weight: 200;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-line {
  width: 3rem;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
}

.author-name {
  font-weight: 400;
  margin-bottom: 0.25rem;
}

.author-role {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.6);
}

/* About Section */
.about {
  padding: 8rem 2rem;
  background: #fafaf9;
}

.about-grid {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.about-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

.about-description h2 {
  font-size: 2.5rem;
  font-weight: 200;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.about-description p {
  font-size: 1.25rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.8;
}

.about-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.about-logo svg {
  width: 100%;
  max-width: 400px;
  height: auto;
  opacity: 0;
  animation: fadeIn 1s ease forwards 0.3s;
}

.about-stats {
  margin-top: 4rem;
}

.about-stats h3 {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 3rem;
  text-align: center;
}

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

.stat-item {
  position: relative;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-size: 4rem;
  font-weight: 200;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: #111213;
}

.stat-label {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 0.75rem;
}

.stat-desc {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.stat-line {
  width: 3rem;
  height: 1px;
  background: rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.6s ease 0.3s;
}

.stat-item.visible .stat-line {
  transform: scaleX(1);
}

/* Responsive About Section */
@media (min-width: 768px) {
  .about-top {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 6rem;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Contact Section */
.contact {
  padding: 8rem 2rem 1rem;
  background: linear-gradient(
    to bottom,
    #111213,
    #1a1b1c,
    #111213
  );
  color: #ffffff;
}

.contact-container {
  max-width: 80rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.contact-header {
  margin-bottom: 3rem;
}

.contact-label {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

.contact-header h2 {
  font-size: 3.75rem;
  font-weight: 200;
  letter-spacing: -0.02em;
  margin-top: 1rem;
  line-height: 1.2;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  margin-bottom: 0.75rem;
}

/* Make CF7 fields behave like your original inputs */
.form-group input,
.form-group textarea,
.contact-form .wpcf7-form-control {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 200;
  font-family: inherit;
  transition: border-color 0.3s ease;
  width: 100%;               /* 🔥 full-width underline */
  box-sizing: border-box;
}

/* Remove weird CF7 inline behavior + spacing if any */
.contact-form .wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-form .contact-form p {
  margin: 0;
}

.form-group input:focus,
.form-group textarea:focus,
.contact-form .wpcf7-form-control:focus {
  outline: none;
  border-bottom-color: #ffffff;
}

.form-group textarea {
  resize: none;
}

.form-submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: #ffffff;
  font-weight: 300;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;  
}

.form-submit:hover {
  background: #ffffff;
  color: #000000;
}

.form-submit svg {
  transition: transform 0.3s ease;
}

.form-submit:hover svg {
  transform: translateX(0.5rem);
}

/* CF7 messages */
.wpcf7 form .wpcf7-response-output {
  margin-top: 1rem;
  color: #fff;
  border-color: rgba(255,255,255,0.2);
}

.wpcf7-not-valid-tip {
  color: #ff6b6b;
  font-size: 0.8rem;
  margin-top: 0.5rem;
}
/* Base style for ALL CF7 messages */
.wpcf7 form .wpcf7-response-output {
  margin: 1.5rem 0 0 !important;        /* right under the button */
  padding: 0.75rem 1rem !important;
  border-width: 1px !important;
  border-style: solid !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
  background: transparent !important;
  color: #ffffff !important;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  box-shadow: none !important;
}

/* Error state (validation failed) */
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffb900 !important;
}

/* Success state (email sent) */
.wpcf7 form.sent .wpcf7-response-output {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}

.contact-info {
  padding-top: 8rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-info-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

.contact-info-label span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  font-weight: 300;
}

.contact-info-item a,
.contact-info-item p {
  font-size: 1.5rem;
  font-weight: 200;
  color: #ffffff;
  text-decoration: none;
  transition: font-style 0.3s ease;
  line-height: 1.6;
}

.contact-info-item a:hover {
  font-style: italic;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

/* Footer */
.footer {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  margin-top: 6rem;
  padding: 2rem 2rem 1rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}

/* Animations */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes menuItemFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gridMove {
  to {
    background-position: 100% 100%;
  }
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, 50px) scale(1.2);
  }
}

@keyframes lineMove {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(300%);
  }
}

@keyframes rotate360 {
  to {
    transform: rotate(360deg);
  }
}

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

@keyframes scrollLineMove {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@keyframes dividerExpand {
  to {
    transform: scaleY(1);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes expandLine {
  to {
    transform: scaleX(1);
  }
}

/* Responsive */
@media (min-width: 768px) {
  .nav {
    padding: 2rem 3rem;
  }

  .hero-content {
    padding: 0 4rem;
  }

  .hero-title {
    font-size: 12vw;
  }

  .hero-tagline p {
    font-size: 2.5rem;
  }

  .hero-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .service-item h3 {
    font-size: 5rem;
  }

  .service-item p {
    font-size: 1.5rem;
  }

  .menu-item {
    font-size: 4.5rem;
  }

  .contact-container {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .testimonial-offset {
    margin-left: 8rem;
  }

  .testimonial-quote {
    font-size: 2.25rem;
  }

  .products-masonry {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-wide {
    grid-column: span 2;
  }

  .product-tall {
    grid-row: span 2;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 15vw;
  }

  .hero-tagline p {
    font-size: 1.5rem;
  }

  .service-item h3 {
    font-size: 2.5rem;
  }

  .service-number {
    position: relative;
    left: 0;
    font-size: 6rem;
    margin-bottom: 1rem;
  }
  
  .service-tag {
    padding-left: 2rem;
  }
  
  .service-item h3,
  .service-item p {
    padding-left: 2rem;
  }

  .menu-item {
    font-size: 2.5rem;
  }

  .testimonial-offset {
    margin-left: 0;
  }

  .contact-header h2 {
    font-size: 2.5rem;
  }

  .contact-info {
    padding-top: 0;
  }

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

  .product-large,
  .product-medium,
  .product-small {
    grid-column: span 1;
  }

  .product-card {
    margin-top: 0 !important;
  }
}