:root {
  --color-dark-bg: #0a0a0a;
  --color-dark-secondary: #1a1a1a;
  --color-dark-tertiary: #2a2a2a;

  --color-text-primary: #ffffff;
  --color-text-secondary: #b0b0b0;
  --color-text-dim: #808080;

  --color-pink: #ff014f;
  --color-pink-hover: #ff3385;
  --color-orange: #ff6b35;

  --color-whatsapp: #25d366;
  --color-facebook: #1877f2;
  --color-instagram: #e4405f;
  --color-twitter: #000000;
  --color-linkedin: #0a66c2;
  --color-youtube: #ff0000;
  --color-tiktok: #000000;
  --color-website: #6366f1;

  --font-primary: "Rajdhani", sans-serif;
  --font-secondary: "Rubik", sans-serif;

  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;

  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  --transition: 300ms ease-in-out;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-primary);
  background-color: var(--color-dark-bg);
  overflow-x: hidden;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.hero-dark {
  position: relative;
  min-height: 60vh;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0a0a0a 100%);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 40px 20px 40px;
  overflow: hidden;
}

.hero-dark-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 1024px) {
  .hero-dark-container {
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
  }
}

@media (max-width: 1023px) {
  .hero-dark-container {
    display: flex;
    gap: 20px;
  }

  .hero-dark-image {
    order: 1;
  }
}

.hero-dark-content {
  text-align: left;
  padding: 10px;
  max-width: 100%;
}

.hero-greeting {
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
  animation: fadeInUp 0.6s ease-out;
}

.hero-name {
  font-family: var(--font-primary);
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 400;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: 12px;
  animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.hero-name span {
  font-weight: 700;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(36px, 7vw, 64px);
  font-weight: 700;
  color: var(--color-pink);
  line-height: 1.1;
  margin-bottom: 16px;
  text-transform: none;
  animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.hero-description {
  font-family: var(--font-secondary);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 550px;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

/* Hero Buttons Container */
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  width: 100%;
  max-width: 550px;
}

/* Hero Button - Pink Gradient */
.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  background: var(--color-pink);
  color: white;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 20px rgba(255, 0, 102, 0.3);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.6s ease-out 0.4s backwards;
  min-width: 180px;
  transition: all 0.3s ease;
}

.hero-btn-share {
  background: var(--color-pink);
  animation-delay: 0.5s;
}

.hero-social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  animation: fadeInUp 0.6s ease-out 0.6s backwards;
  flex-wrap: wrap;
}

.hero-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--color-text-primary);
  font-size: 18px;
  transition: background 0.3s ease;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero-social-icon i {
  display: block;
}

.hero-social-icon:hover {
  background: var(--color-pink);
}

.hero-dark-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  animation: fadeInUp 0.8s ease-out 0.3s backwards;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.hero-profile-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  position: relative;
  z-index: 2;
  border-radius: 50%;
  border: 4px solid rgba(255, 1, 79, 0.3);
  background: var(--color-dark-secondary);
}

@supports not (aspect-ratio: 1 / 1) {
  .hero-profile-img {
    height: 400px;
  }
}

.profile-image-fallback {
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-dark-secondary);
  border-radius: 50%;
  border: 4px solid rgba(255, 1, 79, 0.3);
  position: relative;
  z-index: 2;
}

.profile-image-fallback svg {
  width: 50%;
  height: 50%;
  opacity: 1;
}

@supports not (aspect-ratio: 1 / 1) {
  .profile-image-fallback {
    height: 400px;
  }
}

.section {
  padding: 40px 20px;
  background: var(--color-dark-bg);
}

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

.section-header {
  text-align: center;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease-out backwards;
}

.section-title {
  font-family: var(--font-primary);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-line {
  width: 60px;
  height: 3px;
  background: var(--color-pink);
  margin: 0 auto;
  border-radius: var(--radius-full);
  animation: scaleIn 0.6s ease-out 0.2s backwards;
}

@keyframes scaleIn {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 60px;
    opacity: 1;
  }
}

.education-section {
  background: var(--color-dark-bg);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-item {
  position: relative;
  animation: slideInUp 0.7s ease-out backwards;
}

.timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}
.timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}
.timeline-item:nth-child(3) {
  animation-delay: 0.3s;
}
.timeline-item:nth-child(4) {
  animation-delay: 0.4s;
}
.timeline-item:nth-child(5) {
  animation-delay: 0.5s;
}
.timeline-item:nth-child(6) {
  animation-delay: 0.6s;
}

.timeline-content {
  background: var(--color-dark-secondary);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  will-change: transform;
}

.timeline-content:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: var(--color-pink);
  box-shadow: 0 20px 40px rgba(255, 0, 102, 0.25);
  background: linear-gradient(135deg, var(--color-dark-secondary), rgba(255, 0, 102, 0.05));
}

.timeline-year {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255, 0, 102, 0.1);
  color: var(--color-pink);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: fit-content;
}

.timeline-title {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.timeline-content:hover .timeline-title {
  color: var(--color-pink);
}

.timeline-subtitle {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  transition: color 0.3s ease;
}

.timeline-content:hover .timeline-subtitle {
  color: var(--color-text-primary);
}

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

  .profile-image-fallback svg {
    width: 80%;
    height: 80%;
    opacity: 1;
  }
}

.footer {
  background: var(--color-dark-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 50px 20px 30px;
}

.footer-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
  width: 100%;
}

.footer-left {
  display: flex;
  flex-direction: column;
  animation: fadeInUp 0.6s ease-out backwards;
}

.footer-section-title {
  font-family: var(--font-primary);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 8px;
}

.footer-section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--color-pink);
  border-radius: 2px;
}

.footer-contact-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact-item:hover .footer-contact-icon {
  background: var(--color-pink);
  color: white;
}

.footer-contact-item:hover .footer-contact-text {
  color: var(--color-pink);
}

.footer-contact-icon {
  width: 35px;
  height: 35px;
  min-width: 35px;
  background: var(--color-dark-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-pink);
  font-size: 16px;
  border: 2px solid var(--color-pink);
  transition: all 0.3s ease;
}

.footer-contact-text {
  flex: 1;
  color: var(--color-text-primary);
  font-family: var(--font-secondary);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.6;
  word-break: break-word;
  transition: color 0.3s ease;
}

.footer-contact-text span {
  display: block;
}

.footer-contact-phones {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-contact-phones a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-phones a:hover {
  color: var(--color-pink);
}

.footer-phone-separator {
  color: var(--color-text-secondary);
  font-weight: 300;
  margin: 0 2px;
}

.footer-right {
  animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

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

.footer-heading {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 8px;
}

.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--color-pink);
  border-radius: 2px;
}

.footer-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-link,
.footer-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 16px;
  padding: 8px 0;
}

.footer-link:hover,
.footer-detail:hover {
  color: var(--color-pink);
}

.footer-link i,
.footer-detail i {
  font-size: 18px;
  color: var(--color-pink);
  width: 24px;
  min-width: 24px;
  text-align: center;
  transition: color 0.3s ease;
}

.footer-link:hover i,
.footer-detail:hover i {
  color: #ff3385;
}

.footer-link span,
.footer-detail span {
  font-family: var(--font-secondary);
  font-weight: 400;
  line-height: 1.6;
}

.footer-education {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  position: relative;
  padding-left: 40px;
}

.footer-education::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.footer-education-item {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s ease;
}

.footer-education-item:hover {
  border-color: var(--color-pink);
}

.footer-education-icon {
  width: 35px;
  height: 35px;
  min-width: 35px;
  background: var(--color-dark-secondary);
  border: 2px solid var(--color-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-pink);
  font-size: 16px;
  position: absolute;
  left: -40px;
  top: 20px;
  z-index: 2;
  transition: all 0.3s ease;
}

.footer-education-item:hover .footer-education-icon {
  background: var(--color-pink);
  color: white;
}

.footer-education-content {
  flex: 1;
  padding: 0 4px;
}

.footer-education-title {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 6px;
  line-height: 1.3;
  flex: 1;
  min-width: 0;
}

.footer-education-institution {
  font-family: var(--font-secondary);
  font-size: 15px;
  color: var(--color-text-primary);
  margin-bottom: 6px;
  display: block;
  line-height: 1.4;
}

.footer-education-year {
  font-family: var(--font-secondary);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-pink);
  margin-bottom: 8px;
  display: block;
  white-space: nowrap;
  flex-shrink: 0;
}
.footer-education-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 6px;
  flex-wrap: nowrap;
}

.footer-education-desc {
  font-family: var(--font-secondary);
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-education {
    padding-left: 35px;
  }

  .footer-education-icon {
    left: -35px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 20px 20px 20px;
  }

  .footer-wrapper {
    gap: 35px;
  }

  .footer-heading {
    font-size: 20px;
  }

  .footer-link,
  .footer-detail {
    font-size: 15px;
    gap: 12px;
    padding: 6px 0;
  }

  .footer-items {
    gap: 0;
  }

  .footer-education {
    padding-left: 35px;
    gap: 16px;
  }

  .footer-education-item {
    padding: 10px 5px;
    margin-bottom: 4px;
  }

  .footer-education-content {
    padding: 0 8px;
  }

  .footer-education-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 14px;
    left: -35px;
    top: 18px;
  }

  .footer-education-title {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .footer-education-institution {
    font-size: 15px;
    color: var(--color-text-primary);
    display: block;
    margin-bottom: 6px;
  }

  .footer-education-year {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .footer-education-desc {
    font-size: 14px;
    line-height: 1.6;
  }
}

.share-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .share-modal {
    align-items: center;
  }
}

.share-modal.active {
  opacity: 1;
  visibility: visible;
}

.share-modal-content {
  background: var(--color-dark-secondary);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.4s ease-out;
}

@media (min-width: 768px) {
  .share-modal-content {
    border-radius: var(--radius-xl);
    transform: translateY(30px);
    opacity: 0;
  }
}

.share-modal.active .share-modal-content {
  transform: translateY(0);
  opacity: 1;
}

.share-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.share-modal-title {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.close-modal {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-modal:hover {
  background: var(--color-pink);
  transform: rotate(90deg);
}

.close-modal i {
  font-size: 16px;
  color: var(--color-text-secondary);
  transition: color 0.3s ease;
}

.close-modal:hover i {
  color: white;
}

.share-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 24px;
}

.share-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.share-option:hover {
  opacity: 0.8;
}

.share-option-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.share-option-icon i {
  font-size: 24px;
  color: white;
}

.share-option-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-secondary);
  transition: color 0.3s ease;
}

.share-whatsapp .share-option-icon {
  background: linear-gradient(135deg, #25d366, #128c7e);
}
.share-messenger .share-option-icon {
  background: linear-gradient(135deg, #0084ff, #0066cc);
}
.share-email .share-option-icon {
  background: linear-gradient(135deg, #ea4335, #fbbc04);
}
.share-facebook .share-option-icon {
  background: linear-gradient(135deg, #1877f2, #0e5fce);
}
.share-instagram .share-option-icon {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.share-twitter .share-option-icon {
  background: linear-gradient(135deg, #14171a, #000000);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.share-linkedin .share-option-icon {
  background: linear-gradient(135deg, #0a66c2, #004182);
}
.share-telegram .share-option-icon {
  background: linear-gradient(135deg, #26a5e4, #229ed9);
}
.share-copy .share-option-icon {
  background: linear-gradient(135deg, #6c757d, #495057);
}

.notification {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff0066, #ff3385);
  color: white;
  padding: 10px 10px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(255, 0, 102, 0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 600;
  z-index: 99999;
  transition: bottom 0.4s ease;
  min-width: 200px;
  max-width: 90%;
  text-align: center;
}

.notification.show {
  bottom: 30px;
}

.notification i {
  font-size: 14px;
}

.loading-spinner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.loading-spinner.hidden {
  opacity: 0;
  visibility: hidden;
}

.spinner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.1);
  border-top-color: var(--color-pink);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.spinner-text {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.error-page {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
  z-index: 999999;
  display: none;
  overflow: auto;
}

.error-page.active {
  display: block;
}

.error-page-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.error-page-content {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 30px;
  animation: fadeInUp 0.8s ease-out;
}

.error-title {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.error-message {
  font-family: var(--font-secondary);
  font-size: 16px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  max-width: 400px;
}

.error-info {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 107, 53, 0.1);
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 107, 53, 0.2);
  width: 100%;
  text-align: left;
}

.error-info-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--color-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.error-info-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.error-status {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
}

.error-resolve {
  font-family: var(--font-secondary);
  font-size: 14px;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.5;
}

.deactivated-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 1, 79, 0.15) 0%, rgba(255, 1, 79, 0.05) 100%);
  border: 3px solid rgba(255, 1, 79, 0.3);
  margin: 0 auto;
  animation: fadeInUp 0.6s ease-out;
}

.deactivated-icon i {
  font-size: 56px;
  color: var(--color-pink);
}

.deactivated-actions {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 400px;
  margin-top: 10px;
}

.deactivated-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--color-pink) 0%, var(--color-pink-hover) 100%);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(255, 1, 79, 0.3);
}

.deactivated-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 1, 79, 0.5);
}

.deactivated-btn-whatsapp {
  background: linear-gradient(135deg, var(--color-whatsapp) 0%, #1ea952 100%);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.deactivated-btn-whatsapp:hover {
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.deactivated-btn i {
  font-size: 20px;
}

@media (max-width: 768px) {
  .error-page-container {
    padding: 30px 20px;
  }

  .error-page-content {
    gap: 24px;
  }

  .error-title {
    font-size: 32px;
  }

  .error-message {
    font-size: 15px;
  }

  .error-info {
    padding: 18px;
    gap: 12px;
  }

  .error-info-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 16px;
  }

  .error-status {
    font-size: 15px;
  }

  .error-resolve {
    font-size: 13px;
  }

  .deactivated-icon {
    width: 100px;
    height: 100px;
  }

  .deactivated-icon i {
    font-size: 48px;
  }

  .deactivated-btn {
    padding: 14px 24px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .error-page-container {
    padding: 20px 15px;
  }

  .error-page-content {
    gap: 20px;
  }

  .error-title {
    font-size: 28px;
  }

  .error-message {
    font-size: 14px;
  }

  .error-info {
    padding: 16px;
  }

  .error-status {
    font-size: 14px;
  }

  .error-resolve {
    font-size: 12px;
  }

  .deactivated-icon {
    width: 90px;
    height: 90px;
  }

  .deactivated-icon i {
    font-size: 42px;
  }

  .deactivated-btn {
    padding: 12px 20px;
    font-size: 14px;
    gap: 8px;
  }

  .deactivated-btn i {
    font-size: 18px;
  }
}

::-webkit-scrollbar {
  width: 0px;
  height: 0px;
  display: none;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: transparent;
}

::-webkit-scrollbar-thumb:hover {
  background: transparent;
}

* {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

html {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media (min-width: 1440px) {
  .hero-dark-container {
    max-width: 1600px;
  }
}

@media (max-width: 1280px) {
  .hero-dark {
    padding: 60px 30px;
  }
}

@media (max-width: 1023px) {
  .hero-dark {
    min-height: auto;
    padding: 40px 20px;
  }

  .hero-buttons {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-btn {
    flex: 1;
    min-width: 0;
    padding: 14px 20px;
    font-size: 16px;
  }

  .hero-dark-content {
    text-align: left;
  }

  .hero-social-icons {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .hero-dark {
    padding: 15px 15px;
  }

  .hero-dark-content {
    padding: 5px;
    text-align: left;
  }

  .hero-dark-image {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .hero-profile-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 16px;
    aspect-ratio: 1 / 1;
  }

  @supports not (aspect-ratio: 1 / 1) {
    .hero-profile-img {
      min-height: 280px;
    }
  }

  .profile-image-fallback {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 16px;
    aspect-ratio: 1 / 1;
  }

  @supports not (aspect-ratio: 1 / 1) {
    .profile-image-fallback {
      min-height: 280px;
    }
  }

  .hero-name {
    font-size: 30px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-buttons {
    justify-content: flex-start;
    gap: 8px;
  }

  .hero-btn {
    padding: 10px 16px;
    font-size: 16px;
    gap: 8px;
  }

  .hero-btn i {
    font-size: 16px;
  }

  .hero-social-icons {
    justify-content: flex-start;
  }

  .hero-social-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 18px;
  }
  .hero-dark-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .hero-dark-content {
    order: 2;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 40px 20px;
  }

  .hero-dark {
    padding: 15px 15px;
  }

  .hero-dark-content {
    text-align: left;
  }

  .hero-dark-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    padding: 0;
  }

  .hero-profile-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 16px;
    object-fit: cover;
    object-position: center;
    border: 3px solid rgba(255, 1, 79, 0.3);
    aspect-ratio: 1 / 1;
  }

  .profile-image-fallback {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 16px;
    border: 3px solid rgba(255, 1, 79, 0.3);
    aspect-ratio: 1 / 1;
  }

  .hero-name {
    font-size: 30px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-buttons {
    display: flex;
    gap: 10px;
    width: 100%;
    justify-content: flex-start;
  }

  .hero-btn {
    flex: 1;
    min-width: 0;
    padding: 12px 16px;
    font-size: 16px;
  }

  .hero-social-icons {
    justify-content: flex-start;
    margin-top: 24px;
    gap: 8px;
  }

  .hero-social-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 18px;
  }

  .section-title {
    font-size: 32px;
  }

  .footer-contact-section {
    gap: 10px;
  }

  .footer-contact-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 16px;
  }

  .footer-contact-text {
    font-size: 16px;
    line-height: 1.6;
  }

  .footer-section-title {
    font-size: 20px;
  }

  /* Share Modal Mobile Responsive */
  .share-modal-header {
    padding: 20px;
  }

  .share-modal-title {
    font-size: 18px;
  }

  .close-modal {
    width: 34px;
    height: 34px;
  }

  .close-modal i {
    font-size: 14px;
  }

  .share-options {
    grid-template-columns: repeat(4, 1fr);
    padding: 20px;
    gap: 12px;
  }

  .share-option {
    padding: 12px 6px;
  }

  .share-option-icon {
    width: 48px;
    height: 48px;
  }

  .share-option-icon i {
    font-size: 22px;
  }

  .share-option-name {
    font-size: 12px;
  }
}

@media (max-width: 375px) {
  .hero-dark {
    padding: 15px 12px;
  }

  .hero-dark-content {
    padding: 5px;
    text-align: left;
  }

  .hero-name {
    font-size: 28px;
    margin-bottom: 6px;
  }

  .hero-title {
    font-size: 32px;
    margin-bottom: 12px;
  }

  .hero-description {
    font-size: 15px;
    margin-bottom: 16px;
    line-height: 1.6;
  }

  .hero-buttons {
    gap: 7px;
    justify-content: flex-start;
  }

  .hero-btn {
    padding: 12px 16px;
    font-size: 15px;
    gap: 6px;
  }

  .hero-social-icons {
    gap: 10px;
    margin-top: 20px;
    justify-content: flex-start;
  }

  .hero-social-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 18px;
  }

  .hero-dark-image {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .hero-profile-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border: 3px solid rgba(255, 1, 79, 0.3);
    border-radius: 16px;
    aspect-ratio: 1 / 1;
  }

  .profile-image-fallback {
    width: 100%;
    height: auto;
    max-width: 100%;
    border: 3px solid rgba(255, 1, 79, 0.3);
    border-radius: 16px;
    aspect-ratio: 1 / 1;
  }

  .section {
    padding: 30px 12px;
  }

  .section-title {
    font-size: 24px;
  }

  .footer {
    padding: 35px 12px 20px;
  }

  .footer-section-title {
    font-size: 18px;
  }

  .footer-contact-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 13px;
  }

  .footer-contact-text {
    font-size: 15px;
  }

  .footer-education {
    padding-left: 30px;
    gap: 14px;
  }

  .footer-education-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 14px;
    left: -30px;
  }

  .footer-education-item {
    padding: 16px 10px;
    margin-bottom: 6px;
  }

  .footer-education-content {
    padding: 0 6px;
  }

  .footer-education-title {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .footer-education-institution {
    font-size: 15px;
    margin-bottom: 3px;
  }

  .footer-education-year {
    font-size: 13px;
    margin-bottom: 5px;
  }

  .footer-education-desc {
    font-size: 14px;
    line-height: 1.5;
  }

  .share-modal-title {
    font-size: 16px;
  }

  .share-options {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 16px;
  }

  .share-option-icon {
    width: 44px;
    height: 44px;
  }

  .share-option-icon i {
    font-size: 20px;
  }

  .share-option-name {
    font-size: 11px;
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  .hero-dark {
    min-height: auto;
    padding: 15px 15px;
  }

  .hero-dark-container {
    gap: 20px;
  }

  .hero-dark-image {
    max-width: 200px;
  }

  .hero-profile-img {
    max-width: 200px;
  }

  .hero-name {
    font-size: 26px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .hero-buttons {
    margin-bottom: 6px;
  }

  .hero-btn {
    padding: 10px 16px;
  }

  .hero-social-icons {
    margin-top: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) and (orientation: landscape) {
  .hero-dark-container {
    grid-template-columns: 1fr 0.8fr;
    gap: 40px;
  }

  .hero-dark-content {
    text-align: left;
  }

  .hero-dark-image {
    order: 2;
  }

  .hero-dark-content {
    order: 1;
  }

  .hero-social-icons {
    justify-content: flex-start;
  }
}

@media (min-width: 768px) and (max-width: 1023px) and (orientation: portrait) {
  .hero-dark {
    padding: 50px 40px;
  }

  .hero-dark-image {
    max-width: 350px;
  }

  .hero-profile-img {
    max-width: 350px;
  }

  .hero-buttons {
    max-width: 400px;
  }

  .hero-social-icons {
    margin-top: 25px;
  }

  .footer {
    padding: 45px 40px 30px;
  }

  .footer-contact-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1023px) {
  body {
    font-size: 15px;
  }

  .hero-description {
    max-width: 100%;
  }
}

@media (min-width: 1920px) {
  .hero-dark-container {
    max-width: 1800px;
  }

  .container {
    max-width: 1400px;
  }
}
