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

:root {
  --primary: #ff4655;
  --bg-dark: #0f1923;
  --bg-card: #1c252e;
  --text-light: #cbd5e1;
  --text-muted: #94a3b8;
  --text-white: #ffffff;
  --border-light: rgba(255, 255, 255, 0.1);
  --border-medium: rgba(255, 255, 255, 0.2);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-light);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
.font-display {
  font-family: "Rajdhani", sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

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

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

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

::-webkit-scrollbar-thumb {
  background: #374151;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

::selection {
  background: var(--primary);
  color: var(--text-white);
}

.valorant-clip {
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 20px),
    calc(100% - 20px) 100%,
    0 100%
  );
}

.valorant-btn-clip {
  clip-path: polygon(
    10px 0,
    100% 0,
    100% calc(100% - 10px),
    calc(100% - 10px) 100%,
    0 100%,
    0 10px
  );
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    linear-gradient(#334155 1px, transparent 1px),
    linear-gradient(90deg, #334155 1px, transparent 1px);
  background-size: 50px 50px;
}

.bg-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(15, 25, 35, 0.8),
    var(--bg-dark)
  );
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  border-bottom: 1px solid var(--border-light);
  background-color: rgba(15, 25, 35, 0.8);
  backdrop-filter: blur(12px);
}

.nav-container {
  display: flex;
  height: 80px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.nav-logo:hover .logo-box {
  transform: scale(1.05);
}

.nav-logo:hover .logo-text {
  color: var(--primary);
}

.logo-box {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.logo-text {
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: var(--text-white);
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: "Rajdhani", sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 0;
  width: 0;
  height: 4px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

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

.nav-cta {
  padding: 8px 24px;
  border: 1px solid var(--border-medium);
  color: var(--text-white);
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-cta:hover {
  background-color: var(--text-white);
  color: #000;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-decorative-lines {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  flex-direction: column;
  gap: 16px;
}

.hero-line-primary {
  width: 4px;
  height: 80px;
  background-color: var(--primary);
}

.hero-line-secondary {
  width: 4px;
  height: 16px;
  background-color: var(--border-medium);
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 12px;
  border: 1px solid rgba(255, 70, 85, 0.3);
  background-color: rgba(255, 70, 85, 0.1);
  color: var(--primary);
  font-size: 14px;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  width: fit-content;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-title {
  font-size: 48px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.hero-title .gradient-text {
  background: linear-gradient(
    to right,
    var(--text-white),
    rgba(255, 255, 255, 0.4)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title .accent-text {
  color: var(--primary);
}

.hero-description {
  font-size: 20px;
  color: var(--text-muted);
  font-weight: 300;
  max-width: 560px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 16px;
}

.btn-primary {
  position: relative;
  padding: 16px 32px;
  background-color: var(--primary);
  color: var(--text-white);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--text-white);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  mix-blend-mode: overlay;
}

.btn-primary:hover::before {
  transform: translateX(0);
}

.btn-primary:hover .btn-icon {
  transform: translateX(4px);
}

.btn-icon {
  transition: transform 0.3s ease;
}

.btn-secondary {
  padding: 16px 32px;
  border: 1px solid var(--border-medium);
  color: var(--text-white);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--text-white);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 32px;
  opacity: 0.6;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: var(--text-white);
}

.stat-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background-color: var(--border-medium);
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top right,
    rgba(255, 70, 85, 0.2),
    transparent
  );
  border-radius: 50%;
  filter: blur(48px);
  transform: translateY(40px);
}

.hero-image-container {
  position: relative;
  width: 100%;
  max-width: 512px;
  aspect-ratio: 4/5;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  border: 1px solid var(--border-light);
  padding: 8px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  filter: grayscale(100%);
  transition: filter 0.7s ease;
}

.hero-image:hover {
  filter: grayscale(0%);
}

.hero-floating-badge {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background-color: var(--bg-dark);
  border: 1px solid var(--border-medium);
  padding: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 16px;
}

.badge-indicator {
  width: 12px;
  height: 12px;
  background-color: var(--primary);
  animation: pulse 2s infinite;
}

.badge-content {
  display: flex;
  flex-direction: column;
}

.badge-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.badge-value {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-white);
}

/* ===== SKILLS TICKER ===== */
.skills-ticker {
  width: 100%;
  background-color: var(--primary);
  padding: 16px 0;
  overflow: hidden;
  transform: skewY(-1deg);
  position: relative;
  z-index: 20;
  box-shadow: 0 25px 50px -12px rgba(255, 70, 85, 0.2);
}

.ticker-content {
  display: flex;
  gap: 48px;
  align-items: center;
  white-space: nowrap;
  text-transform: uppercase;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  color: #000;
  letter-spacing: 0.15em;
  font-size: 20px;
  animation: ticker 20s linear infinite;
}

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

/* ===== ABOUT SECTION ===== */
.about {
  padding: 96px 0;
  position: relative;
  z-index: 10;
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-grid {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.about-left {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.about-title {
  font-size: 48px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
}

.about-title .gradient-text {
  background: linear-gradient(to right, var(--primary), #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-description {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Skill Bars */
.skill-bars {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 16px;
}

.skill-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skill-header {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.skill-percentage {
  color: var(--primary);
}

.skill-bar-bg {
  height: 8px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
}

.skill-bar-fill {
  height: 100%;
  transition: width 1s ease;
}

.skill-bar-fill.primary {
  background-color: var(--primary);
}

.skill-bar-fill.white {
  background-color: var(--text-white);
}

/* Tools Grid */
.about-right {
  width: 100%;
}

.tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.tool-card {
  position: relative;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  padding: 24px;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.tool-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.tool-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--primary);
  transition: height 0.3s ease;
}

.tool-card:hover::before {
  height: 100%;
}

.tool-icon {
  width: 32px;
  height: 32px;
  color: var(--text-white);
  margin-bottom: 16px;
}

.tool-title {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.tool-description {
  font-size: 14px;
  color: var(--text-muted);
}

/* ===== PROCESS SECTION ===== */
.process {
  padding: 96px 0;
  background-color: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.process-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  color: var(--primary);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-title {
  font-size: 40px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  margin-top: 8px;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.process-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--border-light);
  background-color: var(--bg-dark);
  transition: border-color 0.3s ease;
  height: 100%;
}

.process-card:hover {
  border-color: var(--primary);
}

.process-card:hover .process-icon-wrapper {
  background-color: var(--primary);
}

.process-card:hover .process-number {
  color: rgba(255, 70, 85, 0.2);
}

.process-number {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 36px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  transition: color 0.3s ease;
}

.process-icon-wrapper {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  margin-bottom: 24px;
  transition: background-color 0.3s ease;
}

.process-icon {
  width: 24px;
  height: 24px;
  color: var(--text-white);
}

.process-title {
  font-size: 20px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.process-description {
  font-size: 16px;
  color: var(--text-muted);
}

/* ===== WORKS/PROJECTS SECTION ===== */
.works {
  padding: 96px 0;
}

.works-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.works-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
}

.works-filters {
  display: flex;
  gap: 8px;
}

.filter-btn {
  padding: 8px 16px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active {
  background-color: var(--text-white);
  color: #000;
  border: none;
}

.filter-btn:not(.active) {
  background: transparent;
  border: 1px solid var(--border-medium);
  color: var(--text-muted);
}

.filter-btn:not(.active):hover {
  color: var(--text-white);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.project-card {
  position: relative;
  background-color: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s ease;
}

.project-card:hover {
  border-color: rgba(255, 70, 85, 0.5);
}

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

.project-card:hover .project-image-overlay {
  background-color: transparent;
}

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

.project-image-wrapper {
  height: 256px;
  overflow: hidden;
  position: relative;
}

.project-image-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 10;
  transition: background-color 0.3s ease;
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project-content {
  padding: 32px;
  position: relative;
}

.project-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  border-top: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.project-title {
  font-size: 24px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
}

.project-category {
  color: var(--primary);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-top: 4px;
}

.project-link {
  padding: 8px;
  border: 1px solid var(--border-medium);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-link:hover {
  background-color: var(--text-white);
  color: #000;
}

.project-link svg {
  width: 20px;
  height: 20px;
}

.project-description {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.project-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.project-tag {
  padding: 4px 8px;
  background-color: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  color: var(--text-light);
  font-family: monospace;
  border: 1px solid var(--border-light);
}

.works-footer {
  text-align: center;
  margin-top: 48px;
}

.works-footer p {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 14px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
  padding: 96px 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.4));
}

.testimonials-container {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 24px;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-title {
  font-size: 40px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
}

.testimonials-subtitle {
  color: var(--text-muted);
  margin-top: 16px;
  font-size: 18px;
}

.testimonial-card {
  position: relative;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(8px);
}

.testimonial-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background-color: var(--primary);
}

.testimonial-content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.testimonial-quote-icon {
  width: 40px;
  height: 40px;
  color: var(--primary);
  fill: currentColor;
  opacity: 0.5;
  flex-shrink: 0;
}

.testimonial-text {
  font-size: 20px;
  color: #e2e8f0;
  line-height: 1.6;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 24px;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  background-color: #475569;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-avatar svg {
  color: var(--text-muted);
}

.author-name {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  color: var(--text-white);
  font-size: 18px;
  text-transform: uppercase;
}

.author-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
}

.testimonial-dot.active {
  background-color: var(--primary);
}

.testimonial-dot:not(.active) {
  background-color: var(--border-medium);
}

.testimonial-dot:not(.active):hover {
  background-color: var(--text-white);
}

/* ===== FOOTER/CONTACT ===== */
.footer {
  padding-top: 96px;
  padding-bottom: 48px;
  border-top: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}

.footer-header {
  text-align: center;
  margin-bottom: 64px;
}

.footer-title {
  font-size: 48px;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.footer-subtitle {
  font-size: 20px;
  color: var(--text-muted);
  margin-top: 16px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 80px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-light);
  transition: border-color 0.3s ease;
}

.contact-card:hover {
  border-color: var(--primary);
}

.contact-card:hover .contact-icon-wrapper {
  transform: scale(1.1);
}

.contact-card:hover .contact-value {
  color: var(--text-white);
}

.contact-icon-wrapper {
  width: 56px;
  height: 56px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.contact-icon {
  width: 24px;
  height: 24px;
}

.contact-label {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  color: var(--text-white);
  text-transform: uppercase;
  font-size: 18px;
  margin-bottom: 4px;
}

.contact-value {
  font-size: 18px;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--border-light);
  padding-top: 32px;
}

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

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

.social-link {
  color: var(--text-muted);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.15em;
  font-weight: 600;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--primary);
}

.back-to-top {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background-color: var(--text-white);
  color: #000;
}

/* ===== RESPONSIVE STYLES ===== */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero-image-wrapper {
    justify-content: flex-end;
  }

  .about-grid {
    flex-direction: row;
  }

  .about-left {
    width: 33.333%;
  }

  .about-right {
    width: 66.666%;
  }

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

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

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

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

  .works-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

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

  .testimonial-text {
    font-size: 24px;
  }
}

@media (min-width: 1024px) {
  .hero-decorative-lines {
    display: flex;
  }

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

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

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