/*-----------------------------------*\
  #services-template.css
\*-----------------------------------*/

/**
 * Custom CSS for Services Page with Blue-White Theme
 */

/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors - Blue & White Theme
   */

  /* gradient */
  --bg-gradient-blue: linear-gradient(
    to bottom right, 
    hsl(210, 50%, 25%) 3%, 
    hsl(210, 40%, 20%) 97%
  );
  --bg-gradient-jet: linear-gradient(
    to bottom right, 
    hsla(210, 30%, 18%, 0.251) 0%, 
    hsla(210, 20%, 11%, 0) 100%
  ), hsl(210, 20%, 13%);
  --bg-gradient-blue-1: linear-gradient(
    to bottom right, 
    hsl(210, 100%, 60%) 0%, 
    hsla(210, 100%, 50%, 0) 50%
  );
  --bg-gradient-blue-2: linear-gradient(
    135deg, 
    hsla(210, 100%, 60%, 0.251) 0%, 
    hsla(210, 100%, 50%, 0) 59.86%
  ), hsl(210, 20%, 13%);
  --border-gradient-blue: linear-gradient(
    to bottom right, 
    hsl(210, 30%, 35%) 0%, 
    hsla(210, 30%, 35%, 0) 50%
  );
  --text-gradient-blue: linear-gradient(
    to right, 
    hsl(210, 100%, 65%), 
    hsl(200, 100%, 60%)
  );

  /* solid */
  --jet: hsl(210, 20%, 30%);
  --onyx: hsl(210, 25%, 20%);
  --eerie-black-1: hsl(210, 30%, 15%);
  --eerie-black-2: hsl(210, 30%, 14%);
  --smoky-black: hsl(210, 40%, 10%);
  --white-1: hsl(0, 0%, 100%);
  --white-2: hsl(0, 0%, 98%);
  --blue-accent: hsl(210, 100%, 60%);
  --blue-light: hsl(210, 80%, 70%);
  --light-gray: hsl(0, 0%, 84%);
  --light-gray-70: hsla(0, 0%, 84%, 0.7);
  --error-red: hsl(0, 43%, 51%);

  /**
   * typography
   */

  /* font-family */
  --ff-poppins: 'Poppins', sans-serif;

  /* font-size */
  --fs-1: 24px;
  --fs-2: 18px;
  --fs-3: 17px;
  --fs-4: 16px;
  --fs-5: 15px;
  --fs-6: 14px;
  --fs-7: 13px;
  --fs-8: 11px;

  /* font-weight */
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;

  /**
   * shadow
   */
  
  --shadow-1: -4px 8px 24px hsla(0, 0%, 0%, 0.25);
  --shadow-2: 0 16px 30px hsla(0, 0%, 0%, 0.25);
  --shadow-3: 0 16px 40px hsla(0, 0%, 0%, 0.25);
  --shadow-4: 0 25px 50px hsla(0, 0%, 0%, 0.15);
  --shadow-5: 0 24px 80px hsla(0, 0%, 0%, 0.25);

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease-in-out;

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a { text-decoration: none; }

li { list-style: none; }

img, ion-icon, a, button, time, span { display: block; }

button {
  font: inherit;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

input, textarea {
  display: block;
  width: 100%;
  background: none;
  font: inherit;
}

::selection {
  background: var(--blue-accent);
  color: var(--white-1);
}

:focus { outline-color: var(--blue-accent); }

html { font-family: var(--ff-poppins); }

body { 
  background: var(--smoky-black);
  color: var(--white-2);
}

/* GLightbox Custom Styling */
.glightbox-clean .gslide-description {
  background: rgba(0, 0, 0, 0.8);
  color: var(--white-1);
}

.glightbox-clean .gslide-title {
  color: var(--white-1);
}

.glightbox-clean .gbtn.focused,
.glightbox-clean .gbtn:hover {
  background: var(--blue-accent);
  color: var(--white-1);
}

.glightbox-clean .gprev,
.glightbox-clean .gnext {
  background: rgba(33, 150, 243, 0.9);
  color: var(--white-1);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-1);
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
  opacity: 1 !important;
  visibility: visible !important;
}

.glightbox-clean .gprev {
  left: 20px;
}

.glightbox-clean .gnext {
  right: 20px;
}

.glightbox-clean .gprev:hover,
.glightbox-clean .gnext:hover {
  background: var(--blue-accent);
  transform: translateY(-50%) scale(1.1);
}

.glightbox-clean .gclose {
  background: rgba(33, 150, 243, 0.8);
  color: var(--white-1);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-1);
}

.glightbox-clean .gclose:hover {
  background: var(--blue-accent);
  transform: scale(1.1);
}

/* Mobile responsive for lightbox buttons */
@media (max-width: 768px) {
  .glightbox-clean .gprev,
  .glightbox-clean .gnext {
    width: 45px;
    height: 45px;
    background: rgba(33, 150, 243, 1);
  }
  
  .glightbox-clean .gprev {
    left: 10px;
  }
  
  .glightbox-clean .gnext {
    right: 10px;
  }
  
  .glightbox-clean .gclose {
    width: 35px;
    height: 35px;
    top: 10px;
    right: 10px;
  }
}





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.sidebar,
article {
  background: var(--eerie-black-2);
  border: 1px solid var(--jet);
  border-radius: 20px;
  padding: 15px;
  box-shadow: var(--shadow-1);
  z-index: 1;
}

article {
  border-top: none;
  border-radius: 0 0 20px 20px;
  margin-top: 0;
  margin-bottom: 60px;
}

.separator {
  width: 100%;
  height: 1px;
  background: var(--jet);
  margin: 16px 0;
}

.icon-box {
  position: relative;
  background: var(--border-gradient-blue);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  color: var(--blue-accent);
  box-shadow: var(--shadow-1);
  z-index: 1;
}

.icon-box::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--eerie-black-1);
  border-radius: inherit;
  z-index: -1;
}

.icon-box ion-icon { --ionicon-stroke-width: 35px; }

article { display: none; }

article.active {
  display: block;
  animation: fade 0.5s ease backwards;
}

@keyframes fade {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.h2,
.h3,
.h4,
.h5 {
  color: var(--white-2);
  text-transform: capitalize;
}

.h2 { font-size: var(--fs-1); }

.h3 { font-size: var(--fs-2); }

.h4 { font-size: var(--fs-4); }

.h5 {
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
}

.article-title {
  position: relative;
  padding-bottom: 7px;
}

.article-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--text-gradient-blue);
  border-radius: 3px;
}

.has-scrollbar::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.has-scrollbar::-webkit-scrollbar-track {
  background: var(--onyx);
  border-radius: 5px;
}

.has-scrollbar::-webkit-scrollbar-thumb {
  background: var(--blue-accent);
  border-radius: 5px;
}

.has-scrollbar::-webkit-scrollbar-button { width: 20px; }





/*-----------------------------------*\
  #MAIN
\*-----------------------------------*/

main {
  margin: 15px 12px;
  margin-bottom: 75px;
  min-width: 259px;
}





/*-----------------------------------*\
  #SIDEBAR
\*-----------------------------------*/

.sidebar {
  margin-bottom: 15px;
  max-height: 112px;
  overflow: hidden;
  transition: var(--transition-2);
}

.sidebar.active { max-height: 405px; }

.sidebar-info {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.avatar-box {
  background: var(--bg-gradient-blue);
  border-radius: 20px;
}

.avatar-box img {
  border-radius: 20px;
}

.info-content .name {
  color: var(--white-2);
  font-size: var(--fs-3);
  font-weight: var(--fw-500);
  letter-spacing: -0.25px;
  margin-bottom: 10px;
}

.info-content .title {
  color: var(--white-1);
  background: var(--onyx);
  font-size: var(--fs-8);
  font-weight: var(--fw-300);
  width: max-content;
  padding: 3px 12px;
  border-radius: 8px;
}

.info_more-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  border-radius: 0 15px;
  font-size: 13px;
  color: var(--blue-accent);
  background: var(--border-gradient-blue);
  padding: 10px;
  box-shadow: var(--shadow-2);
  transition: var(--transition-1);
  z-index: 1;
}

.info_more-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: var(--bg-gradient-jet);
  transition: var(--transition-1);
  z-index: -1;
}

.info_more-btn:hover,
.info_more-btn:focus { background: var(--bg-gradient-blue-1); }

.info_more-btn:hover::before,
.info_more-btn:focus::before { background: var(--bg-gradient-blue-2); }

.info_more-btn span { display: none; }

.sidebar-info_more {
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-2);
}

.sidebar.active .sidebar-info_more {
  opacity: 1;
  visibility: visible;
}

.contacts-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.contact-item {
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-info {
  max-width: calc(100% - 46px);
  width: calc(100% - 46px);
}

.contact-title {
  color: var(--light-gray-70);
  font-size: var(--fs-8);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.contact-info :is(.contact-link, time, address) {
  color: var(--white-2);
  font-size: var(--fs-7);
}

.contact-info address { font-style: normal; }

.social-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  padding-bottom: 4px;
  padding-left: 7px;
}

.social-item .social-link {
  color: var(--light-gray-70);
  font-size: 18px;
  transition: var(--transition-1);
}

.social-item .social-link:hover { 
  color: var(--blue-accent); 
}





/*-----------------------------------*\
  #NAVBAR
\*-----------------------------------*/

.navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--eerie-black-2);
  border: 1px solid var(--jet);
  border-radius: 20px 20px 0 0;
  border-bottom: none;
  box-shadow: var(--shadow-2);
  padding: 12px 15px;
  z-index: 5;
  margin-bottom: 0;
}

.navbar::before {
  display: none;
}

.navbar-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.navbar-link {
  color: var(--light-gray);
  font-size: var(--fs-8);
  font-weight: var(--fw-400);
  padding: 10px 16px;
  border-radius: 10px;
  transition: all var(--transition-1);
  position: relative;
  white-space: nowrap;
}

.navbar-link:hover,
.navbar-link:focus { 
  color: var(--white-2);
  background: hsla(210, 100%, 60%, 0.15);
  transform: translateY(-2px);
}

.navbar-link.active { 
  color: var(--blue-accent);
  font-weight: var(--fw-500);
  background: hsla(210, 100%, 60%, 0.2);
}





/*-----------------------------------*\
  #HOME
\*-----------------------------------*/

.home .article-title { margin-bottom: 15px; }

.hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
  padding: 40px 0;
}

.hero-content {
  text-align: center;
  max-width: 600px;
}

.hero-avatar-box {
  margin: 0 auto 30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-gradient-blue);
  padding: 5px;
  box-shadow: var(--shadow-3);
}

.hero-avatar-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.hero-title {
  font-size: 48px;
  font-weight: var(--fw-600);
  color: var(--white-2);
  margin-bottom: 20px;
  background: var(--text-gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: var(--fs-4);
  color: var(--light-gray);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--border-gradient-blue);
  color: var(--blue-accent);
  border-radius: 12px;
  font-size: var(--fs-5);
  font-weight: var(--fw-500);
  transition: var(--transition-1);
  box-shadow: var(--shadow-2);
  position: relative;
  z-index: 1;
}

.hero-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--bg-gradient-jet);
  border-radius: inherit;
  z-index: -1;
  transition: var(--transition-1);
}

.hero-btn:hover {
  background: var(--bg-gradient-blue-1);
  transform: translateY(-3px);
  box-shadow: var(--shadow-3);
}

.hero-btn:hover::before {
  background: var(--bg-gradient-blue-2);
}

@media (min-width: 580px) {
  .hero-title {
    font-size: 56px;
  }
  
  .hero-avatar-box {
    width: 250px;
    height: 250px;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 64px;
  }
  
  .hero-avatar-box {
    width: 300px;
    height: 300px;
  }
}

/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about .article-title { margin-bottom: 15px; }

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 20px;
}

.about-image-wrapper {
  display: flex;
  justify-content: center;
}



.about-image-box {
  position: relative;
  width: 100%;
  max-width: 800px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-3);
  background: none;
  padding: 0;
}

.about-image-box img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

.about-text {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  line-height: 1.6;
}

.quote-box {
  position: relative;
  background: var(--border-gradient-blue);
  padding: 20px;
  border-radius: 14px;
  box-shadow: var(--shadow-2);
  margin-bottom: 20px;
  z-index: 1;
}

.quote-box::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--bg-gradient-jet);
  border-radius: inherit;
  z-index: -1;
}

/* About page - lighter and transparent card colors */
.about .quote-box {
  background: linear-gradient(
    to bottom right, 
    hsla(210, 30%, 60%, 0.7) 0%, 
    hsla(210, 25%, 55%, 0.6) 50%
  );
  backdrop-filter: blur(10px);
}

.about .quote-box::before {
  background: hsla(210, 25%, 55%, 0.5);
}

.quote-icon {
  font-size: 40px;
  color: var(--blue-accent);
  margin-bottom: 15px;
  display: block;
}

.quote-text {
  font-size: var(--fs-4);
  font-style: italic;
  color: var(--white-2);
  line-height: 1.8;
  text-align: center;
  margin: 0;
}

.stats-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-item {
  position: relative;
  text-align: center;
  background: var(--border-gradient-blue);
  padding: 15px;
  border-radius: 14px;
  box-shadow: var(--shadow-2);
  transition: var(--transition-1);
  z-index: 1;
}

.stat-item::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--bg-gradient-jet);
  border-radius: inherit;
  z-index: -1;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-3);
}

/* About page - lighter and transparent card colors */
.about .stat-item {
  background: linear-gradient(
    to bottom right, 
    hsla(210, 30%, 60%, 0.7) 0%, 
    hsla(210, 25%, 55%, 0.6) 50%
  );
  backdrop-filter: blur(10px);
}

.about .stat-item::before {
  background: hsla(210, 25%, 55%, 0.5);
}

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: var(--fw-400);
  color: var(--blue-accent);
  margin-bottom: 6px;
  background: var(--text-gradient-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* About page - white text for numbers */
.about .stat-number {
  color: var(--white-1);
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: var(--white-1);
  background-clip: unset;
  font-weight: var(--fw-400);
}

.stat-label {
  display: block;
  font-size: var(--fs-8);
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (min-width: 580px) {
  .about-content {
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
  }
  
  .stats-section {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 768px) {
  .stat-number {
    font-size: 40px;
  }
}

/*-----------------------------------*\
  #RESUME
\*-----------------------------------*/

.resume .article-title { margin-bottom: 30px; }

.timeline { margin-bottom: 30px; }

.timeline .title-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.timeline-list {
  font-size: var(--fs-6);
  margin-left: 45px;
}

.timeline-item { position: relative; }

.timeline-item:not(:last-child) { margin-bottom: 20px; }

.timeline-item-title {
  font-size: var(--fs-5);
  line-height: 1.3;
  margin-bottom: 7px;
  color: var(--white-2);
}

.timeline-list span {
  color: var(--blue-accent);
  font-weight: var(--fw-400);
  line-height: 1.6;
  display: block;
  margin-bottom: 8px;
}

.timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: -25px;
  left: -30px;
  width: 1px;
  height: calc(100% + 50px);
  background: var(--jet);
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 5px;
  left: -33px;
  height: 6px;
  width: 6px;
  background: var(--text-gradient-blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--jet);
}

.timeline-text {
  color: var(--light-gray);
  font-weight: var(--fw-300);
  line-height: 1.6;
  margin-bottom: 10px;
}

.timeline-details {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.timeline-details li {
  color: var(--light-gray);
  font-size: var(--fs-7);
  line-height: 1.6;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.timeline-details li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--blue-accent);
  font-weight: bold;
}

.timeline-details li strong {
  color: var(--white-2);
  font-weight: var(--fw-500);
}

@media (min-width: 580px) {
  .timeline-list { margin-left: 65px; }

  .timeline-item:not(:last-child)::before { left: -40px; }

  .timeline-item::after {
    height: 8px;
    width: 8px;
    left: -43px;
  }
}

/*-----------------------------------*\
  #PORTFOLIO
\*-----------------------------------*/

.portfolio .article-title { margin-bottom: 15px; }

.projects { margin-bottom: 10px; }

.photo-section {
  margin-bottom: 40px;
}

.photo-section:last-child {
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: var(--fs-2);
  font-weight: var(--fw-500);
  color: var(--white-2);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blue-accent);
  text-transform: capitalize;
}

.project-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 10px;
}

.project-item { display: block; }

.project-item > a { 
  width: 100%;
  display: block;
  cursor: pointer;
}

.project-img {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 0;
  background: none;
  padding: 0;
}

.project-img::before {
  display: none;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  transition: var(--transition-1);
}

.project-item > a:hover img {
  transform: scale(1.05);
}

.project-title,
.project-category { 
  display: none;
}

@media (min-width: 768px) {
  .project-list { 
    grid-template-columns: 1fr 1fr; 
  }
}

@media (min-width: 1024px) {
  .project-list { 
    grid-template-columns: repeat(3, 1fr); 
  }
}

/*-----------------------------------*\
  #CONTACT
\*-----------------------------------*/

.contact .article-title { margin-bottom: 15px; }

.mapbox {
  position: relative;
  height: 250px;
  width: 100%;
  border-radius: 16px;
  margin-bottom: 30px;
  border: 1px solid var(--jet);
  overflow: hidden;
  background: var(--white-1);
  box-shadow: var(--shadow-2);
}

.mapbox figure { height: 100%; }

.mapbox iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form { margin-bottom: 10px; }

.form-title { margin-bottom: 20px; }

.input-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 25px;
}

.form-input {
  color: var(--white-2);
  font-size: var(--fs-6);
  font-weight: var(--fw-400);
  padding: 13px 20px;
  border: 1px solid var(--jet);
  border-radius: 14px;
  outline: none;
  background: var(--eerie-black-1);
  transition: var(--transition-1);
}

.form-input::placeholder { 
  font-weight: var(--fw-500);
  color: var(--light-gray-70);
}

.form-input:focus { 
  border-color: var(--blue-accent);
  box-shadow: 0 0 0 3px hsla(210, 100%, 60%, 0.1);
}

textarea.form-input {
  min-height: 100px;
  height: 120px;
  max-height: 200px;
  resize: vertical;
  margin-bottom: 25px;
}

textarea.form-input::-webkit-resizer { display: none; }

.form-input:focus:invalid { border-color: var(--error-red); }

.form-btn {
  position: relative;
  width: 100%;
  background: var(--border-gradient-blue);
  color: var(--blue-accent);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 14px;
  font-size: var(--fs-6);
  text-transform: capitalize;
  box-shadow: var(--shadow-3);
  z-index: 1;
  transition: var(--transition-1);
  cursor: pointer;
}

.form-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--bg-gradient-jet);
  border-radius: inherit;
  z-index: -1;
  transition: var(--transition-1);
}

.form-btn ion-icon { font-size: 16px; }

.form-btn:hover { 
  background: var(--bg-gradient-blue-1);
  transform: translateY(-2px);
}

.form-btn:hover::before { 
  background: var(--bg-gradient-blue-2); 
}

.form-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.form-btn:disabled:hover { 
  background: var(--border-gradient-blue);
  transform: none;
}

.form-btn:disabled:hover::before { 
  background: var(--bg-gradient-jet); 
}

@media (min-width: 580px) {
  .mapbox {
    height: 380px;
    border-radius: 18px;
  }

  .input-wrapper {
    gap: 30px;
    margin-bottom: 30px;
  }

  .form-input { padding: 15px 20px; }

  textarea.form-input { margin-bottom: 30px; }

  .form-btn {
    --fs-6: 16px;
    padding: 16px 20px;
  }

  .form-btn ion-icon { font-size: 18px; }
}

@media (min-width: 1024px) {
  .input-wrapper { 
    grid-template-columns: 1fr 1fr; 
  }

  .form-btn {
    width: max-content;
    margin-left: auto;
  }
}

/*-----------------------------------*\
  #SKILLS
\*-----------------------------------*/

.skills .article-title { margin-bottom: 15px; }

.service { margin-bottom: 35px; }

.service-title { margin-bottom: 20px; }

.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-item {
  position: relative;
  background: var(--border-gradient-blue);
  padding: 20px;
  border-radius: 14px;
  box-shadow: var(--shadow-2);
  z-index: 1;
  transition: var(--transition-1);
  overflow: visible;
  min-height: auto;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-3);
}

.service-item::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: var(--bg-gradient-jet);
  border-radius: inherit;
  z-index: -1;
}

/* Skills page - lighter and transparent card colors */
.skills .service-item {
  background: linear-gradient(
    to bottom right, 
    hsla(210, 30%, 60%, 0.7) 0%, 
    hsla(210, 25%, 55%, 0.6) 50%
  );
  backdrop-filter: blur(10px);
}

.skills .service-item::before {
  background: hsla(210, 25%, 55%, 0.5);
}

.service-icon-box { 
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-icon-box ion-icon {
  font-size: 40px;
  color: var(--white-1);
  --ionicon-stroke-width: 35px;
}

.service-content-box { 
  text-align: center; 
  overflow: visible;
  word-wrap: break-word;
}

.service-item-title { 
  margin-bottom: 7px;
  color: var(--white-2);
}

.service-item-text {
  color: var(--light-gray);
  font-size: var(--fs-6);
  font-weight: var(--fw-300);
  line-height: 1.6;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}





/*-----------------------------------*\
  #RESPONSIVE
\*-----------------------------------*/

/**
 * responsive larger than 580px screen
 */

@media (min-width: 580px) {

  :root {
    --fs-1: 32px;
    --fs-2: 24px;
    --fs-3: 26px;
    --fs-4: 18px;
    --fs-6: 15px;
    --fs-7: 15px;
    --fs-8: 12px;
  }

  .sidebar, article {
    width: 520px;
    margin-inline: auto;
    padding: 30px;
  }

  .article-title {
    font-weight: var(--fw-600);
    padding-bottom: 15px;
  }

  .article-title::after {
    width: 40px;
    height: 5px;
  }

  .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    font-size: 18px;
  }

  main {
    margin-top: 60px;
    margin-bottom: 100px;
  }

  .sidebar {
    max-height: 180px;
    margin-bottom: 30px;
  }

  .sidebar.active { max-height: 584px; }

  .sidebar-info { gap: 25px; }

  .avatar-box { border-radius: 30px; }

  .avatar-box img { width: 120px; }

  .info-content .name { margin-bottom: 15px; }

  .info-content .title { padding: 5px 18px; }

  .info_more-btn {
    top: -30px;
    right: -30px;
    padding: 10px 15px;
  }

  .info_more-btn span {
    display: block;
    font-size: var(--fs-8);
  }

  .info_more-btn ion-icon { display: none; }

  .separator { margin: 32px 0; }

  .contacts-list { gap: 20px; }

  .contact-info {
    max-width: calc(100% - 64px);
    width: calc(100% - 64px);
  }

  .navbar { 
    position: fixed;
    bottom: 0;
    border-radius: 20px 20px 0 0;
    padding: 15px 20px;
  }
  
  article {
    border-radius: 20px;
    border-top: 1px solid var(--jet);
    margin-bottom: 70px;
  }

  .navbar-list { 
    gap: 12px;
  }

  .navbar-link { 
    --fs-8: 13px;
    padding: 12px 20px;
  }

  .service-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 18px;
    padding: 30px;
  }

  .service-icon-box {
    margin-bottom: 0;
    margin-top: 5px;
  }

  .service-content-box { text-align: left; }

}

/**
 * responsive larger than 768px screen
 */

@media (min-width: 768px) {

  .sidebar, article { width: 700px; }

  .has-scrollbar::-webkit-scrollbar-button { width: 100px; }

  .contacts-list {
    grid-template-columns: 1fr 1fr;
    gap: 30px 15px;
  }

  .navbar-link { 
    --fs-8: 14px;
    padding: 12px 22px;
  }

  .service-list {
    grid-template-columns: 1fr 1fr;
    gap: 20px 25px;
  }

}

/**
 * responsive larger than 1024px screen
 */

@media (min-width: 1024px) {

  :root {
    --shadow-1: -4px 8px 24px hsla(0, 0%, 0%, 0.125);
    --shadow-2: 0 16px 30px hsla(0, 0%, 0%, 0.125);
    --shadow-3: 0 16px 40px hsla(0, 0%, 0%, 0.125);
  }

  .sidebar, article {
    width: 950px;
    box-shadow: var(--shadow-5);
  }

  main { margin-bottom: 60px; }

  .main-content {
    position: relative;
    width: max-content;
    margin: auto;
  }

  .navbar {
    position: sticky;
    bottom: auto;
    top: 0;
    left: auto;
    right: 0;
    width: 100%;
    max-width: 950px;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
    padding: 12px 20px;
    box-shadow: none;
    z-index: 10;
    margin: 0 auto;
  }
  
  article {
    border-radius: 0 0 20px 20px;
    border-top: none;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    margin-bottom: 0;
  }

  .navbar-list {
    gap: 8px;
    padding: 0;
  }

  .navbar-link { 
    font-size: var(--fs-7);
    padding: 10px 18px;
    font-weight: var(--fw-400);
  }
  
  .navbar-link.active {
    font-weight: var(--fw-500);
  }

  .service-list {
    grid-template-columns: 1fr 1fr;
    gap: 20px 25px;
  }

}

/**
 * responsive larger than 1250px screen
 */

@media (min-width: 1250px) {

  body::-webkit-scrollbar { width: 20px; }

  body::-webkit-scrollbar-track { background: var(--smoky-black); }

  body::-webkit-scrollbar-thumb {
    border: 5px solid var(--smoky-black);
    background: hsla(210, 100%, 60%, 0.3);
    border-radius: 20px;
    box-shadow: inset 1px 1px 0 hsla(0, 0%, 100%, 0.11),
                inset -1px -1px 0 hsla(0, 0%, 100%, 0.11);
  }

  body::-webkit-scrollbar-thumb:hover { background: hsla(210, 100%, 60%, 0.5); }

  body::-webkit-scrollbar-button { height: 60px; }

  .sidebar, article { width: auto; }

  article { min-height: 100%; }

  main {
    max-width: 1200px;
    margin-inline: auto;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
  }

  .main-content {
    min-width: 75%;
    width: 75%;
    margin: 0;
    display: flex;
    flex-direction: column;
  }
  
  .navbar {
    width: 100%;
    max-width: 100%;
    border-radius: 20px 20px 0 0;
  }
  
  article {
    width: 100%;
    max-width: 100%;
    border-radius: 0 0 20px 20px;
  }

  .sidebar {
    position: sticky;
    top: 60px;
    max-height: max-content;
    height: 100%;
    margin-bottom: 0;
    padding-top: 60px;
    z-index: 1;
  }

  .sidebar-info { flex-direction: column; }

  .avatar-box img { width: 150px; }

  .info-content .name {
    white-space: nowrap;
    text-align: center;
  }

  .info-content .title { margin: auto; }

  .info_more-btn { display: none; }

  .sidebar-info_more {
    opacity: 1;
    visibility: visible;
  }

  .contacts-list { grid-template-columns: 1fr; }

  .contact-info :is(.contact-link) {
    word-break: break-all;
    overflow-wrap: break-word;
  }

  .contact-info :is(.contact-link, time, address) {
    --fs-7: 14px;
    font-weight: var(--fw-300);
  }

  .separator:last-of-type {
    margin: 15px 0;
    opacity: 0;
  }

  .social-list { justify-content: center; }

}





