/* ===== CSS Variables ===== */
:root {
  --primary-color: #f0b429;
  --primary-dark: #c98f0a;
  --primary-light: #ffd25e;
  --secondary-color: #ff9d2e;
  --accent-color: #f43f5e;
  --text-dark: #0f172a;
  --text-medium: #334155;
  --text-light: #64748b;
  --text-muted: #94a3b8;
  --text-white: #ffffff;
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-dark: #0b0b0e;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-md:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-lg:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 40px rgba(240, 180, 41, 0.3);
  --transition-fast: all 0.2s ease;
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

::selection {
  background: var(--primary-color);
  color: var(--text-white);
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}

/* ===== Custom Cursor ===== */
.cursor-dot,
.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  pointer-events: none;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  transition:
    width 0.2s,
    height 0.2s,
    background 0.2s;
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary-color);
  opacity: 0.5;
  transition:
    width 0.3s,
    height 0.3s,
    opacity 0.3s,
    border-color 0.3s;
}

body:hover .cursor-outline {
  opacity: 0.5;
}

/* Hide custom cursor on touch devices */
@media (hover: none) {
  .cursor-dot,
  .cursor-outline {
    display: none;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 100%
  );
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(240, 180, 41, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(240, 180, 41, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  border-color: var(--primary-color);
  background: var(--primary-color);
  color: var(--text-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--text-white);
  transform: translateY(-3px);
}

.btn-full {
  width: 100%;
}

/* ===== Section Headers ===== */
.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-tag {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(240, 180, 41, 0.1);
  color: var(--primary-color);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  padding: 15px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 2px;
}

.logo-bracket {
  color: var(--primary-color);
  font-weight: 400;
}

.logo-accent {
  color: var(--primary-color);
}

.navbar.scrolled .logo {
  color: var(--text-dark);
}

.nav-links {
  display: flex;
  gap: 40px;
}

.nav-links a {
  color: var(--text-white);
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  padding: 5px 0;
}

.navbar.scrolled .nav-links a {
  color: var(--text-dark);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1001;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: var(--text-white);
  transition: var(--transition);
  border-radius: 2px;
}

.navbar.scrolled .hamburger span {
  background: var(--text-dark);
}

/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    #0a0a0c 0%,
    #1a1408 50%,
    #0a0a0c 100%
  );
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-color);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: var(--secondary-color);
  bottom: 10%;
  left: -50px;
  animation-delay: -5s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: var(--accent-color);
  top: 40%;
  right: 20%;
  animation-delay: -10s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-full);
  color: #10b981;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-greeting {
  color: var(--primary-light);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 12px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
  line-height: 1.05;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.title-line {
  display: block;
}

.title-line:last-child {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-role {
  font-size: 1.5rem;
  font-weight: 500;
  color: #94a3b8;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.role-prefix {
  color: #64748b;
}

.role-text {
  color: var(--primary-light);
  font-weight: 600;
}

.role-cursor {
  color: var(--primary-color);
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

.hero-description {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
  animation: fadeInUp 0.8s ease 0.8s both;
}

.hero-socials {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease 1s both;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.social-link:hover {
  border-color: transparent;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(240, 180, 41, 0.3);
}

.social-link:hover::before {
  opacity: 1;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  animation: fadeInUp 0.8s ease 1.2s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: #64748b;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeInUp 0.8s ease 1.5s both;
}

.scroll-indicator a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #64748b;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mouse {
  width: 26px;
  height: 40px;
  border: 2px solid #64748b;
  border-radius: 13px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: #64748b;
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% {
    top: 8px;
    opacity: 1;
  }
  100% {
    top: 20px;
    opacity: 0;
  }
}

/* ===== About Section ===== */
.about {
  padding: 120px 0;
  background: var(--bg-light);
  position: relative;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  position: relative;
  display: inline-block;
}

.profile-img {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.image-border {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary-color);
  border-radius: var(--radius-lg);
  z-index: 0;
  transition: var(--transition);
}

.about-image:hover .profile-img {
  transform: translate(-8px, -8px);
}

.about-image:hover .image-border {
  transform: translate(8px, 8px);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--text-white);
  padding: 20px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 2;
  text-align: center;
  min-width: 120px;
}

.exp-number {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.exp-text {
  display: block;
  font-size: 0.8rem;
  opacity: 0.9;
  margin-top: 4px;
  line-height: 1.3;
}

.about-text h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--text-dark);
  line-height: 1.3;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.05rem;
}

.about-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--bg-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.info-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.info-item > i {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(240, 180, 41, 0.1);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.info-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-value {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.status-available {
  color: #10b981;
}

.about-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

/* ===== Skills Section ===== */
.skills {
  padding: 120px 0;
  background: var(--bg-white);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.skill-card {
  background: var(--bg-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.skill-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.skill-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.skill-card:hover::before {
  transform: scaleX(1);
}

.skill-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.skill-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: linear-gradient(
    135deg,
    rgba(240, 180, 41, 0.1),
    rgba(14, 165, 233, 0.1)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.8rem;
  position: relative;
  z-index: 1;
}

.skill-progress {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.skill-progress::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-white);
}

.skill-info h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  color: var(--text-dark);
  font-weight: 600;
}

.skill-info p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.skill-percent {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
  background: rgba(240, 180, 41, 0.1);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

/* ===== Projects Section ===== */
.projects {
  padding: 120px 0;
  background: var(--bg-light);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.project-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.project-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .project-img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(240, 180, 41, 0.9),
    rgba(14, 165, 233, 0.9)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-links {
  display: flex;
  gap: 16px;
}

.project-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-white);
  font-size: 1.3rem;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

.project-link span {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-card:hover .project-link {
  transform: translateY(0);
  opacity: 1;
}

.project-card:hover .project-link:nth-child(2) {
  transition-delay: 0.1s;
}

.project-link:hover {
  color: var(--text-dark);
}

.project-info {
  padding: 28px;
}

.project-info h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-dark);
  font-weight: 600;
}

.project-info p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-tags span {
  padding: 6px 14px;
  background: var(--bg-light);
  color: var(--primary-color);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
}

.project-tags span:hover {
  background: var(--primary-color);
  color: var(--text-white);
}

/* ===== Contact Section ===== */
.contact {
  padding: 120px 0;
  background: var(--bg-white);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-card {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1e293b 100%);
  padding: 50px;
  border-radius: var(--radius-xl);
  color: var(--text-white);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.contact-card > p {
  color: #94a3b8;
  margin-bottom: 40px;
  line-height: 1.8;
  font-size: 1.05rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-item:hover .contact-icon {
  background: var(--primary-color);
  color: var(--text-white);
  border-color: var(--primary-color);
}

.contact-detail {
  display: flex;
  flex-direction: column;
}

.contact-detail span {
  font-size: 0.8rem;
  color: #64748b;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-detail a,
.contact-detail p {
  color: var(--text-white);
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
}

.contact-detail a:hover {
  color: var(--primary-light);
}

.contact-socials {
  display: flex;
  gap: 12px;
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-socials a {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.1rem;
  transition: var(--transition);
}

.contact-socials a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-light);
  padding: 50px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  position: relative;
  margin-bottom: 24px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 18px 16px 48px;
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--bg-white);
  transition: var(--transition);
  resize: vertical;
}

.form-group textarea {
  min-height: 140px;
  padding-top: 20px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(240, 180, 41, 0.1);
}

.form-group label {
  position: absolute;
  left: 48px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 0.95rem;
  pointer-events: none;
  transition: var(--transition);
  background: var(--bg-white);
  padding: 0 6px;
}

.form-group textarea ~ label {
  top: 28px;
  transform: translateY(-50%);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: 0;
  font-size: 0.8rem;
  color: var(--primary-color);
  font-weight: 600;
}

.form-group > i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group textarea ~ i {
  top: 28px;
  transform: translateY(-50%);
}

.form-group input:focus ~ i,
.form-group textarea:focus ~ i {
  color: var(--primary-color);
}

/* Form Status Messages */
.form-status {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  animation: fadeInUp 0.4s ease;
}

.form-status.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.form-status.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* Submit Button States */
.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
}

.btn-loader {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 60px 0 30px;
}

.footer-content {
  text-align: center;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-white);
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 16px;
}

.footer-text {
  color: #64748b;
  margin-bottom: 24px;
  font-size: 1.05rem;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.footer-socials a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 1.1rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-white);
  transform: translateY(-4px);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  color: #475569;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.footer-bottom i {
  color: var(--accent-color);
}

/* ===== Scroll to Top ===== */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--text-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ===== Intersection Observer Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

  .contact-card {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    padding: 80px 40px;
    transition: var(--transition);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    color: var(--text-dark) !important;
    font-size: 1.2rem;
    font-weight: 600;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--text-dark) !important;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
    background: var(--text-dark) !important;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-role {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .about-info {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 30px;
  }

  .contact-card {
    padding: 30px;
  }

  .about-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .experience-badge {
    right: 0;
    bottom: -10px;
    padding: 15px 18px;
  }

  .exp-number {
    font-size: 1.5rem;
  }
}

/* ===== Logo in nav & hero ===== */
.nav-logo {
  height: 42px;
  width: 42px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 18px rgba(240, 180, 41, 0.35);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  font-size: 1.05rem;
  letter-spacing: 1px;
}

.logo-text .logo-accent {
  color: var(--primary-color);
  font-weight: 600;
}

.hero-brand {
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease both;
}

.hero-logo {
  width: 150px;
  border-radius: 16px;
  box-shadow: 0 0 50px rgba(240, 180, 41, 0.25);
}

/* ===== Services / Pricing Section (dark gold theme) ===== */
.services {
  padding: 120px 0;
  background: radial-gradient(
      circle at 80% 0%,
      rgba(240, 180, 41, 0.08) 0%,
      transparent 45%
    ),
    var(--bg-dark);
}

.services .section-title {
  color: var(--text-white);
}

.services .section-subtitle {
  color: #94a3b8;
}

.services .section-tag {
  background: rgba(240, 180, 41, 0.12);
  color: var(--primary-color);
  border: 1px solid rgba(240, 180, 41, 0.3);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}

.pricing-card {
  position: relative;
  background: #131316;
  border: 1px solid rgba(240, 180, 41, 0.15);
  border-radius: var(--radius-lg);
  padding: 36px 30px 0;
  transition: var(--transition);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(240, 180, 41, 0.5);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(240, 180, 41, 0.12);
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 2px;
}

.pricing-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  color: var(--text-white);
  margin: 8px 0 4px;
}

.pricing-desc {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-bottom: 20px;
  min-height: 40px;
}

.pricing-price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.pricing-price small {
  font-size: 0.9rem;
  -webkit-text-fill-color: #94a3b8;
}

.pricing-features {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.5;
}

.pricing-features li i {
  color: var(--primary-color);
  font-size: 0.8rem;
  margin-top: 4px;
}

.pricing-footer {
  margin: 0 -30px;
  padding: 16px 30px;
  background: linear-gradient(135deg, rgba(240, 180, 41, 0.18), rgba(255, 157, 46, 0.08));
  border-top: 1px solid rgba(240, 180, 41, 0.2);
  color: var(--primary-light);
  font-size: 0.85rem;
  font-weight: 600;
  font-style: italic;
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: -34px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #0b0b0e;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 40px;
  transform: rotate(45deg);
  box-shadow: var(--shadow-md);
}

.pricing-card.popular {
  border-color: var(--primary-color);
  box-shadow: 0 0 45px rgba(240, 180, 41, 0.18);
}

/* Add-ons */
.addons-header {
  text-align: center;
  margin-bottom: 40px;
}

.addons-header h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.6rem;
  color: var(--text-white);
}

.addons-header p {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-top: 6px;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 60px;
}

.addon-card {
  background: #131316;
  border: 1px solid rgba(240, 180, 41, 0.15);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}

.addon-card:hover {
  transform: translateY(-6px);
  border-color: rgba(240, 180, 41, 0.5);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.addon-card i {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 12px;
  display: inline-block;
}

.addon-card h4 {
  color: var(--text-white);
  font-size: 0.95rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.addon-card p {
  color: #94a3b8;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Services notes */
.services-notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  border-top: 1px solid rgba(240, 180, 41, 0.15);
  padding-top: 50px;
}

.note-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.note-item > i {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(240, 180, 41, 0.35);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.note-item h4 {
  color: var(--text-white);
  font-size: 0.95rem;
  margin-bottom: 6px;
  font-family: "Space Grotesk", sans-serif;
}

.note-item p {
  color: #94a3b8;
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ===== Footer extras ===== */
.footer-logo-img {
  height: 64px;
  border-radius: 14px;
  margin-bottom: 16px;
  box-shadow: 0 0 30px rgba(240, 180, 41, 0.25);
}

.footer-tagline {
  color: var(--primary-color);
  font-style: italic;
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: "Space Grotesk", sans-serif;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
  margin-bottom: 24px;
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-contact a:hover {
  color: var(--primary-light);
}

.footer-contact i {
  color: var(--primary-color);
  margin-right: 8px;
}

/* ===== Responsive: services ===== */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .logo-text {
    display: none;
  }
}