/*-----------------------------------*\
  #style.css - RokonZ One-Page Interactive Portfolio
  White & Multi-Color Gradient Aesthetic (Light Mode)
\*-----------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/*-----------------------------------*\
  #CUSTOM PROPERTIES (INCREASED FONT SIZES)
\*-----------------------------------*/

:root {

  /* Gradients */
  --bg-gradient-onyx: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
  --bg-gradient-jet: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
  --border-gradient-onyx: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  --text-gradient-gold: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #6366f1 100%);

  /* Solid Colors (Light Mode Palette) */
  --jet: rgba(226, 232, 240, 0.9);
  --onyx: #f1f5f9;
  --eerie-black-1: #ffffff;
  --eerie-black-2: #ffffff;
  --smoky-black: #f8fafc;
  --white-1: #0f172a;
  --white-2: #0f172a;
  --orange-yellow-crayola: #d97706;
  --vegas-gold: #b45309;
  --light-gray: #475569;
  --light-gray-70: #64748b;
  --bittersweet-shimmer: #dc2626;
  --emerald-green: #059669;

  /* Typography (Increased for High Readability) */
  --ff-poppins: 'Poppins', sans-serif;
  --ff-outfit: 'Outfit', sans-serif;

  --fs-1: 36px;
  --fs-2: 28px;
  --fs-3: 22px;
  --fs-4: 20px;
  --fs-5: 17px;
  --fs-6: 16px;
  --fs-7: 15px;
  --fs-8: 13px;

  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  /* Shadows */
  --shadow-1: 0 10px 30px -5px rgba(15, 23, 42, 0.05), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
  --shadow-2: 0 16px 32px -8px rgba(15, 23, 42, 0.08);
  --shadow-3: 0 20px 40px -10px rgba(15, 23, 42, 0.1);
  --shadow-5: 0 30px 60px -15px rgba(15, 23, 42, 0.15);

  --transition-1: 0.25s ease;
  --transition-2: 0.4s ease-in-out;

}


/*-----------------------------------*\
  #RESET & BASE
\*-----------------------------------*/

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

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

li { list-style: none; }

img, button, time, span { display: block; }

button {
  font: inherit;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

input, textarea, select {
  display: block;
  width: 100%;
  background: none;
  font: inherit;
}

::selection {
  background: #f59e0b;
  color: #ffffff;
}

:focus-visible { outline-color: #d97706; }

html {
  font-family: var(--ff-poppins);
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background-color: #f8fafc;
  color: #475569;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}


/*-----------------------------------*\
  #WHITE & MULTI-COLOR GRADIENT GRID OVERLAY
\*-----------------------------------*/

.bg-grid-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-color: #f8fafc;
  background-image: 
    radial-gradient(circle at 10% 10%, rgba(245, 158, 11, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 90% 15%, rgba(99, 102, 241, 0.14) 0%, transparent 45%),
    radial-gradient(circle at 50% 85%, rgba(6, 182, 212, 0.14) 0%, transparent 50%),
    linear-gradient(to right, rgba(15, 23, 42, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 36px 36px, 36px 36px;
}


/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f8fafc; }
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border: 2px solid #f8fafc;
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover { background: #d97706; }


/*-----------------------------------*\
  #REUSED STYLES
\*-----------------------------------*/

.sidebar,
article {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.05), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
  z-index: 1;
}

.separator {
  width: 100%;
  height: 1px;
  background: rgba(226, 232, 240, 0.8);
  margin: 18px 0;
}

.icon-box {
  position: relative;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.12) 0%, rgba(99, 102, 241, 0.08) 100%);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.2);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.03);
  z-index: 1;
  flex-shrink: 0;
}

.icon-box::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: #ffffff;
  border-radius: inherit;
  z-index: -1;
}

.article-title {
  position: relative;
  color: #0f172a;
  font-family: var(--ff-outfit);
  font-size: var(--fs-1);
  font-weight: var(--fw-700);
  padding-bottom: 12px;
  margin-bottom: 24px;
}

.article-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 5px;
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #6366f1 100%);
  border-radius: 3px;
}

.h2 { font-size: var(--fs-1); color: #0f172a; }
.h3 { font-size: var(--fs-2); font-family: var(--ff-outfit); color: #0f172a; }
.h4 { font-size: var(--fs-4); font-family: var(--ff-outfit); color: #0f172a; }
.h5 { font-size: var(--fs-6); font-family: var(--ff-outfit); color: #0f172a; }

.gradient-text {
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 50%, #6366f1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/*-----------------------------------*\
  #MAIN LAYOUT
\*-----------------------------------*/

main {
  margin: 15px 12px 75px;
  min-width: 259px;
}


/*-----------------------------------*\
  #SIDEBAR (vCard Profile Info)
\*-----------------------------------*/

.sidebar {
  margin-bottom: 15px;
  max-height: 112px;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out;
  position: relative;
}

.sidebar.active { max-height: 580px; }

.sidebar-info {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}

.avatar-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
}

.avatar-box {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 2px solid rgba(217, 119, 6, 0.2);
}

.avatar-box img {
  width: 84px;
  height: 84px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.3s ease;
}

.avatar-btn:hover .avatar-box img { transform: scale(1.08); }

.avatar-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 14px;
  height: 14px;
  background: #10b981;
  border: 2px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}

.info-content .name {
  color: #0f172a;
  font-family: var(--ff-outfit);
  font-size: var(--fs-3);
  font-weight: var(--fw-700);
  letter-spacing: -0.5px;
  margin-bottom: 4px;
}

.info-content .title {
  color: #d97706;
  background: rgba(245, 158, 11, 0.1);
  font-size: var(--fs-7);
  font-weight: var(--fw-600);
  width: max-content;
  padding: 5px 14px;
  border-radius: 8px;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.info-content .sub-title {
  color: #6366f1;
  font-size: 13px;
  margin-top: 6px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.info_more-btn {
  position: absolute;
  top: -15px;
  right: -15px;
  border-radius: 0 15px;
  font-size: 13px;
  color: #d97706;
  background: #f1f5f9;
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-1);
  z-index: 1;
}

.info_more-btn::before {
  content: "";
  position: absolute;
  inset: 1px;
  background: #ffffff;
  border-radius: inherit;
  z-index: -1;
}

.info_more-btn span { display: none; }

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

.sidebar.active .info_more-btn i { transform: rotate(180deg); }

.sidebar-info_more {
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-1);
}

.sidebar.active .sidebar-info_more {
  opacity: 1;
  visibility: visible;
}

.contacts-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.contact-item {
  min-width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-info { max-width: calc(100% - 60px); }

.contact-title {
  color: #64748b;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.contact-info :is(.contact-link, address, span) {
  color: #0f172a;
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.contact-info a.contact-link:hover { color: #d97706; }

.social-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding-left: 4px;
  flex-wrap: wrap;
}

.social-item .social-link {
  color: #64748b;
  font-size: 17px;
  width: 40px;
  height: 40px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-1);
}

.social-item .social-link:hover {
  color: #d97706;
  background: #ffffff;
  border-color: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.15);
}


/*-----------------------------------*\
  #NAVBAR (TABS)
\*-----------------------------------*/

.navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.05);
  z-index: 100;
}

.navbar-list {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 0 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.navbar-list::-webkit-scrollbar { display: none; }

.navbar-link {
  color: #64748b;
  font-size: var(--fs-7);
  font-weight: var(--fw-500);
  padding: 15px 12px;
  transition: color var(--transition-1);
  white-space: nowrap;
}

.navbar-link:hover { color: #0f172a; }

.navbar-link.active {
  color: #d97706;
  font-weight: var(--fw-700);
}


/*-----------------------------------*\
  #TAB ARTICLES
\*-----------------------------------*/

article { display: none; }

article.active {
  display: block;
  animation: fadeIn 0.4s ease backward;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}


/*-----------------------------------*\
  #ABOUT TAB
\*-----------------------------------*/

.about-text {
  color: #475569;
  font-size: var(--fs-6);
  font-weight: var(--fw-400);
  line-height: 1.8;
  margin-bottom: 25px;
}

.about-text p { margin-bottom: 16px; }

.about-text strong { color: #0f172a; font-weight: var(--fw-600); }

.highlight-box {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(99, 102, 241, 0.05) 100%);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-left: 4px solid #d97706;
  border-radius: 12px;
  padding: 18px 22px;
  margin: 22px 0;
  font-family: var(--ff-outfit);
}

.highlight-box p {
  color: #0f172a;
  font-size: var(--fs-4);
  font-weight: var(--fw-600);
  margin-bottom: 6px;
}

.stats-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 30px;
}

.stat-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  padding: 22px;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.stat-number {
  color: #d97706;
  font-family: var(--ff-outfit);
  font-size: 34px;
  font-weight: var(--fw-700);
  line-height: 1.2;
}

.stat-label {
  color: #64748b;
  font-size: var(--fs-7);
  margin-top: 4px;
  font-weight: 500;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 35px;
}

.service-item {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  z-index: 1;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -4px rgba(15, 23, 42, 0.08);
}

.service-icon-box {
  width: 52px;
  height: 52px;
  font-size: 24px;
}

.service-content-box { flex: 1; }

.service-item-title { margin-bottom: 8px; color: #0f172a; font-size: var(--fs-4); }

.service-item-text {
  color: #64748b;
  font-size: var(--fs-6);
  font-weight: var(--fw-400);
  line-height: 1.6;
}

.spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.spec-tag {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: var(--fs-7);
  font-weight: var(--fw-600);
  display: flex;
  align-items: center;
  gap: 8px;
}


/* FAQ Accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-1);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.02);
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0f172a;
  font-family: var(--ff-outfit);
  font-size: var(--fs-5);
  font-weight: var(--fw-600);
  line-height: 1.4;
}

.faq-question i {
  color: #d97706;
  font-size: 16px;
  transition: transform 0.3s ease;
  margin-left: 10px;
  flex-shrink: 0;
}

.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
  color: #475569;
  font-size: var(--fs-6);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 0 22px 18px;
}


/*-----------------------------------*\
  #SERVICES TAB
\*-----------------------------------*/

.detailed-service-card {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 16px;
  padding: 26px;
  margin-bottom: 24px;
  z-index: 1;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detailed-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -4px rgba(15, 23, 42, 0.08);
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.service-card-header .icon-box {
  width: 56px;
  height: 56px;
  font-size: 26px;
}

.service-deliverables {
  margin: 16px 0;
  padding-left: 20px;
}

.service-deliverables li {
  list-style-type: disc;
  color: #64748b;
  font-size: var(--fs-6);
  margin-bottom: 8px;
  line-height: 1.6;
}

.service-deliverables li::marker { color: #d97706; }

.service-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
  color: #ffffff;
  border: 1px solid #d97706;
  padding: 12px 22px;
  border-radius: 10px;
  font-size: var(--fs-7);
  font-weight: var(--fw-600);
  transition: var(--transition-1);
  margin-top: 10px;
  box-shadow: 0 4px 12px rgba(217, 119, 6, 0.2);
}

.service-action-btn:hover {
  background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.3);
}


/*-----------------------------------*\
  #TESTIMONIALS TAB
\*-----------------------------------*/

.testimonials-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 30px;
}

.testimonials-item {
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
  z-index: 1;
}

.testimonial-author-box {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #d97706;
}

.testimonial-rating {
  color: #d97706;
  font-size: 14px;
  display: flex;
  gap: 3px;
  margin-top: 2px;
}

.testimonial-text {
  color: #475569;
  font-size: var(--fs-6);
  font-weight: var(--fw-400);
  line-height: 1.7;
  font-style: italic;
}


/*-----------------------------------*\
  #CONTACT TAB
\*-----------------------------------*/

.mapbox {
  position: relative;
  height: 260px;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(226, 232, 240, 0.9);
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.mapbox iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(90%);
}

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

.form-input-container { position: relative; }

.form-input {
  color: #0f172a;
  font-size: var(--fs-6);
  font-weight: var(--fw-400);
  padding: 14px 20px;
  border: 1px solid rgba(203, 213, 225, 0.8);
  border-radius: 12px;
  background: #ffffff;
  transition: var(--transition-1);
}

.form-input:focus {
  border-color: #d97706;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
  outline: none;
}

textarea.form-input {
  min-height: 120px;
  height: 120px;
  resize: vertical;
  margin-bottom: 20px;
}

.form-btn {
  position: relative;
  background: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 14px 25px;
  border-radius: 12px;
  font-size: var(--fs-6);
  font-weight: var(--fw-600);
  border: 1px solid #d97706;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.25);
  transition: var(--transition-1);
  margin-left: auto;
}

.form-btn:hover {
  background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.35);
}

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

.connect-card {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition-1);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
}

.connect-card:hover {
  transform: translateY(-3px);
  border-color: #d97706;
  box-shadow: 0 10px 24px -4px rgba(15, 23, 42, 0.08);
}


/*-----------------------------------*\
  #MODALS & TOASTS
\*-----------------------------------*/

.avatar-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 20px;
}

.avatar-lightbox-overlay.open {
  opacity: 1;
  visibility: visible;
}

.avatar-lightbox {
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: 20px;
  padding: 20px;
  max-width: 440px;
  width: 100%;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
}

.avatar-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: #f1f5f9;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
}

.avatar-lightbox-img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  object-fit: cover;
}

.avatar-lightbox-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}


/* Snackbar Toast */
.snackbar {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  color: #0f172a;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.snackbar.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.snackbar.success .snackbar-icon { color: #059669; }
.snackbar.error .snackbar-icon { color: #dc2626; }


/*-----------------------------------*\
  #RESPONSIVE BREAKPOINTS
\*-----------------------------------*/

@media (min-width: 580px) {

  main {
    margin-top: 60px;
    margin-bottom: 100px;
  }

  .sidebar {
    max-height: 140px;
    margin-bottom: 30px;
  }

  .sidebar.active { max-height: 580px; }

  .sidebar-info { gap: 25px; }

  .avatar-box img {
    width: 120px;
    height: 120px;
  }

  .info-content .name { font-size: var(--fs-2); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

  .info_more-btn {
    top: 20px;
    right: 20px;
    border-radius: 12px;
    padding: 10px 20px;
  }

  .info_more-btn span { display: block; }

  .contacts-list { grid-template-columns: 1fr 1fr; }

  .navbar {
    position: absolute;
    bottom: auto;
    top: 0;
    left: auto;
    right: 0;
    width: max-content;
    border-radius: 0 20px;
    padding: 0 20px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-top: none;
    border-right: none;
    box-shadow: none;
  }

  .navbar-list { gap: 20px; }

  .navbar-link { padding: 20px 7px; }

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

  .testimonials-list { grid-template-columns: 1fr 1fr; }

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

  .connect-grid { grid-template-columns: 1fr 1fr; }

}

@media (min-width: 1024px) {

  main {
    max-width: 1200px;
    margin-inline: auto;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 30px;
    align-items: flex-start;
  }

  .sidebar {
    position: sticky;
    top: 60px;
    max-height: max-content !important;
    height: auto;
    margin-bottom: 0;
    padding-top: 60px;
    z-index: 1;
  }

  .sidebar-info {
    flex-direction: column;
    text-align: center;
  }

  .info-content .title { margin-inline: auto; }
  .info-content .sub-title { justify-content: center; }

  .info_more-btn { display: none; }

  .sidebar-info_more {
    opacity: 1;
    visibility: visible;
  }

  .contacts-list { grid-template-columns: 1fr; }

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

  .main-content {
    min-width: 0;
    position: relative;
  }

  .navbar {
    position: absolute;
    bottom: auto;
    top: 0;
    right: 0;
    left: auto;
    width: max-content;
    border-radius: 0 20px 0 20px;
    padding: 0 30px;
  }

  .service-list { grid-template-columns: 1fr 1fr; }

section { padding-left: 20px; padding-right: 20px; }
}