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

:root {
  --color-bg: #050505;
  --color-text: #ffffff;
  --color-text-muted: #888891;
  --color-border: #1f1f22;
  --color-accent-start: #ffffff;
  --color-accent-end: #dddddd;
  --color-surface: #111111;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --transition-speed: 0.4s;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg);
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

h1,
h2,
h3,
h4 {
  font-weight: 500;
  letter-spacing: -0.02em;
}

p {
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-muted);
}

a {
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--transition-speed) ease;
}

.bg-darker {
  background-color: #000000 !important;
}

.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  z-index: 1001;
  display: flex;
  align-items: center;
  transition: transform var(--transition-speed) ease;
}

.top-bar.scrolled {
  transform: translateY(-100%);
}

.top-bar-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left a,
.top-bar-right a {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
}

.top-bar-left a i {
  color: var(--color-text);
  font-size: 0.9rem;
}

.top-bar-left a:hover,
.top-bar-right a:hover {
  color: var(--color-text);
}

.top-bar-right {
  display: flex;
  gap: 15px;
  align-items: center;
}

.top-bar-separator {
  color: var(--color-border);
  font-size: 0.8rem;
  user-select: none;
}

.theme-toggle-btn {
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: 0.85rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.theme-toggle-btn:hover {
  color: var(--color-text);
}

header {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: top var(--transition-speed) ease, background-color var(--transition-speed) ease, padding var(--transition-speed) ease;
}

header.scrolled {
  top: 0;
  background-color: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 40px;
  border-bottom: 1px solid var(--color-border);
}

.logo,
.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.logo-accent {
  color: var(--color-text);
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  color: var(--color-text-muted);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-text);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: var(--color-text);
  transition: width var(--transition-speed) ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links {
  align-items: center;
}

.nav-links .nav-auth-separator {
  width: 1px;
  height: 14px;
  background-color: var(--color-border);
  margin: 0 5px;
}

.nav-auth-btn {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--color-text-muted) !important;
  transition: all 0.3s ease !important;
  font-size: 1rem !important;
}

.nav-auth-btn:hover {
  border-color: #ffffff !important;
  color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.05) !important;
}

.nav-links a.nav-auth-btn::after {
  display: none !important;
}

@media (max-width: 768px) {
  .nav-links .nav-auth-separator {
    width: 60px;
    height: 1px;
    background-color: var(--color-border);
    margin: 15px 0;
  }
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 20px;
  position: relative;
}

.section-content {
  max-width: 1200px;
  width: 100%;
  z-index: 2;
  text-align: center;
}

.section-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.section-subtitle {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 50px auto;
  color: var(--color-text-muted);
}


.btn-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 40px;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition-speed) ease;
}

.btn-primary {
  background-color: var(--color-text);
  color: var(--color-bg);
  border: 1px solid var(--color-text);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--color-text);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-text);
}

.btn-outline:hover {
  background-color: var(--color-text);
  color: var(--color-bg);
}

#hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop') center/cover no-repeat;
  text-align: center;
}

#hero .section-title {
  font-weight: 700;
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.3s;
}

#hero .section-subtitle {
  font-size: 1.45rem;
  color: #dddddd;
  max-width: 1150px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.6s;
}

#hero .btn-group {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards 0.9s;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  opacity: 0;
  animation-fill-mode: forwards;
  animation-delay: 1.5s;
}

.scroll-indicator svg {
  width: 24px;
  height: 24px;
  fill: white;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  40% {
    transform: translateY(-20px) translateX(-50%);
  }

  60% {
    transform: translateY(-10px) translateX(-50%);
  }
}


.brands-section {
  padding: 60px 20px;
  background-color: var(--color-bg);
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}

.brands-title {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.brands-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
}

.brand-item {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text-muted);
  opacity: 0.6;
  transition: opacity 0.3s, color 0.3s;
}

.brand-item:hover {
  opacity: 1;
  color: var(--color-text);
}


#expertise {
  padding: 100px 40px;
  background-color: var(--color-bg);
}

.expertise-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.expertise-left {
  position: relative;
}

.expertise-image-wrapper {
  position: relative;
  border-radius: 20px;
}

.expertise-main-img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.expertise-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.expertise-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
  font-weight: 700;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.expertise-title {
  font-size: 3.5rem;
  line-height: 1.1;
  text-align: left;
  margin-bottom: 0;
}

.expertise-title span {
  display: block;
  color: var(--color-text-muted);
}

.expertise-desc {
  font-size: 1.05rem;
  text-align: left;
  margin: 0;
}

.expertise-content-bottom {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  margin-top: 10px;
}

.expertise-list-wrapper h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-align: left;
  font-weight: 600;
}

.expertise-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 0;
}

.expertise-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: #fff;
}

.expertise-list i {
  color: #ffffff;
  font-size: 1rem;
}

.expertise-cta-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}

.expertise-cta-card h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  line-height: 1.4;
  color: #fff;
  font-weight: 600;
}

.expertise-cta-card p {
  font-size: 0.85rem;
  margin-bottom: 10px;
  color: var(--color-text-muted);
}

.expertise-cta-card .btn-text {
  color: #ffffff;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 992px) {
  .expertise-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .expertise-title {
    font-size: 2.8rem;
  }

  .expertise-content-bottom {
    grid-template-columns: 1fr;
  }
}

#services {
  background-color: var(--color-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background-color: var(--color-surface);
  padding: 40px 30px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  transition: transform var(--transition-speed) ease, border-color var(--transition-speed) ease;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #555555;
}

.service-icon {
  margin-bottom: 20px;
}

.service-icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--color-text);
  stroke-width: 1.5;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--color-text);
}

.service-card p {
  font-size: 0.95rem;
}


.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.portfolio-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

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

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

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  text-align: left;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

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

.portfolio-overlay h4 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 5px;
}

.portfolio-overlay p {
  color: var(--color-accent-end);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.advanced-footer {
  background-color: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 80px 40px 20px 40px;
  color: var(--color-text-muted);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-col p {
  font-size: 0.9rem;
  margin: 20px 0;
}

.footer-heading {
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 25px;
  text-transform: uppercase;
}


.footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-surface);
  color: var(--color-text-muted);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background-color: var(--color-text);
  color: var(--color-bg);
  transform: translateY(-3px);
}


.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links i {
  font-size: 0.6rem;
  color: var(--color-border);
  transition: transform 0.3s, color 0.3s;
}

.footer-links a:hover {
  color: var(--color-text);
}

.footer-links a:hover i {
  color: var(--color-accent-end);
  transform: translateX(3px);
}


.footer-newsletter p {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  margin-bottom: 30px;
}

.newsletter-form input {
  flex: 1;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-right: none;
  padding: 12px 20px;
  border-radius: 8px 0 0 8px;
  color: var(--color-text);
  font-family: var(--font-main);
  outline: none;
  transition: border-color 0.3s;
}

.newsletter-form input:focus {
  border-color: #444;
}

.newsletter-form button {
  background-color: var(--color-text);
  color: var(--color-bg);
  border: 1px solid var(--color-text);
  padding: 0 25px;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: transparent;
  color: var(--color-text);
}


.badges-title {
  font-size: 0.8rem;
  color: var(--color-text);
  margin-bottom: 10px !important;
}

.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted);
}


.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 25px;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: var(--color-text-muted);
}

.footer-legal a:hover {
  color: var(--color-text);
}


.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s ease;
  z-index: 999;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  background-color: var(--color-text);
  color: var(--color-bg);
}


@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  header {
    padding: 20px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 250px;
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease;
    border-left: 1px solid var(--color-border);
  }

  .nav-links.active {
    right: 0;
  }

  #hero .section-title {
    font-size: 3rem;
  }

  #hero .section-subtitle {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
  }

  .top-bar-container {
    padding: 0 20px;
  }

  .top-bar-left a span {
    display: none;

  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

#processes {
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
  background-color: #000000;
  background-image: radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
}

#processes .section-title,
#processes .section-subtitle {
  position: relative;
  z-index: 20;
}

#processes .section-subtitle {
  margin-bottom: 270px;

}

.processes-container {
  margin-top: 80px;
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 100px;
  z-index: 1;
}

.process-steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1;
  max-width: 180px;
  position: relative;
  height: 300px;
  padding-bottom: 20px;
}

.process-step.active {
  opacity: 1;
}

.step-image {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: auto;
  z-index: -1;
  pointer-events: none;
  opacity: 0.15;
  filter: brightness(0.1) grayscale(0);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  mask-image: linear-gradient(to bottom, black 30%, transparent 80%);
  -webkit-mask-image: linear-gradient(to bottom, black 30%, transparent 80%);
}

.process-step.active .step-image {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

.step-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.process-step .step-number {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--color-text);
  font-family: var(--font-main);
  opacity: 0.5;
  transition: opacity 0.4s;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.process-step.active .step-number {
  opacity: 1;
  color: #ffffff;
}

.process-step .step-name {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.process-details {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  width: 100%;
}

.detail-content-wrapper {
  flex: 1;
}

.detail-content {
  display: none;
  animation: processFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.detail-content.active {
  display: block;
}

.detail-content h3 {
  font-size: 3rem;
  margin-bottom: 25px;
  font-weight: 700;
  letter-spacing: -1px;
}

.detail-content p {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.process-next-btn,
.process-prev-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  font-size: 1.2rem;
}

.process-next-btn:hover,
.process-prev-btn:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #000000;
  transform: scale(1.1) rotate(0deg);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.15);
}

@keyframes processFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@media (max-width: 992px) {
  .process-steps {
    gap: 20px;
  }

  .process-step .step-number {
    font-size: 1.4rem;
  }

  .process-step .step-name {
    font-size: 0.7rem;
  }
}

@media (max-width: 768px) {
  .processes-container {
    gap: 60px;
  }

  .process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 25px;
  }

  .process-step {
    max-width: none;
    height: 200px;
  }

  .process-step .step-image {
    width: 170px;
  }

  .detail-content h3 {
    font-size: 2rem;
  }

  .process-details {
    flex-direction: column;
    gap: 30px;
  }

  .process-next-btn,
  .process-prev-btn {
    width: 60px;
    height: 60px;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  width: 100%;
}

.pricing-card {
  background-color: var(--color-surface);
  padding: 50px 30px;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  text-align: center;
  transition: all var(--transition-speed) ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: #444;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
  border-color: var(--color-text);
  background-color: #161616;
}

.pricing-card.featured::before {
  content: 'EN ÇOK TERCİH EDİLEN';
  position: absolute;
  top: 45px;
  right: -50px;
  background-color: var(--color-text);
  color: var(--color-bg);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 40px;
  transform: rotate(45deg);
}

.pricing-header h4 {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--color-text-muted);
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--color-text);
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
  text-align: left;
}

.pricing-features li {
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li i {
  color: var(--color-text);
  font-size: 0.8rem;
}

.pricing-card .btn {
  width: 100%;
}

.service-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.service-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.service-modal {
  background-color: #0a0a0a;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.service-modal-overlay.active .service-modal {
  transform: translateY(0);
}

.service-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 2;
}

.service-modal-close:hover {
  color: var(--color-text);
}

.service-modal-content {
  padding: 40px;
}

.service-modal-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.service-modal-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--color-text);
}

.service-modal-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 30px;
}

.service-modal-section-title {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: var(--color-text);
}

.service-modal-included {
  margin-bottom: 30px;
  border-left: 2px solid var(--color-border);
  padding-left: 20px;
}

.service-modal-included-item {
  margin-bottom: 15px;
}

.service-modal-included-item h5 {
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 5px;
}

.service-modal-included-item p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
}

.service-modal-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.service-modal-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-modal-tool {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.service-modal-results {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-modal-results li {
  font-size: 0.85rem;
  color: var(--color-text);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-modal-results li i {
  color: #ffffff;
}

.btn-gradient {
  background: #ffffff;
  color: #000000;
  border: 1px solid #ffffff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  background: transparent;
  color: #ffffff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .service-modal-content {
    padding: 20px;
  }

  .service-modal-columns {
    grid-template-columns: 1fr;
  }
}

.service-card {
  cursor: pointer;
}

.chatbot {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  transition: bottom 0.4s ease;
}

.chatbot.shifted {
  bottom: 90px;
}

.chatbot-toggle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--color-surface);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: all 0.4s ease;
  position: relative;
}

.chatbot-toggle:hover {
  transform: translateY(-5px);
  background-color: var(--color-text);
  color: var(--color-bg);
}

.chatbot-toggle::after {
  content: '';
  position: absolute;
  top: -1px;
  right: -1px;
  width: 12px;
  height: 12px;
  background-color: #22c55e;
  border-radius: 50%;
  border: 2px solid var(--color-bg);
}

.chatbot-window {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 380px;
  height: 520px;
  background-color: #0a0a0a;
  border: 1px solid #1f1f22;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.chatbot-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chatbot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background-color: #111111;
  border-bottom: 1px solid #1f1f22;
}

.chatbot-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.chatbot-header h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
}

.chatbot-status {
  font-size: 0.7rem;
  color: #888891;
  display: flex;
  align-items: center;
  gap: 5px;
}

.chatbot-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #22c55e;
  display: inline-block;
}

.chatbot-close {
  background: none;
  border: none;
  color: #888891;
  font-size: 1.1rem;
  cursor: pointer;
  transition: color 0.3s;
  padding: 4px;
}

.chatbot-close:hover {
  color: #ffffff;
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chatbot-messages::-webkit-scrollbar {
  width: 4px;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 10px;
}

.chatbot-msg {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
  animation: chatMsgIn 0.3s ease;
}

.chatbot-msg.bot {
  background-color: #1a1a1d;
  color: #e0e0e0;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chatbot-msg.user {
  background-color: #ffffff;
  color: #000000;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chatbot-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  animation: chatMsgIn 0.3s ease;
}

.chatbot-option-btn {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #333;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-main);
}

.chatbot-option-btn:hover {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.chatbot-typing {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  background-color: #1a1a1d;
  border-radius: 12px;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
  animation: chatMsgIn 0.3s ease;
}

.chatbot-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #666;
  animation: typingDot 1.4s infinite;
}

.chatbot-typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.chatbot-typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingDot {

  0%,
  60%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

@keyframes chatMsgIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

.chatbot-input-area {
  padding: 12px 16px;
  border-top: 1px solid #1f1f22;
  background-color: #111111;
}

.chatbot-back-btn {
  width: 100%;
  background: none;
  border: 1px solid #333;
  color: #888891;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-main);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.chatbot-back-btn:hover {
  color: #ffffff;
  border-color: #555;
}

@media (max-width: 480px) {
  .chatbot {
    bottom: 80px;
    right: 20px;
  }

  .chatbot-window {
    width: calc(100vw - 40px);
    height: 70vh;
    right: -10px;
  }
}

@media (pointer: fine) {

  body,
  html {
    cursor: none !important;
  }

  a,
  button,
  select,
  input,
  textarea,
  [role="button"],
  .service-card,
  .process-step,
  .chatbot-toggle,
  .chatbot-close,
  .chatbot-option-btn,
  .menu-toggle,
  .process-btn {
    cursor: none !important;
  }

  .custom-cursor {
    width: 6px;
    height: 6px;
    background-color: #ffffff;
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 999999;
    transition: width 0.2s, height 0.2s, background-color 0.2s;
  }

  .custom-cursor-follower {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 999998;
    transition: transform 0.08s ease-out, width 0.3s, height 0.3s, background-color 0.3s, border-color 0.3s;
  }

  .custom-cursor.hovered {
    width: 8px;
    height: 8px;
    background-color: #ffffff;
  }

  .custom-cursor-follower.hovered {
    width: 50px;
    height: 50px;
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.08);
  }

  .custom-cursor.active {
    transform: translate(-50%, -50%) scale(0.6);
  }

  .custom-cursor-follower.active {
    transform: translate(-50%, -50%) scale(1.3);
    background-color: rgba(255, 255, 255, 0.15);
  }
}

@media (pointer: coarse) {

  .custom-cursor,
  .custom-cursor-follower {
    display: none !important;
  }
}

/* ==========================================================================
   PREMIUM MONOCHROME FAQ ACCORDION
   ========================================================================== */
.faq-container {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 80px;
  text-align: left;
  align-items: start;
  width: 100%;
}

.faq-left {
  position: sticky;
  top: 120px;
}

.faq-contact-card:hover {
  border-color: rgba(255, 255, 255, 0.2) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}

.faq-contact-btn:hover {
  gap: 15px !important;
}

.faq-item {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.faq-item.active {
  border-color: #ffffff !important;
  background-color: rgba(255, 255, 255, 0.01) !important;
}

.faq-item.active .faq-trigger span:not(.faq-icon) {
  color: #ffffff !important;
}

.faq-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 50% !important;
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.65) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  background: transparent !important;
  flex-shrink: 0 !important;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg) !important;
  background: #ffffff !important;
  color: #000000 !important;
  border-color: #ffffff !important;
}

.faq-item.active .faq-icon i,
.faq-item.active .faq-icon svg,
.faq-item.active .faq-trigger .faq-icon i,
.faq-item.active .faq-trigger .faq-icon svg {
  color: #000000 !important;
  fill: #000000 !important;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

@media (max-width: 992px) {
  .faq-container {
    grid-template-columns: 1fr !important;
    gap: 50px !important;
  }

  .faq-left {
    position: relative !important;
    top: 0 !important;
  }
}

/* ==========================================================================
   PREMIUM BLOG CARDS SECTION
   ========================================================================== */
.blog-card {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4);
}

.blog-card:hover .blog-card-img {
  transform: scale(1.08);
  filter: grayscale(0%) !important;
}

.blog-card:hover h3 {
  color: #ffffff !important;
}

.blog-read-more:hover {
  gap: 14px !important;
}

.blog-read-more:hover i {
  transform: translateX(4px);
}

/* ==========================================================================
   PREMIUM CTA GLOW ANIMATION
   ========================================================================== */
@keyframes ctaGlowMove {
  0% {
    transform: translate(-50%, -50%) translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) translate(-40px, 30px) scale(1.15);
  }

  100% {
    transform: translate(-50%, -50%) translate(0, 0) scale(1);
  }
}

.cta-glow {
  animation: ctaGlowMove 15s ease-in-out infinite;
}

/* ==========================================================================
   RESPONSIVE CTA BANNER
   ========================================================================== */
@media (max-width: 992px) {
  .cta-container {
    flex-direction: column !important;
    text-align: center !important;
    gap: 30px !important;
  }

  .cta-text {
    max-width: 100% !important;
  }

  .cta-text h2 {
    font-size: 2.2rem !important;
  }
}

/* ==========================================================================
   GLOBAL VIEW LAYOUTS & BASE CLASSES
   ========================================================================== */
.page-header {
    padding: 180px 20px 80px 20px;
    text-align: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.page-header-about {
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2069&auto=format&fit=crop');
}
.page-header-services {
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=2072&auto=format&fit=crop');
}
.page-header-references {
    background-image: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?q=80&w=2015&auto=format&fit=crop');
    border-bottom: 1px solid var(--color-border);
}
.page-header-blog {
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1499750310107-5fef28a66643?q=80&w=2070&auto=format&fit=crop');
}
.page-header-contact {
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2069&auto=format&fit=crop');
}

.detail-page-header {
    position: relative;
    padding: 200px 20px 100px 20px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(7, 22, 37, 0.5), rgba(0, 0, 0, 0.98)), url('https://images.unsplash.com/photo-1506318137071-a8e063b4bec0?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
    border-bottom: 1px solid var(--color-border);
    overflow: hidden;
}
.detail-page-header h1 {
    position: relative;
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.35;
    max-width: 1000px;
    margin: 0 auto 25px auto;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 255, 255, 0.1);
    letter-spacing: -0.5px;
}
.detail-page-header-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 150, 255, 0.08) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    filter: blur(50px);
}
.detail-breadcrumb {
    position: relative;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    letter-spacing: 0.5px;
}
.detail-breadcrumb a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}
.detail-breadcrumb a:hover {
    color: #fff;
}
.detail-breadcrumb span.separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.2);
}
.detail-breadcrumb span.current {
    color: #fff;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.content-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.content-section-large-padding {
    padding: 100px 20px;
}

.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ==========================================================================
   HOME PAGE
   ========================================================================== */
.brands-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(to right, transparent, #000 150px, #000 calc(100% - 150px), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 150px, #000 calc(100% - 150px), transparent);
}
.brands-marquee-track {
    display: flex;
    width: max-content;
    gap: 80px;
    align-items: center;
    animation: marqueeScroll 25s linear infinite;
}
.brands-marquee-track:hover {
    animation-play-state: paused;
}
@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.homepage-brand-logo-svg svg {
    height: 35px;
    width: auto;
    max-width: 140px;
    fill: currentColor;
    display: block;
}
.brand-item-link {
    color: rgba(255, 255, 255, 0.35);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.brand-item-link:hover {
    color: #fff !important;
    transform: scale(1.05);
}
.brand-item-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.brand-empty-placeholder {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.35);
    width: 100%;
    text-align: center;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
    padding: 20px 0;
}
.services-cta-wrapper {
    margin-top: 50px;
}
.faq-left-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.faq-left-title {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: left;
    line-height: 1.1;
}
.faq-left-desc {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}
.faq-contact-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 35px;
    text-align: left;
    transition: all 0.3s ease;
}
.faq-contact-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}
.faq-contact-card p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 25px;
    line-height: 1.5;
}
.faq-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #fff;
    padding-bottom: 4px;
    transition: gap 0.3s ease;
}
.faq-contact-btn:hover {
    gap: 14px;
}
.faq-contact-btn i {
    font-size: 0.85rem;
}
.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}
.faq-accordion-item {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background-color: var(--color-surface);
    overflow: hidden;
    text-align: left;
}
.faq-trigger-btn {
    width: 100%;
    padding: 30px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #fff;
    transition: background-color 0.3s ease;
}
.faq-trigger-title {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    padding-right: 30px;
    line-height: 1.4;
}
.faq-answer-inner {
    padding: 0 30px 30px 30px;
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    margin: 0;
    border-top: 1px solid rgba(255,255,255,0.02);
    padding-top: 20px;
}
.recent-blog-title {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}
.recent-blog-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto 60px auto;
    line-height: 1.7;
}
.recent-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    text-align: left;
    margin-bottom: 60px;
}
.recent-blog-card {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background-color: var(--color-surface);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.recent-blog-img-box {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}
.recent-blog-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(100%);
}
.recent-blog-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.recent-blog-date {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 12px;
    font-weight: 500;
}
.recent-blog-h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    transition: color 0.3s ease;
}
.recent-blog-excerpt {
    color: var(--color-text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.recent-blog-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    color: #fff;
    transition: gap 0.3s ease;
}
.recent-blog-btn:hover {
    gap: 14px;
}
.recent-blog-btn i {
    transition: transform 0.3s ease;
}
.recent-blog-btn:hover i {
    transform: translateX(4px);
}
.recent-blog-empty {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--color-text-muted);
    padding: 40px;
    border: 1px dashed var(--color-border);
}
.recent-blog-see-all {
    display: inline-block;
    padding: 16px 36px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}
.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    text-align: left;
    position: relative;
    z-index: 2;
}
.cta-text {
    flex: 1;
    max-width: 750px;
}
.cta-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}
.cta-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
}
.cta-button {
    flex-shrink: 0;
}
.cta-button a {
    padding: 16px 42px;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    display: inline-block;
}
.faq-section {
    padding: 120px 0;
}
.faq-section-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
}
.recent-blog-section {
    padding: 120px 0;
    border-top: 1px solid var(--color-border);
}
.recent-blog-section-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    text-align: center;
}
.cta-section {
    padding: 100px 0;
    background: linear-gradient(rgba(10, 15, 30, 0.82), rgba(5, 5, 10, 0.94)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    border-top: 1px solid var(--color-border);
    position: relative;
    overflow: hidden;
}


/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-grid-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}
.about-text-content {
    display: flex;
    flex-direction: column;
}
.about-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 25px;
}
.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--color-text);
}
.about-text {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--color-text-muted);
    text-align: justify;
    margin-bottom: 20px;
}
.about-text.no-margin {
    margin-bottom: 0;
}
.about-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border: 1px solid var(--color-border);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.about-image:hover {
    border-color: var(--color-text);
    transform: scale(1.02);
}
.vm-section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}
.vm-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--color-border);
    padding: 50px 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--color-text);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.vm-card:hover::before {
    transform: scaleX(1);
}
.vm-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.02);
    border-color: var(--color-text);
    box-shadow: 0 15px 35px rgba(0, 150, 255, 0.12);
}
.vm-card-icon {
    width: 48px;
    height: 48px;
    fill: none;
    stroke: var(--color-text);
    stroke-width: 1.5;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}
.vm-card:hover .vm-card-icon {
    stroke: var(--color-text);
    transform: scale(1.1) rotate(5deg);
}
.vm-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: -0.3px;
}
.vm-card p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-text-muted);
    margin: 0;
    text-align: justify;
}
.vm-section-wrapper {
    margin-top: 120px;
}
.team-section-wrapper {
    margin-top: 120px;
}
.team-section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.team-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--color-border);
    padding: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-text);
    box-shadow: 0 15px 35px rgba(0, 150, 255, 0.15);
}
.team-img-box {
    width: 100%;
    height: 320px;
    overflow: hidden;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}
.team-card:hover .team-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}
.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}
.team-role {
    font-size: 0.85rem;
    color: var(--color-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.team-socials {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}
.team-social-link {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
    transition: all 0.3s ease;
}
.team-social-link:hover {
    color: var(--color-text);
    transform: translateY(-2px);
}
@media (max-width: 992px) {
    .about-grid-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .vision-mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .team-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================================================
   REFERENCES PAGES
   ========================================================================== */
.references-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 20px;
}
.reference-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    cursor: pointer;
}
.reference-card-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: #000;
}
.reference-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.reference-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: background 0.4s ease;
    z-index: 2;
}
.brand-overlay-logo {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.brand-overlay-logo svg {
    max-width: 150px;
    max-height: 70px;
    fill: currentColor;
    color: #fff;
}
.reference-card:hover .reference-card-img {
    transform: scale(1.05);
}
.reference-card:hover .reference-card-overlay {
    background: rgba(0, 0, 0, 0.3);
}
.reference-card:hover .brand-overlay-logo {
    transform: scale(1.08);
}
.reference-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin-top: 18px;
    margin-bottom: 5px;
    font-family: 'Outfit', 'Inter', sans-serif;
    transition: color 0.3s ease;
}
.reference-card:hover .reference-card-title {
    color: #fff;
}
.reference-card-category {
    font-size: 0.9rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}
.brand-overlay-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
}
.references-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--color-text-muted);
    padding: 60px 40px;
    border: 1px dashed var(--color-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.01);
    font-size: 1.05rem;
}
.references-empty-state i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.1);
    display: block;
    margin-bottom: 15px;
}
@media (max-width: 992px) {
    .references-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}
@media (max-width: 600px) {
    .references-grid-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================================================
   REFERENCE & BLOG DETAIL PAGE SIDEBAR & ARTICLES
   ========================================================================== */
.back-to-all-wrapper {
    margin-top: 20px;
}
.sidebar-empty-text {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}
.btn-back-to-all {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 14px 28px;
    border: 1px solid var(--color-border);
    color: #fff;
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    border-radius: 0px;
}
.btn-back-to-all:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: translateY(-2px);
}
.blog-layout-container {
    display: flex;
    gap: 50px;
    margin-top: 40px;
}
.blog-main-content {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.blog-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: sticky;
    top: 120px;
    height: fit-content;
}
.article-container {
    background: transparent;
}
.article-header-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
    border: 1px solid var(--color-border);
    margin-bottom: 30px;
}
.article-body {
    font-size: 1.1rem;
    line-height: 1.85;
    color: var(--color-text-muted);
}
.article-body p {
    margin-bottom: 25px;
    text-align: justify;
}
.article-body blockquote {
    margin: 40px 0;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.01);
    border-left: 3px solid var(--color-text);
    font-size: 1.25rem;
    font-style: italic;
    color: #fff;
    line-height: 1.6;
}
.sidebar-widget {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--color-border);
    padding: 30px;
}
.widget-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 12px;
}
.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--color-text);
}
.project-meta-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.project-meta-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 15px;
}
.project-meta-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.project-meta-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
    letter-spacing: 1px;
}
.project-meta-value {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
}
.share-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}
.share-btn:hover {
    color: #fff;
    transform: translateY(-2px);
}
.share-btn.facebook:hover {
    background: #3b5998;
    border-color: #3b5998;
    box-shadow: 0 5px 15px rgba(59, 89, 152, 0.4);
}
.share-btn.twitter:hover {
    background: #000;
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}
.share-btn.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}
.share-btn.email:hover {
    background: #003366;
    border-color: #003366;
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.4);
}
.project-meta-value a {
    color: var(--color-text);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
    font-weight: 600;
}
.project-meta-value a:hover {
    opacity: 0.8;
}
.project-meta-value a i {
    font-size: 0.75rem;
}
.share-btn svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
    display: block;
}

.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.recent-post-item {
    display: flex;
    gap: 15px;
    align-items: center;
    text-decoration: none;
}
.recent-post-img-box,
.recent-post-img-wrapper {
    width: 65px;
    height: 65px;
    overflow: hidden;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.recent-post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}
.recent-post-item:hover .recent-post-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}
.recent-post-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.recent-post-date {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}
.recent-post-title {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}
.recent-post-item:hover .recent-post-title {
    color: #fff;
}
@media (max-width: 992px) {
    .blog-layout-container {
        flex-direction: column;
    }
    .blog-sidebar {
        position: static;
        width: 100%;
    }
    .article-header-img {
        height: 320px;
    }
}

/* ==========================================================================
   BLOG PAGE (LISTING)
   ========================================================================== */
.blog-large-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    border-radius: 0px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.blog-large-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.blog-large-card-img-wrapper {
    width: 100%;
    height: 340px;
    overflow: hidden;
    position: relative;
}
.blog-large-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: grayscale(100%);
}
.blog-large-card:hover .blog-large-card-img {
    transform: scale(1.05);
    filter: grayscale(0%);
}
.search-box-wrapper {
    position: relative;
    width: 100%;
}
.search-input {
    width: 100%;
    padding: 16px 50px 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    border-radius: 0px;
    transition: all 0.3s ease;
}
.search-input:focus {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.04);
}
.search-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.1rem;
    pointer-events: none;
}
.social-follow-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.social-follow-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--color-border);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.social-follow-left {
    display: flex;
    align-items: center;
    gap: 15px;
}
.social-follow-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 1.15rem;
    color: #fff;
    transition: all 0.3s ease;
}
.social-follow-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.social-follow-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
}
.social-follow-handle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}
.social-follow-card.instagram:hover {
    background: rgba(225, 48, 108, 0.05);
    border-color: rgba(225, 48, 108, 0.3);
    box-shadow: 0 10px 20px rgba(225, 48, 108, 0.1);
}
.social-follow-card.instagram:hover .social-follow-icon-box {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    border-color: transparent;
}
.social-follow-card.facebook:hover {
    background: rgba(24, 119, 242, 0.05);
    border-color: rgba(24, 119, 242, 0.3);
    box-shadow: 0 10px 20px rgba(24, 119, 242, 0.1);
}
.social-follow-card.facebook:hover .social-follow-icon-box {
    background: #1877f2;
    border-color: transparent;
}
.social-follow-card.twitter:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
}
.social-follow-card.twitter:hover .social-follow-icon-box {
    background: #000;
    border-color: rgba(255, 255, 255, 0.2);
}
.social-follow-card:hover .social-follow-arrow {
    opacity: 1 !important;
    transform: translateX(0) !important;
    color: #fff !important;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */
.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.contact-info-block h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}
.contact-info-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-text-muted);
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.info-item i {
    font-size: 1.5rem;
    margin-top: 5px;
    color: var(--color-text);
}
.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
}
.info-item p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin: 0;
}
.info-item p a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}
.info-item p a:hover {
    color: #fff;
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    color: var(--color-text);
    outline: none;
    font-family: var(--font-main);
    transition: border-color 0.3s ease, background-color 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.03);
}
.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}
.form-alert {
    display: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
    transition: all 0.3s ease;
}
.form-alert.alert-success {
    background-color: rgba(46, 213, 115, 0.1);
    border: 1px solid rgba(46, 213, 115, 0.3);
    color: #2ed573;
}
.form-alert.alert-danger {
    background-color: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    color: #ff4757;
}

/* Additional Page Cleanup Consolidation Styles */
.blog-card-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-card-date {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.blog-card-title {
    font-size: 1.8rem;
    margin-bottom: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.blog-card-excerpt {
    color: var(--color-text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 1rem;
}
.blog-empty-state {
    text-align: center;
    color: var(--color-text-muted);
    padding: 40px;
    border: 1px dashed var(--color-border);
}
.social-follow-arrow {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.4);
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}
.recaptcha-wrapper {
    margin: 5px 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}
.btn-submit {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
}
.detail-footer {
    margin-top: 50px;
    border-top: 1px solid var(--color-border);
    padding-top: 40px;
}
.meta-separator {
    margin: 0 8px;
    opacity: 0.3;
}
.btn-text {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    color: #fff;
    transition: gap 0.3s ease;
}
.btn-text:hover {
    gap: 12px;
}
.btn-text i {
    transition: transform 0.3s ease;
}
.btn-text:hover i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}