/* Modern CSS Variables & Reset */
:root {
  /* Updated color palette inspired by stackbyte.dev */
  --background: #0d1117;
  --foreground: #ffffff;
  --primary: #48e4ff;
  --primary-light: #d5f9ff;
  --primary-dark: #0acaec;
  --secondary: #3772c9;
  --secondary-light: #d6e6ff;
  --accent: #f59e0b;
  --muted: #6b7280;
  --muted-foreground: #9ca3af;
  --border: #1f2937;
  --card: #111827;
  --card-foreground: #f9fafb;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-accent: linear-gradient(135deg, var(--accent), #ec4899);

  /* Shadows */
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.3);
  --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  overflow-x: hidden;
  font-weight: 400;
}

/* Container Utilities */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
  position: relative;
}

.container-full {
  max-width: 100%;
  padding: 0;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.5),
    transparent
  );
}

/* Header */
.header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 64px;
  opacity: 0;
  animation: fadeInDown 0.8s ease-out 0.1s forwards;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-text {
  border-left: 2px solid rgba(255, 255, 255, 0.3);
  padding-left: 24px;
}

.header-subtitle {
  color: white;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.header-right {
  text-align: right;
  border-right: 1px solid #ffffff70;
  padding-right: 20px;
}

.phone-primary {
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
}

.phone-secondary {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-top: 4px;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: calc(100vh - 160px);
  padding: 0 64px;
  max-width: 1280px;
}

.hero-title {
  font-size: 72px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1;
  font-family: "Libre Franklin", sans-serif;
  opacity: 0;
  animation: fadeInLeft 0.8s ease-out 0.2s forwards;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary),
    var(--primary-light),
    #6fdaff,
    var(--primary)
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation:
    fadeInLeft 0.8s ease-out 0.2s forwards,
    gradientShift 8s ease infinite;
}

.hero-description {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 48px;
  max-width: 672px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeInLeft 0.8s ease-out 0.6s forwards;
}

.cta-button {
  background: var(--gradient-primary);
  color: white;
  font-size: 20px;
  font-weight: 600;
  padding: 20px 48px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
  font-family: "Libre Franklin", sans-serif;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-xl);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:active {
  transform: scale(0.95);
}

/* About Section */
.about-section {
  position: relative;
  padding: 128px 0;
  /* background: linear-gradient(to bottom, #01b5f2, #0099dc); */
  background-color: #08bdf6;
  background-image: url("../images/blueprint1-1.jpg");
  background-size: auto;
  background-position: center bottom;
  background-repeat: repeat-x;
}
.part-section {
  position: relative;
  padding: 128px 0;
  background-color: #383838;
  background-size: cover;
  background-image: url("../images/blueprint2.jpg");
  background-size: auto;
  background-position: center bottom;
  background-repeat: repeat-x;

  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
}

.brands-text {
  color: #383838;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  margin-top: 32px;
  padding: 0 64px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.about-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 64px;
  margin-bottom: 70px;
}

.about-left {
  flex: 1;
  padding-right: 45px;
  text-align: right;
  border-right: 1px solid #ffffff63;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 32px;
  font-family: "Libre Franklin", sans-serif;

  color: #fff;
}

.about-intro {
  color: white;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
}

.about-right {
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.logo-container {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 15px;
  padding: 30px 45px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.about-bottom {
  margin-top: 80px;
  color: #ffffffd5;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  text-align: justify;
}

/* Specialization Section */
.specialization-section {
  position: relative;
  padding: 128px 0;
  background: #f8fafc;
  overflow: hidden;
}

@keyframes blueprintPattern {
  0% {
    background-position:
      0 0,
      0 0,
      0 0,
      0 40px,
      40px -40px,
      40px 0;
  }
  100% {
    background-position:
      40px 40px,
      40px 40px,
      80px 80px,
      80px 120px,
      120px 0,
      120px 80px;
  }
}

.section-title-gradient {
  font-size: 64px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 80px;
  font-family: "Libre Franklin", sans-serif;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary),
    var(--primary-light),
    var(--secondary-light),
    var(--primary)
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 8s ease infinite;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
}

.service-card {
  position: relative;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
  will-change: transform;
  background-color: #000;
  background-position: 0 0;
  background-size: 105%;
  background-repeat: no-repeat;
  border: 1px solid rgba(0, 0, 0, 0.1);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.service-card:nth-child(1) {
  background-image: url("../images/bg-service-1.png");
}
.service-card:nth-child(2) {
  background-image: url("../images/bg-service-2.png");
}
.service-card:nth-child(3) {
  background-image: url("../images/bg-service-3.png");
}
.service-card:nth-child(4) {
  background-image: url("../images/bg-service-4.png");
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.1),
    rgba(139, 92, 246, 0.05),
    transparent 70%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    #ffffff00,
    #ffffff00,
    #ffffff30,
    #ffffff00
  );
  transform: rotate(45deg);
  opacity: 0;
  transition:
    opacity 0.4s ease,
    transform 0.8s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-10px) translateZ(20px) scale(1.03);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(6, 182, 212, 0.2),
    0 0 0 1px rgba(6, 182, 212, 0.3);
  border-color: rgba(6, 182, 212, 0.4);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  opacity: 0.6;
  transform: rotate(45deg) translateY(50%);
  animation: shimmer 2s infinite;
}

.service-icon {
  position: relative;
  z-index: 10;
  display: inline-flex;
  padding: 16px;
  border-radius: 12px;
  background: rgba(6, 182, 212, 0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(6, 182, 212, 0.3);
  margin: 32px 0 24px 32px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.2);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(3deg);
  background: rgba(6, 182, 212, 0.25);
  box-shadow: 0 6px 16px rgba(6, 182, 212, 0.3);
}

.service-icon svg {
  width: 48px;
  height: 48px;
  color: #06b6d4;
}
.service-icon img {
  width: 80px;
  height: 80px;
  color: #06b6d4;
}

.service-title {
  position: relative;
  z-index: 10;
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  margin: 0 32px 16px;
  line-height: 1.2;
  font-family: "Libre Franklin", sans-serif;
}

.service-description {
  position: relative;
  z-index: 10;
  color: #d8dee8;
  font-size: 18px;
  font-weight: 400;
  margin: 0 32px;
  line-height: 1.6;
}

/* Workflow Section */
.workflow-section {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
}

.workflow-bg {
  position: absolute;
  inset: 0;
}

.workflow-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workflow-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.3),
    rgba(30, 41, 59, 0.5),
    rgba(15, 23, 42, 0.9)
  );
}

.section-title-2 {
  position: relative;
  z-index: 10;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 80px;
  font-family: "Libre Franklin", sans-serif;
  color: #fff;
}

.timeline {
  position: relative;
  z-index: 10;
}

.timeline-line {
  position: absolute;
  top: 60px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary),
    var(--secondary),
    var(--primary),
    transparent
  );
  background-size: 200% 100%;
  animation: gradientShift 4s ease infinite;
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}

.timeline-step {
  position: relative;
  text-align: center;
  transform-style: preserve-3d;
  perspective: 500px;
}

.step-number {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  margin: 0 auto 32px;
  border-radius: 50%;
  border: 2px solid var(--primary-dark);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.step-number img {
  width: 68px;
  height: 68px;
  /* filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
  transition: transform 0.6s ease; */
}

.step-content {
  position: relative;
  background: rgba(17, 24, 39, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(var(--border), 0.6);
  margin-top: 20px;
  transition: all 0.5s ease;
  transform: translateZ(10px);
}

.timeline-step:hover .step-content {
  transform: translateZ(30px);
  border-color: rgba(var(--primary), 0.8);
  box-shadow:
    0 15px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(var(--primary), 0.2);
}

.step-title {
  color: white;
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: "Libre Franklin", sans-serif;
  padding: 5px 0;
}

.step-title span {
  margin: 0 10px 0 0;
}

.timeline-step:hover .step-title {
  text-shadow: 0 0 20px rgba(var(--primary), 0.6);
}

.step-description {
  color: var(--muted-foreground);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  transition: all 0.4s ease;
}

.timeline-step:hover .step-description {
  color: white;
}

/* Brands Section */
.brands-section {
  position: relative;
  padding: 128px 0;
  background: linear-gradient(to bottom, rgb(241, 245, 249), white);
}

.section-title-gradient-dark {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 80px;
  font-family: "Libre Franklin", sans-serif;
  animation: fadeInLeft 0.8s ease-out 0.2s forwards;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary),
    #6fdaff,
    var(--primary)
  );
  background-size: 70% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation:
    fadeInLeft 0.8s ease-out 0.2s forwards,
    gradientShift 8s ease infinite;
}

.marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.marquee-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 128px;
  z-index: 10;
  pointer-events: none;
}

.marquee-fade-left {
  left: 0;
  background: linear-gradient(to right, rgb(241, 245, 249), transparent);
}

.brands-section .marquee-fade-left {
  background: linear-gradient(to right, rgb(241, 245, 249), transparent);
}

.marquee-fade-right {
  right: 0;
  background: linear-gradient(to left, rgb(241, 245, 249), transparent);
}

.brands-section .marquee-fade-right {
  background: linear-gradient(to left, rgb(241, 245, 249), transparent);
}

.clients-section .marquee-fade-left {
  background: linear-gradient(to right, #0a0a0a, transparent);
}

.clients-section .marquee-fade-right {
  background: linear-gradient(to left, #0a0a0a, transparent);
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  padding: 0 0 32px 0;
  width: 100%;
}

.marquee-content {
  display: inline-flex;
  gap: 20px;
}

.brand-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 300px;
  height: 200px;
  padding: 10px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.brand-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.brand-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.brand-card:hover img {
  filter: grayscale(0%);
}

/* Clients Section */
.clients-section {
  position: relative;
  padding: 128px 0;
  overflow: hidden;
  background-color: #0a0a0a;
}

.clients-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, #01b2f0 1px, transparent 1px),
    linear-gradient(to bottom, #01b2f0 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.3;
}

.clients-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    #01b2f0 10px,
    #01b2f0 11px
  );
  opacity: 0.1;
}

.clients-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(1, 178, 240, 0.2), transparent);
}

.clients-section .marquee-fade-left {
  background: linear-gradient(to right, #0a0a0a, transparent);
}

.clients-section .marquee-fade-right {
  background: linear-gradient(to left, #0a0a0a, transparent);
}

.clients-section .marquee-content {
  animation: scroll 25s linear infinite;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
}

.client-card {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100%;
  height: 200px;
  padding: 25px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(3px);
  border: 1px solid #ffffff4d;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

.client-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.client-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, #01b2f0 1px, transparent 1px),
    linear-gradient(to bottom, #01b2f0 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.05;
}

.client-card:hover {
  transform: scale(1.05);
  background: rgb(255, 255, 255);
}

.client-card:hover::before {
  opacity: 1;
}

.client-card img {
  position: relative;
  z-index: 10;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.client-card:hover img {
  transform: scale(1.1);
}

/* Footer */
.footer {
  position: relative;
  background-color: #11181e;
  padding: 0 0 23px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
  margin-bottom: 64px;
}

.footer-map-wrapper {
  position: relative;
  width: 100%;
  height: 700px;
  grid-column: 1 / -1;
  overflow: hidden;
}

.footer-map-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

#map {
  width: 100%;
  height: 100%;
}

.custom-marker {
  background: transparent;
  border: none;
}

/* .footer-map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  pointer-events: all;
} */

/* .footer-map-iframe:after {
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  position: absolute;
  z-index: 600;
  background: linear-gradient(90deg, #071b2a8c, #071b2a2b, #071b2a8c);
  background-size: 70% 300%;
  -webkit-text-fill-color: transparent;
  animation:
    fadeInLeft 0.8s ease-out 0.2s forwards,
    gradientShift 8s ease infinite;
} */

.footer-card.footer-contact {
  position: absolute;
  top: 150px;
  right: calc(50% - 200px);
  z-index: 999;
  width: 400px;
  max-width: calc(100% - 80px);
  border: 1px solid #375c79;
  box-shadow: 0 16px 31px rgba(0, 0, 0, 0.8);
}

.footer-card {
  border-radius: 12px;
  padding: 48px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.footer-contact {
  background-color: #2a2a2a;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.footer-icon-wrapper {
  padding: 12px;
  background-color: rgba(1, 178, 240, 0.1);
  border-radius: 8px;
}

.footer-map-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-title {
  color: white;
  font-size: 30px;
  font-weight: 600;
  font-family: "Libre Franklin", sans-serif;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.footer-icon {
  width: 24px;
  height: 24px;
  color: #01b2f0;
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-text {
  color: white;
  font-size: 18px;
}

.footer-text-light {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.footer-phone {
  color: #01b2f0;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.footer-email {
  color: #01b2f0;
  font-size: 18px;
}

.footer-hours {
  background: linear-gradient(
    to bottom right,
    rgba(51, 65, 85, 0.4),
    rgba(15, 23, 42, 0.4)
  );
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hours-day {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.hours-time {
  color: #01b2f0;
  font-size: 18px;
  font-weight: 600;
}

.hours-closed {
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
}

.footer-note {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-note-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.6;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-logo {
  height: 36px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 1;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* New Stackbyte-inspired animations and utilities */
@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

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

@keyframes glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.6);
  }
}

@keyframes slideIn3D {
  from {
    opacity: 0;
    transform: translateX(-50px) translateZ(-100px) rotateY(15deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateZ(0) rotateY(0deg);
  }
}

@keyframes shimmer {
  0% {
    transform: rotate(45deg) translateX(-100%);
  }
  100% {
    transform: rotate(45deg) translateX(100%);
  }
}

@keyframes patternFloat {
  0% {
    background-position:
      0% 0%,
      0% 0%,
      0 0,
      0 0;
  }
  100% {
    background-position:
      20% 10%,
      -10% 20%,
      30px 30px,
      -30px -30px;
  }
}

/* Modern text effects */
.gradient-animated-text {
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary),
    var(--primary-light),
    var(--secondary-light),
    var(--primary)
  );
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 8s ease infinite;
}

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

/* Modern card utilities */
.perspective-1000 {
  perspective: 1000px;
}

.transform-style-3d {
  transform-style: preserve-3d;
}

.card-3d {
  transform-style: preserve-3d;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-3d:hover {
  transform: translateY(-10px) scale(1.02) rotateX(5deg) rotateY(5deg);
}

.backdrop-blur-sm {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.backdrop-blur-md {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* =============================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================= */
@media (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  /* Header */
  .header {
    padding: 24px 32px;
  }

  .header-subtitle {
    font-size: 18px;
  }

  .phone-primary {
    font-size: 20px;
  }

  /* Hero */
  .hero-content {
    padding: 0 32px;
  }

  .hero-title {
    font-size: 56px;
  }

  .hero-description {
    font-size: 20px;
  }

  /* About */
  .about-section {
    padding: 80px 0;
  }

  .about-top {
    gap: 40px;
  }

  .about-intro {
    font-size: 20px;
  }

  .about-right {
    width: 240px;
  }

  /* Specialization */
  .specialization-section {
    padding: 80px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    padding: 0 32px;
    max-width: 640px;
  }

  /* Workflow */
  .workflow-section {
    padding: 80px 0;
  }

  /* .section-title-2 {
    font-size: 40px;
    margin-bottom: 60px;
  } */

  .section-title-2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 60px;
    font-family: "Libre Franklin", sans-serif;
    color: #fff;
    text-align: center;
  }

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

  .step-description {
    font-size: 14px;
  }

  /* Brands */
  .brands-section {
    padding: 80px 0;
  }

  .section-title-gradient-dark {
    font-size: 36px;
    margin-bottom: 48px;
    padding: 0 32px;
  }

  .brand-card {
    width: 220px;
    height: 150px;
  }

  /* Clients */
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 32px;
    gap: 24px;
  }

  .client-card {
    height: 160px;
  }

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

  .footer-map-wrapper {
    height: 500px;
  }

  .footer-card.footer-contact {
    top: 80px;
    right: calc(50% - 190px);
    width: 380px;
  }

  .footer-title {
    font-size: 24px;
  }
}

/* =============================================
   RESPONSIVE — Mobile Landscape / Small Tablet (≤768px)
   ============================================= */
@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }

  /* Header — Stack vertically */
  .header {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    text-align: center;
  }

  .header-left {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .header-text {
    border-left: none;
    padding-left: 0;
    text-align: center;
  }

  .header-subtitle {
    font-size: 16px;
  }

  .header-right {
    text-align: center;
    border-right: none;
    padding-right: 0;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .phone-primary {
    font-size: 18px;
  }

  /* Hero */
  .hero-content {
    padding: 0 24px;
    height: calc(100vh - 200px);
    align-items: center;
    text-align: center;
  }

  .hero-title {
    font-size: 44px;
  }

  .hero-description {
    font-size: 18px;
    max-width: 100%;
  }

  .hero-overlay {
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.3)
    );
  }

  /* About */
  .about-section {
    padding: 64px 0;
  }

  .about-top {
    flex-direction: column;
    gap: 32px;
  }

  .about-left {
    padding-right: 0;
    border: none;
    text-align: center;
  }

  .section-title {
    font-size: 36px;
    margin-bottom: 20px;
  }

  .about-intro {
    font-size: 18px;
  }

  .about-intro br {
    display: none;
  }

  .about-right {
    width: 100%;
    align-items: center;
  }

  .logo-container {
    max-width: 260px;
    padding: 24px 36px;
  }

  .about-bottom {
    font-size: 16px;
  }

  /* Specialization */
  .specialization-section {
    padding: 64px 0;
  }

  .services-grid {
    padding: 0 24px;
  }

  .service-card {
    height: 280px;
    background-size: cover;
  }

  .service-icon {
    margin: 24px 0 16px 24px;
  }

  .service-icon img {
    width: 60px;
    height: 60px;
  }

  .service-title {
    font-size: 24px;
    margin: 0 24px 12px;
  }

  .service-description {
    font-size: 16px;
    margin: 0 24px;
  }

  /* Workflow — Timeline goes vertical */
  .workflow-section {
    padding: 64px 0;
  }

  .section-title-2 {
    font-size: 32px;
    margin-bottom: 48px;
    padding: 0 24px;
  }

  .timeline-line {
    display: none;
  }

  .timeline-steps {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 480px;
    margin: 0 auto;
  }

  .timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .step-number {
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
  }

  .step-number img {
    width: 60px;
    height: 60px;
  }

  .step-title {
    font-size: 18px;
  }

  .step-description {
    font-size: 15px;
  }

  /* Brands */
  .brands-section {
    padding: 64px 0;
  }

  .section-title-gradient-dark {
    font-size: 28px;
    margin-bottom: 40px;
    padding: 0 24px;
  }

  .marquee-fade {
    width: 48px;
  }

  .brand-card {
    width: 180px;
    height: 120px;
    padding: 8px;
  }

  /* Clients */
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 0 24px;
  }

  .client-card {
    height: 140px;
    padding: 10px;
    border-radius: 12px;
  }

  /* Footer */
  .footer-map-wrapper {
    height: 450px;
  }

  .footer-card.footer-contact {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    margin: 20px 0;
    border-radius: 0;
    box-shadow: none;
    border-left: none;
    border-right: none;
    border-top: none;
  }

  .footer-card {
    padding: 32px 24px;
  }

  .footer-title {
    font-size: 22px;
  }

  .footer-text,
  .footer-text-light,
  .footer-phone,
  .footer-email {
    font-size: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding-top: 24px;
  }

  .footer-logo {
    height: 28px;
  }
}

/* =============================================
   RESPONSIVE — Mobile Portrait (≤480px)
   ============================================= */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  /* Header */
  .header {
    padding: 16px;
    gap: 12px;
  }

  .header-subtitle {
    font-size: 20px;
  }

  .header-right {
    flex-direction: column;
    gap: 4px;
  }

  .phone-primary {
    font-size: 24px;
  }

  /* Hero */
  .hero-section {
    min-height: 100vh;
    min-height: 100svh;
  }

  .hero-content {
    padding: 0 16px;
    height: calc(100vh - 200px);
    height: calc(100svh - 200px);
    justify-content: flex-end;
    padding-bottom: 100px;
  }

  .hero-title {
    font-size: 48px;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 20px;
    margin-bottom: 32px;
    line-height: 1.5;
  }

  .cta-button {
    padding: 16px 32px;
    font-size: 16px;
    width: 100%;
    text-align: center;
  }

  /* About */
  .about-section {
    padding: 48px 0;
  }

  .about-top {
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .about-intro {
    font-size: 16px;
  }

  .about-bottom {
    font-size: 15px;
    text-align: left;
  }

  .logo-container {
    max-width: 200px;
    padding: 20px 30px;
  }

  /* Specialization */
  .specialization-section {
    padding: 48px 0;
  }

  .services-grid {
    padding: 0 16px;
    gap: 20px;
  }

  .service-card {
    height: 260px;
  }

  .service-icon {
    margin: 20px 0 12px 20px;
    padding: 12px;
  }

  .service-icon img {
    width: 48px;
    height: 48px;
  }

  .service-title {
    font-size: 22px;
    margin: 0 20px 8px;
  }

  .service-description {
    font-size: 14px;
    margin: 0 20px;
  }

  /* Workflow */
  .workflow-section {
    padding: 48px 0;
  }

  .section-title-2 {
    font-size: 26px;
    margin-bottom: 36px;
    padding: 0 16px;
    line-height: 1.3;
  }

  .timeline-steps {
    gap: 24px;
    padding: 0 16px;
  }

  .step-number {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
  }

  .step-number img {
    width: 50px;
    height: 50px;
  }

  .step-title {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .step-description {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Brands */
  .brands-section {
    padding: 48px 0;
  }

  .section-title-gradient-dark {
    font-size: 22px;
    margin-bottom: 32px;
    padding: 0 16px;
    line-height: 1.3;
  }

  .marquee-fade {
    width: 24px;
  }

  .brand-card {
    width: 150px;
    height: 100px;
    padding: 6px;
    border-radius: 6px;
  }

  .marquee-content {
    gap: 12px;
  }

  /* Clients */
  .clients-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 16px;
  }

  .client-card {
    height: 110px;
    padding: 8px;
    border-radius: 10px;
  }

  /* Footer */

  .footer-map-iframe {
    display: none;
  }

  .footer-map-wrapper {
    height: 40px;
  }

  .footer-card {
    padding: 24px 16px;
  }

  .footer-card-header {
    margin-bottom: 24px;
  }

  .footer-map-icon {
    width: 36px;
    height: 36px;
  }

  .footer-title {
    font-size: 20px;
  }

  .footer-text,
  .footer-text-light,
  .footer-phone,
  .footer-email {
    font-size: 15px;
  }

  .footer-info {
    gap: 20px;
  }

  .footer-bottom {
    padding-top: 20px;
  }

  .footer-copyright {
    font-size: 12px;
  }

  .footer-logo {
    height: 24px;
  }
}

/* =============================================
   RESPONSIVE — Tiny screens (≤360px)
   ============================================= */
@media (max-width: 360px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-description {
    font-size: 15px;
  }

  .section-title {
    font-size: 24px;
  }

  .section-title-2 {
    font-size: 22px;
  }

  .section-title-gradient-dark {
    font-size: 20px;
  }

  .service-card {
    height: 240px;
  }

  .service-title {
    font-size: 20px;
  }

  .brand-card {
    width: 130px;
    height: 85px;
  }

  .client-card {
    height: 90px;
  }

  .footer-map-wrapper {
    height: 280px;
  }
}
