/* VARIABLES */
:root {
  --h1-font: "Condiment", cursive;
  --h2-font: monospace;
  --body-font: "Commissioner", sans-serif;
}



/* GLOBAL */
* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background-color: #f7f7f7;
  font-family: var(--body-font);
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #1e1e2e;
}

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

h1 {
  font-family: var(--h1-font);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #1e1e2e;
}

h2 {
  font-family: var(--body-font);
  font-size: 2rem; 
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1e1e2e;
}

h3 {
  font-family: var(--body-font);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #1e1e2e;
}

p {
  margin-bottom: 1rem;
}

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

/* BUTTONS */
.btn-primary,
.btn-secondary,
.btn-text {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: #678da4;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #1e1e2e;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.btn-secondary {
  background-color: transparent;
  color: #678da4;
  border: 2px solid #678da4;
}

.btn-secondary:hover {
  background-color: #678da4;
  color: #ffffff;
}

.btn-text {
  background: none;
  color: #678da4;
  padding: 0;
  font-weight: 600;
}

.btn-text:hover {
  color: #1e1e2e;
}

button {
  background-color: #678da4;
  border: none;
  border-radius: 8px;
  color: #f7f7f7;
  font-weight: 600;
  padding: 15px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

button:hover {
  background-color: #1e1e2e;
  transform: translateY(-2px);
}



/* GLOBAL CUSTOM */
.hide {
  display: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}



/* NAVIGATION */
#main-nav {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

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

.nav-logo {
  font-family: var(--h1-font);
  font-size: 2rem;
  font-weight: 700;
  color: #1e1e2e;
  text-decoration: none;
}

.logo-text {
  background: linear-gradient(135deg, #678da4 0%, #1e1e2e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  align-items: center;
}

.nav-menu li {
  margin: 0;
}

.nav-link {
  color: #1e1e2e;
  font-weight: 500;
  transition: color 0.3s ease;
  text-decoration: none;
}

.nav-link:hover {
  color: #678da4;
}

.nav-link-cta {
  background-color: #678da4;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.nav-link-cta:hover {
  background-color: #1e1e2e;
  transform: translateY(-2px);
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  width: auto;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #1e1e2e;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle:hover span {
  background-color: #678da4;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile menu */
@media (max-width: 768px) {
  .nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-menu.active {
    max-height: 400px;
  }

  .nav-menu li {
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f7f7f7;
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-link-cta {
    display: inline-block;
  }
}



/* HERO SECTION */
#hero-section {
  background: linear-gradient(135deg, #1e1e2e 0%, #373737 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

#hero-section h1 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

#hero-section h2 {
  color: #c7c3c2;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.hero-tagline {
  font-size: 1.1rem;
  color: #c7c3c2;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}



/* SERVICES SECTION */
#services-section {
  padding: 80px 20px;
  background-color: #ffffff;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background-color: #f7f7f7;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #678da4;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  border-left-color: #1e1e2e;
}

.service-card h3 {
  color: #1e1e2e;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.service-card p {
  color: #373737;
  margin: 0;
  line-height: 1.6;
}

.services-cta {
  text-align: center;
  margin-top: 3rem;
}



/* ABOUT SECTION */
#about-section {
  padding: 80px 20px;
  background-color: #f7f7f7;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.about-image {
  width: 100%;
  max-width: 300px;
}

.about-image img {
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.about-text {
  flex: 1;
  text-align: center;
}

.about-text h2 {
  margin-bottom: 1rem;
}

.about-text p {
  color: #373737;
  margin-bottom: 1rem;
}



/* CTA SECTION */
#cta-section {
  background-color: #678da4;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

#cta-section h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

#cta-section p {
  color: #f7f7f7;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

#cta-section .btn-primary {
  background-color: #1e1e2e;
}

#cta-section .btn-primary:hover {
  background-color: #ffffff;
  color: #1e1e2e;
}



/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #1e1e2e 0%, #373737 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.page-hero h1 {
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-size: 3rem;
}

.page-hero-subtitle {
  color: #c7c3c2;
  font-size: 1.25rem;
  margin: 0;
}



/* ABOUT PAGE */
.about-intro {
  padding: 80px 20px;
  background-color: #ffffff;
}

.about-intro-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.about-intro-image {
  width: 100%;
  max-width: 350px;
}

.about-intro-image img {
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.about-intro-text h2 {
  margin-bottom: 1.5rem;
}

.about-intro-text .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: #678da4;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-professional {
  padding: 80px 20px;
  background-color: #f7f7f7;
}

.professional-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.professional-text {
  flex: 1;
}

.professional-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.skills-highlight {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #678da4;
  margin-top: 2rem;
}

.skills-highlight h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.skills-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}

.skills-list li {
  padding-left: 1.5rem;
  position: relative;
  color: #373737;
}

.skills-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #678da4;
  font-weight: bold;
}

.professional-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.stat-card {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #678da4;
  margin-bottom: 0.5rem;
  font-family: var(--body-font);
}

.stat-label {
  font-size: 1rem;
  color: #373737;
  font-weight: 500;
}

.about-personal {
  padding: 80px 20px;
  background-color: #ffffff;
}

.personal-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.personal-text {
  flex: 1;
}

.personal-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.personal-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.personal-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.image-caption {
  text-align: center;
  margin-top: 0.75rem;
  color: #373737;
  font-weight: 500;
  font-size: 0.95rem;
}

.about-cta {
  background: linear-gradient(135deg, #678da4 0%, #1e1e2e 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.about-cta h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.about-cta p {
  color: #f7f7f7;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.about-cta .btn-primary {
  background-color: #ffffff;
  color: #1e1e2e;
}

.about-cta .btn-primary:hover {
  background-color: #f7f7f7;
}

.about-cta .btn-secondary {
  border-color: #ffffff;
  color: #ffffff;
}

.about-cta .btn-secondary:hover {
  background-color: #ffffff;
  color: #1e1e2e;
}



/* SERVICES PAGE */
.services-intro {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.intro-content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: #678da4;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.intro-content p {
  color: #373737;
  line-height: 1.8;
}

.services-main {
  padding: 80px 20px;
  background-color: #f7f7f7;
}

.services-detailed-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.service-detailed-card {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.service-detailed-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-detailed-card h3 {
  color: #1e1e2e;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.service-description {
  color: #678da4;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.service-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #373737;
  line-height: 1.6;
}

.service-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #678da4;
  font-weight: bold;
}

.service-list li strong {
  color: #1e1e2e;
}

.services-tech-stack {
  padding: 80px 20px;
  background-color: #ffffff;
}

.tech-stack-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.tech-category h3 {
  color: #1e1e2e;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  text-align: center;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.tech-tag {
  background-color: #f7f7f7;
  color: #1e1e2e;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.tech-tag:hover {
  background-color: #678da4;
  color: #ffffff;
  border-color: #678da4;
  transform: translateY(-2px);
}

.services-process {
  padding: 80px 20px;
  background-color: #f7f7f7;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  position: relative;
  padding-left: 5rem;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.step-number {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #678da4 0%, #1e1e2e 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: var(--body-font);
}

.process-step h3 {
  color: #1e1e2e;
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.process-step p {
  color: #373737;
  margin: 0;
  line-height: 1.6;
}

.services-cta {
  background: linear-gradient(135deg, #1e1e2e 0%, #678da4 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.services-cta h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.services-cta p {
  color: #f7f7f7;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.services-cta .btn-primary {
  background-color: #ffffff;
  color: #1e1e2e;
}

.services-cta .btn-primary:hover {
  background-color: #f7f7f7;
}

.services-cta .btn-secondary {
  border-color: #ffffff;
  color: #ffffff;
}

.services-cta .btn-secondary:hover {
  background-color: #ffffff;
  color: #1e1e2e;
}



/* CONTACT PAGE */
.contact-main {
  padding: 80px 20px;
  background-color: #f7f7f7;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-form-wrapper {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form-wrapper h2 {
  margin-bottom: 0.5rem;
}

.form-intro {
  color: #678da4;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: #1e1e2e;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-input {
  padding: 0.875rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--body-font);
  transition: all 0.3s ease;
  background-color: #ffffff;
}

.form-input:focus {
  outline: none;
  border-color: #678da4;
  box-shadow: 0 0 0 3px rgba(103, 141, 164, 0.1);
}

.form-input::placeholder {
  color: #999;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

select.form-input {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
  padding-right: 2.5rem;
}

.btn-full-width {
  width: 100%;
  justify-content: center;
}

.contact-info-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card,
.contact-social-card,
.contact-quick-info {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-info-card h3,
.contact-social-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.contact-info-card p {
  color: #373737;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.detail-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

.detail-label {
  font-size: 0.85rem;
  color: #678da4;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.detail-value {
  font-size: 1rem;
  color: #1e1e2e;
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  display: block;
  width: 80px;
  height: 80px;
  transition: all 0.3s ease;
}

.social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.social-link:hover {
  transform: translateY(-5px);
  opacity: 0.8;
}

.contact-quick-info h4 {
  color: #1e1e2e;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.contact-quick-info p {
  color: #373737;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

.contact-faq {
  padding: 80px 20px;
  background-color: #ffffff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  padding: 2rem;
  background-color: #f7f7f7;
  border-radius: 12px;
  border-left: 4px solid #678da4;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.faq-item h3 {
  color: #1e1e2e;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.faq-item p {
  color: #373737;
  margin: 0;
  line-height: 1.7;
}



/* PORTFOLIO PAGE */
.portfolio-intro {
  padding: 60px 20px;
  background-color: #ffffff;
  text-align: center;
}

.portfolio-intro .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: #678da4;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.portfolio-featured {
  padding: 80px 20px;
  background-color: #f7f7f7;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.portfolio-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.portfolio-card.featured {
  border: 3px solid #678da4;
}

.portfolio-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: #f0f0f0;
}

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

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

.portfolio-overlay {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.project-tag {
  background-color: #678da4;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-content {
  padding: 2rem;
}

.portfolio-content h3 {
  color: #1e1e2e;
  margin-bottom: 1rem;
  font-size: 1.75rem;
}

.portfolio-description {
  color: #373737;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.portfolio-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tech-badge {
  background-color: #f7f7f7;
  color: #1e1e2e;
  padding: 0.4rem 0.9rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid #e0e0e0;
}

.portfolio-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.portfolio-categories {
  padding: 80px 20px;
  background-color: #ffffff;
}

.categories-intro {
  text-align: center;
  color: #373737;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.category-card {
  background-color: #f7f7f7;
  padding: 2.5rem;
  border-radius: 12px;
  border-left: 4px solid #678da4;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.category-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-left-color: #1e1e2e;
}

.category-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.category-card h3 {
  color: #1e1e2e;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.category-card > p {
  color: #373737;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.category-projects-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.category-projects-list li {
  padding: 0.4rem 0;
  color: #373737;
  position: relative;
  padding-left: 1.5rem;
}

.category-projects-list li:before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #678da4;
  font-weight: bold;
}

.portfolio-cta {
  background: linear-gradient(135deg, #678da4 0%, #1e1e2e 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.portfolio-cta h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.portfolio-cta p {
  color: #f7f7f7;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.portfolio-cta .btn-primary {
  background-color: #ffffff;
  color: #1e1e2e;
}

.portfolio-cta .btn-primary:hover {
  background-color: #f7f7f7;
}

.portfolio-cta .btn-secondary {
  border-color: #ffffff;
  color: #ffffff;
}

.portfolio-cta .btn-secondary:hover {
  background-color: #ffffff;
  color: #1e1e2e;
}



/* HIRE ME PAGE */
.hire-hero {
  background: linear-gradient(135deg, #678da4 0%, #1e1e2e 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.hire-hero h1 {
  color: #ffffff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hire-hero-subtitle {
  color: #f7f7f7;
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.hire-packages {
  padding: 80px 20px;
  background-color: #f7f7f7;
}

.packages-intro {
  text-align: center;
  color: #373737;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.package-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.featured-package {
  border: 3px solid #678da4;
}

.package-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #678da4 0%, #1e1e2e 100%);
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.package-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #f0f0f0;
}

.package-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.package-header h3 {
  font-size: 2rem;
  color: #1e1e2e;
  margin-bottom: 0.5rem;
}

.package-tagline {
  color: #678da4;
  font-size: 1.05rem;
  margin: 0;
}

.package-features {
  flex-grow: 1;
  margin-bottom: 2rem;
}

.package-features h4 {
  color: #1e1e2e;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.package-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-list li {
  padding: 0.75rem 0;
  padding-left: 2rem;
  position: relative;
  color: #373737;
  line-height: 1.6;
  border-bottom: 1px solid #f0f0f0;
}

.package-list li:last-child {
  border-bottom: none;
}

.package-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #678da4;
  font-weight: bold;
  font-size: 1.2rem;
}

.hire-alacarte {
  padding: 80px 20px;
  background-color: #ffffff;
}

.alacarte-intro {
  text-align: center;
  color: #373737;
  max-width: 700px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

.alacarte-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.alacarte-card {
  background-color: #f7f7f7;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #678da4;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.alacarte-card:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.alacarte-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.alacarte-card h3 {
  color: #1e1e2e;
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.alacarte-card p {
  color: #373737;
  margin: 0;
  line-height: 1.6;
}

.hire-custom {
  padding: 80px 20px;
  background-color: #f7f7f7;
}

.custom-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.custom-info h2 {
  margin-bottom: 1rem;
}

.custom-info .lead {
  font-size: 1.15rem;
  color: #678da4;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.custom-benefits h3 {
  color: #1e1e2e;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.benefit-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #678da4 0%, #1e1e2e 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.benefits-list strong {
  display: block;
  color: #1e1e2e;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.benefits-list p {
  color: #373737;
  margin: 0;
  line-height: 1.6;
}

.custom-form-wrapper {
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.custom-form-wrapper h3 {
  margin-bottom: 1.5rem;
  color: #1e1e2e;
}

.custom-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hire-why {
  padding: 80px 20px;
  background-color: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.why-card {
  background-color: #f7f7f7;
  padding: 2.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.why-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  color: #1e1e2e;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.why-card p {
  color: #373737;
  margin: 0;
  line-height: 1.7;
}



/* OVER-WRITES */
.container-fluid {
  margin: 0 !important;
  padding: 0 !important;
}



/* PAGE NAVIGATION */
.navbar-nav {
  flex-direction: row;
}

.page-nav {
  margin-bottom: 10px;
}

.page-nav li {
  padding: 0 20px;
}



/* RESPONSIVE DESIGN */

/* Tablet and up (768px+) */
@media (min-width: 768px) {
  .mobile-menu-toggle {
    display: none;
  }

  .nav-menu {
    display: flex;
    flex-direction: row;
    position: static;
    box-shadow: none;
    max-height: none;
    padding: 0;
  }

  .nav-menu li {
    border-bottom: none;
    padding: 0;
  }

  h1 {
    font-size: 3.5rem;
  }
  
  h2 {
    font-size: 2.5rem;
  }
  
  #hero-section {
    padding: 120px 20px;
  }
  
  #hero-section h1 {
    font-size: 4rem;
  }
  
  #hero-section h2 {
    font-size: 1.5rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-content {
    flex-direction: row;
    text-align: left;
  }
  
  .about-text {
    text-align: left;
  }

  /* About page tablet styles */
  .page-hero h1 {
    font-size: 4rem;
  }

  .about-intro-content {
    flex-direction: row;
    gap: 4rem;
  }

  .about-intro-text {
    text-align: left;
  }

  .professional-content {
    flex-direction: row;
    gap: 4rem;
  }

  .professional-stats {
    grid-template-columns: 1fr;
    min-width: 250px;
  }

  .personal-content {
    gap: 4rem;
  }

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

  /* Services page tablet styles */
  .services-detailed-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  /* Contact page tablet styles */
  .contact-grid {
    grid-template-columns: 2fr 1fr;
  }

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

  /* Portfolio page tablet styles */
  .portfolio-image {
    height: 300px;
  }

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

  /* Hire Me page tablet styles */
  .hire-hero h1 {
    font-size: 3.5rem;
  }

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

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

  .custom-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

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

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .hero-cta {
    gap: 1.5rem;
  }

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

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

  /* Services page desktop styles */
  .services-detailed-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

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

  /* Contact page desktop styles */
  .contact-form-wrapper {
    padding: 3rem;
  }

  /* Portfolio page desktop styles */
  .portfolio-image {
    height: 350px;
  }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  /* Hire Me page desktop styles */
  .hire-hero h1 {
    font-size: 4rem;
  }

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

  .custom-form-wrapper {
    padding: 3rem;
  }

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