/* 
====================================================================
   UceeCodes Portfolio - Modern Dark Theme
   Author: Usman Umar Garba
====================================================================
*/

:root {
  /* Colors */
  --primary-color: #00f2ff;
  /* Cyan Neon */
  --secondary-color: #7000ff;
  /* Purple Neon */
  --bg-dark: #0a0a0a;
  --bg-card: #111111;
  --bg-card-hover: #1a1a1a;
  --text-main: #ffffff;
  --text-muted: #a0a0a0;
  --accent-gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));

  /* Fonts */
  --font-main: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1200px;

  /* Transitions */
  --transition: all 0.3s ease;
}

[data-theme="light"] {
  --bg-dark: #f0f2f5;
  --bg-card: #ffffff;
  --bg-card-hover: #f8f9fa;
  --text-main: #1a1a1a;
  --text-muted: #666666;
  --primary-color: #007bff;
  /* Blue for light mode */
  --secondary-color: #6610f2;
  /* Purple for light mode */
  --accent-gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

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

.section-header .subtitle {
  display: block;
  color: var(--primary-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-header .title {
  font-size: 36px;
  background: linear-gradient(to right, #fff, #a0a0a0);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

[data-theme="light"] .section-header .title {
  background: linear-gradient(to right, #1a1a1a, #666666);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 242, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 242, 255, 0.5);
}

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

.btn-outline:hover {
  background: rgba(0, 242, 255, 0.1);
  transform: translateY(-3px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  margin-right: 10px;
}

.btn-sm:hover {
  background: var(--primary-color);
  color: #000;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.logo span {
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

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

.btn-contact {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 20px;
  border-radius: 20px;
  color: #fff !important;
}

.btn-contact:hover {
  background: var(--primary-color);
  color: #000 !important;
}

.btn-contact::after {
  display: none;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #fff;
  transition: var(--transition);
}

/* Theme Toggle */
.theme-toggle {
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 20px;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: var(--transition);
  margin-left: 20px;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-color);
}

[data-theme="light"] .theme-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  background: radial-gradient(circle at top right, rgba(112, 0, 255, 0.1), transparent 40%),
    radial-gradient(circle at bottom left, rgba(0, 242, 255, 0.1), transparent 40%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

.greeting {
  display: block;
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 500;
}

.name {
  font-size: 60px;
  margin-bottom: 10px;
  line-height: 1.1;
}

.role {
  font-size: 32px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.typewriter {
  color: #fff;
  border-bottom: 2px solid var(--primary-color);
}

.bio {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-btns {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

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

.social-links a {
  font-size: 24px;
  color: var(--text-muted);
}

.social-links a:hover {
  color: var(--primary-color);
  transform: translateY(-3px);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.img-wrapper {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 50px rgba(0, 242, 255, 0.2);
  position: relative;
  z-index: 1;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tech-badge {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--bg-card);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.badge-flutter {
  top: 20px;
  left: 20px;
  color: #42A5F5;
  animation-delay: 0s;
}

.badge-python {
  bottom: 40px;
  right: 20px;
  color: #FFD43B;
  animation-delay: 1s;
}

.badge-bitcoin {
  top: 50%;
  right: -30px;
  color: #F7931A;
  animation-delay: 2s;
}

@keyframes float {

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

  50% {
    transform: translateY(-15px);
  }
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--text-muted);
  border-radius: 20px;
  display: block;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    transform: translate(-50%, 0);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, 15px);
    opacity: 0;
  }
}

@keyframes bounce {

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

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* Section General */
.section {
  padding: var(--section-padding);
}

/* About Section */
.about-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.about-text p {
  margin-bottom: 20px;
  color: var(--text-muted);
  font-size: 17px;
}

.about-text strong {
  color: #fff;
  font-weight: 600;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.info-item .label {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.info-item .value {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.value.available {
  color: #00ff88;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.stat-number {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 5px;
}

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

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  padding: 40px 30px;
  border-radius: 20px;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  background: var(--bg-card-hover);
  border-color: rgba(0, 242, 255, 0.3);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.icon-box {
  width: 60px;
  height: 60px;
  background: rgba(0, 242, 255, 0.1);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 25px;
  transition: var(--transition);
}

.service-card:hover .icon-box {
  background: var(--primary-color);
  color: #000;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 15px;
}

/* Skills Section */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.skill-card {
  background: var(--bg-card);
  width: 120px;
  height: 120px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.skill-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 10px 20px rgba(0, 242, 255, 0.2);
}

.skill-card i {
  font-size: 40px;
  color: var(--primary-color);
  transition: var(--transition);
}

.skill-card:hover i {
  transform: scale(1.1);
  color: #fff;
}

.skill-card p {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.skill-card:hover p {
  color: #fff;
}

/* Specific Brand Colors for Icons on Hover/Default */
.skill-card:hover .fa-android {
  color: #42A5F5;
}

.skill-card:hover .fa-python {
  color: #FFD43B;
}

.skill-card:hover .fa-bitcoin {
  color: #F7931A;
}

.skill-card:hover .fa-github {
  color: #fff;
}

.skill-card:hover .fa-database {
  color: #336791;
}

.skill-card:hover .fa-fire {
  color: #FFCA28;
}

/* Projects Section */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.project-card {
  background: var(--bg-card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 242, 255, 0.3);
}

.project-img {
  height: 280px;
  overflow: hidden;
  position: relative;
  background: #f5f5f5;
  /* Light background to match typical app screenshots */
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
  padding: 10px;
}

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

.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: rgba(255, 255, 255, 0.2);
}

.project-content {
  padding: 25px;
}

.project-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.project-content p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 20px;
}

.tags {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.tags span {
  font-size: 12px;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 20px;
  color: var(--primary-color);
}

.links {
  display: flex;
}

/* Experience Section */
.experience-section {
  padding: var(--section-padding);
}

.experience-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.experience-item {
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  padding-left: 30px;
  position: relative;
}

.experience-item::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 0;
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-color);
}

.experience-item h3 {
  font-size: 24px;
  margin-bottom: 5px;
  color: #fff;
}

.experience-item h4 {
  font-size: 16px;
  color: var(--primary-color);
  font-weight: 500;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.experience-item ul {
  list-style: none;
}

.experience-item li {
  color: var(--text-muted);
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  font-size: 16px;
}

.experience-item li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.contact-details .item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.contact-details .icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 242, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-details h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.contact-details p {
  color: var(--text-muted);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-family: var(--font-main);
  font-size: 16px;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: rgba(255, 255, 255, 0.05);
}

/* Footer */
.footer {
  background: #050505;
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-logo h2 {
  font-size: 28px;
  margin-bottom: 5px;
}

.footer-logo span {
  color: var(--primary-color);
}

.footer-logo p {
  color: var(--text-muted);
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary-color);
  color: #000;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .hero-btns {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .bio {
    margin: 0 auto 30px;
  }

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

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

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

  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    z-index: 1001;
  }

  .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #111;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

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

  .name {
    font-size: 40px;
  }

  .role {
    font-size: 24px;
  }

  .img-wrapper {
    width: 300px;
    height: 300px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}

/* Chat Widget */
.chat-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  font-family: var(--font-main);
}

.chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent-gradient);
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.chat-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  height: 500px;
  background: var(--bg-card);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="light"] .chat-window {
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.chat-header {
  background: var(--accent-gradient);
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
}

.chat-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.chat-close {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  opacity: 0.8;
  transition: var(--transition);
}

.chat-close:hover {
  opacity: 1;
}

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

.message {
  max-width: 80%;
  padding: 10px 15px;
  border-radius: 15px;
  font-size: 14px;
  line-height: 1.4;
}

.ai-message {
  background: rgba(255, 255, 255, 0.05);
  align-self: flex-start;
  border-bottom-left-radius: 5px;
  color: var(--text-main);
}

[data-theme="light"] .ai-message {
  background: #f0f2f5;
}

.user-message {
  background: var(--primary-color);
  align-self: flex-end;
  border-bottom-right-radius: 5px;
  color: #fff;
  /* Always white for contrast */
}

.chat-input-area {
  padding: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  gap: 10px;
}

[data-theme="light"] .chat-input-area {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.chat-input-area input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 10px 15px;
  color: var(--text-main);
  font-family: var(--font-main);
}

[data-theme="light"] .chat-input-area input {
  background: #f0f2f5;
  border: 1px solid #e4e6eb;
}

.chat-input-area input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.chat-input-area button {
  background: transparent;
  border: none;
  color: var(--primary-color);
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
}

.chat-input-area button:hover {
  transform: scale(1.1);
}

@media (max-width: 480px) {
  .chat-window {
    width: 300px;
    height: 400px;
    bottom: 70px;
    right: 10px;
  }
}

/* CTA Section */
.cta-section {
  text-align: center;
  background: radial-gradient(circle at center, rgba(30, 30, 30, 0.8), #0a0a0a), url('../images/bg_1.jpg');
  background-size: cover;
  background-blend-mode: overlay;
  padding: 100px 0;
}

.cta-content h2 {
  font-size: 40px;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn-white {
  background: #fff;
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
}

/* Contact Section Refactor */
.contact-container {
  max-width: 700px;
  /* Reduced width to match compact look */
  margin: 0 auto;
}

.contact-card {
  background: #0f1014;
  /* Dark card background */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

.form-group-full {
  grid-column: span 2;
}

.form-group label {
  display: block;
  font-size: 14px;
  color: #a0a0a0;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  /* Dark slate blue-grey background to match screenshot */
  background: #2A2F3E;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  /* Slightly tighter border radius */
  color: #e0e0e0;
  font-family: var(--font-main);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary-color);
  background: #323846;
  /* Slightly lighter on focus */
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888;
}

.form-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
}

/* Additional Skill Brand Colors */
.skill-card:hover .fa-rust {
  color: #dea584;
}

.skill-card:hover .fa-react {
  color: #61DAFB;
}

.skill-card:hover .fa-node {
  color: #339933;
}

.skill-card:hover .fa-server {
  color: #ccc;
}

.skill-card:hover .fa-cloud {
  color: #fff;
}

.skill-card:hover .fa-css3 {
  color: #1572B6;
}

.skill-card:hover .fa-docker {
  color: #2496ED;
}