/* =========================
   GLOBAL RESET & VARIABLES
========================= */

@import "./navbar.css";

:root {
  --primary: #4f46e5;
  --primary-dark: #4338ca;
  --secondary: #06b6d4;
  --text-dark: #0f172a;
  --text-light: #475569;
  --bg-light: #f8fafc;
  --border-light: #e5e7eb;
  --radius: 12px;
  --max-width: 1200px;
}

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

/* =========================
   GLOBAL ORBITAL BACKGROUND
========================= */

.global-bg::before {
  content: "";
  position: fixed;
  inset: 0;

  background-image: url("/assets/global-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  z-index: -2;
}

/* Soft dark overlay for readability */
.global-bg::after {
  content: "";
  position: fixed;
  inset: 0;

  background: radial-gradient(
    circle at 30% 40%,
    rgba(255, 255, 255, 0.05),
    rgba(8, 15, 30, 0.75)
  );

  z-index: -1;
}


body {
  font-family: Inter, system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: transparent;
}

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

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

/* =========================
   HERO
========================= */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;

  padding: 96px 64px 120px;
  align-items: center;
}


.hero-content h1 {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 800;
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  margin-top: 18px;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 520px;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 16px;
}

.primary-btn {
  background: var(--primary);
  color: #fff;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 600;
}

.primary-btn:hover {
  background: var(--primary-dark);
}

.secondary-btn {
  border: 1px solid var(--border-light);
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 600;
  color: var(--text-dark);
}

/* Hero entrance */
.hero-content {
  animation: heroFadeUp 0.9s ease-out forwards;
  opacity: 0;
}

.hero-image {
  position: relative;
  border-radius: 24px;

  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.25),
    inset 0 0 0 1px rgba(255, 255, 255, 0.35);

  padding: 24px;
}


/* Staggered animations */
.hero-content h1 {
  animation: heroFadeUp 0.9s ease-out forwards;
  animation-delay: 0.1s;
  opacity: 0;
}

.hero-content p {
  animation: heroFadeUp 0.9s ease-out forwards;
  animation-delay: 0.25s;
  opacity: 0;
}

.hero-trust {
  animation: heroFadeUp 0.9s ease-out forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

.hero-actions {
  animation: heroFadeUp 0.9s ease-out forwards;
  animation-delay: 0.55s;
  opacity: 0;
}

/* Floating image */
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.hero h1 {
  color: #0f172a;
}

.hero h1 span {
  color: #4f46e5;
}

.hero p {
  color: #334155;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0),
    rgba(255,255,255,0.85)
  );
}



/* Keyframes */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}


/* =========================
   TRUST
========================= */
.trust {
  background: transparent;
  padding: 40px 24px;
  text-align: center;
}

.trust p {
  color: var(--text-light);
  margin-bottom: 14px;
}

.trust-logos {
  display: flex;
  justify-content: center;
  gap: 32px;
  font-weight: 700;
  color: var(--text-dark);
}

/* =========================
   FEATURES
========================= */
.features {
  padding: 96px 24px;
  text-align: center;
}

.features h2 {
  font-size: 2.2rem;
  margin-bottom: 48px;
}

.feature-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.feature-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);

  background: linear-gradient(
    135deg,
    var(--glass-1),
    var(--glass-2),
    var(--glass-3)
  );

  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}


/* Card hover */
.feature-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

/* Icon hover */
.feature-icon {
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.feature-card:hover .feature-icon {
  background-color: #2563eb;
  transform: scale(1.08);
}

/* Icon color change */
.feature-icon svg {
  transition: fill 0.25s ease;
}

.feature-card:hover .feature-icon svg {
  fill: #ffffff;
}

/* =========================
   STATS
========================= */
.stats {
  padding: 80px 24px;
}

.stats-grid {
  max-width: 900px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

/* Stat card */
.stat-item {
  padding: 24px 16px;
  border-radius: 14px;
   background: linear-gradient(
    135deg,
    var(--glass-1),
    var(--glass-2),
    var(--glass-3)
  );
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover lift */
.stat-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Number animation */
.stat-item h3 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #2563eb;
  transition: transform 0.25s ease, color 0.25s ease;
}

/* Label */
.stat-item p {
  margin-top: 8px;
  font-size: 1rem;
  color: #4b5563;
}

/* Number pop on hover */
.stat-item:hover h3 {
  transform: scale(1.08);
  color: #1d4ed8;
}


/* =========================
   TESTIMONIAL
========================= */
/* =========================
   TESTIMONIALS SECTION
========================= */
.testimonials {
  padding: 96px 24px 120px;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 48px;
  color: #0f172a;
}

/* =========================
   GRID
========================= */
.testimonial-grid {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

/* =========================
   TESTIMONIAL CARD
========================= */
.testimonial-card {
  position: relative;
  padding: 36px 32px;

  /* SAME WARM GLASS AS NAVBAR */
  background: linear-gradient(
    135deg,
    rgba(255, 246, 220, 0.75),
    rgba(250, 232, 200, 0.65),
    rgba(245, 220, 180, 0.55)
  );

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

/* =========================
   AVATAR
========================= */
.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;

  border: 2px solid rgba(255, 255, 255, 0.6);
}

/* =========================
   STARS
========================= */
.testimonial-stars {
  font-size: 1rem;
  letter-spacing: 2px;
  color: #f59e0b; /* warm gold */
  margin-bottom: 14px;
}

/* =========================
   TEXT
========================= */
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 18px;
}

/* =========================
   NAME
========================= */
.testimonial-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1f2937;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 480px) {
  .testimonials {
    padding: 72px 16px 96px;
  }

  .testimonials h2 {
    font-size: 1.9rem;
  }
}


/* Avatar */
.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 16px;
  border: 3px solid #e5e7eb;
}

/* Text */
.testimonial-text {
  font-size: 0.95rem;
  color: #374151;
  margin-bottom: 12px;
  line-height: 1.5;
}

/* Name */
.testimonial-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #2563eb;
}


/* Star ratings */
.testimonial-stars {
  font-size: 1.1rem;
  color: #facc15; /* gold */
  margin-bottom: 10px;
  letter-spacing: 2px;
}

/* Subtle animation on hover */
.testimonial-card:hover .testimonial-stars {
  transform: scale(1.05);
  transition: transform 0.25s ease;
}


/* =========================
   CTA
========================= */
.cta {
  padding: 90px 24px;
  background: var(--bg-light);
}

.cta-box {
  max-width: 800px;
  margin: auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 60px;
  text-align: center;
  border: 1px solid var(--border-light);
}

.cta-box h2 {
  font-size: 2rem;
}

.cta-box p {
  margin: 16px 0 28px;
  color: var(--text-light);
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.cta-primary {
  background: var(--primary);
  color: #fff;
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 600;
}

.cta-secondary {
  border: 1px solid var(--border-light);
  padding: 14px 26px;
  border-radius: var(--radius);
  font-weight: 600;
}


/* CTA section */
/* =========================
   CTA SECTION (WARM GLASS)
========================= */
.cta {
  padding: 120px 24px;
  display: flex;
  justify-content: center;
  background: transparent;
}

/* CTA container */
.cta-box {
  max-width: 720px;
  width: 100%;

  /* WARM GLASS – MATCHES PAGE */
  background: linear-gradient(
    135deg,
    rgba(255, 246, 220, 0.85),
    rgba(250, 232, 200, 0.75),
    rgba(245, 220, 180, 0.65)
  );

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  padding: 56px 48px;
  border-radius: 28px;
  text-align: center;

  border: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25);

  animation: ctaFadeUp 0.9s ease-out forwards;
  opacity: 0;
}

/* =========================
   STAGGERED CONTENT
========================= */
.cta-box h2 {
  animation: ctaFadeUp 0.9s ease-out forwards;
  animation-delay: 0.1s;
  opacity: 0;
}

.cta-box p {
  animation: ctaFadeUp 0.9s ease-out forwards;
  animation-delay: 0.25s;
  opacity: 0;
  color: #334155;
}

.cta-actions {
  margin-top: 28px;
  animation: ctaFadeUp 0.9s ease-out forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

/* =========================
   CTA BUTTONS
========================= */
.cta-primary {
  background: linear-gradient(
    135deg,
    #6366f1,
    #4f46e5
  );
  color: #ffffff;

  padding: 14px 32px;
  border-radius: 14px;
  font-weight: 600;
  margin-right: 14px;

  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Softer pulse (fits warm theme) */
.cta-primary {
  animation: pulseSoft 2.6s ease-in-out infinite;
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(79, 70, 229, 0.6);
}

.cta-secondary {
  color: #4f46e5;
  border: 2px solid rgba(79, 70, 229, 0.6);
  padding: 12px 30px;
  border-radius: 14px;
  font-weight: 600;
  background: transparent;
}

/* =========================
   ANIMATIONS
========================= */
@keyframes ctaFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseSoft {
  0% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.35);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(99, 102, 241, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
  }
}

/* =========================
   REDUCED MOTION
========================= */
@media (prefers-reduced-motion: reduce) {
  .cta-box,
  .cta-box * {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}




/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .feature-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #f8fafc;
  color: #0f172a;
  line-height: 1.6;
  background: transparent;
}

/* =========================
   NAVBAR – INTEGRATED STYLE
========================= */



.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2563eb;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
  color: #475569;
}

.nav-links a:hover {
  color: #2563eb;
}

/* =========================
   SUPPORT HERO
========================= */
.support-hero {
  background: transparent;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.support-hero-content {
  max-width: 720px;
  margin: auto;
}

.support-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.support-hero p {
  font-size: 1.05rem;
  opacity: 0.95;
}

/* =========================
   SUPPORT CONTAINER
========================= */
.support-container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

/* =========================
   SUPPORT GRID
========================= */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 70px;
}

.support-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.support-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.support-card p {
  font-size: 0.95rem;
  color: #475569;
  margin-bottom: 14px;
}

.support-action {
  font-weight: 600;
  text-decoration: none;
  color: #2563eb;
}

.support-action:hover {
  text-decoration: underline;
}

/* =========================
   SECTION TITLE
========================= */
.section-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 30px;
}

/* =========================
   SUPPORT FORM
========================= */
.support-form {
  max-width: 520px;
  margin: auto;
  background: #ffffff;
  padding: 36px;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.06);
}

.form-group {
  margin-bottom: 18px;
}

.support-form input,
.support-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-size: 0.95rem;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  outline: none;
  font-family: inherit;
}

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

.support-form input:focus,
.support-form textarea:focus {
  border-color: #2563eb;
}

/* =========================
   SUBMIT BUTTON
========================= */
.support-submit {
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  background: #2563eb;
  color: #ffffff;
  cursor: pointer;
}

.support-submit:hover {
  background: #1e40af;
}
/* =========================
   FOOTER
========================= */
/* =========================
   FOOTER (WARM GLASS)
========================= */
.footer {
  background: transparent;
  color: #334155;
  padding: 96px 24px 32px;
  margin-top: 120px;
}

/* =========================
   FOOTER CONTAINER
========================= */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;

  /* Glass surface */
  background: linear-gradient(
    135deg,
    rgba(255, 246, 220, 0.85),
    rgba(250, 232, 200, 0.75),
    rgba(245, 220, 180, 0.65)
  );

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.45);

  padding: 56px 48px;

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

/* =========================
   BRAND
========================= */
.footer-brand h3 {
  color: #0f172a;
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 700;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
  color: #475569;
}

/* =========================
   LINKS
========================= */
.footer-links h4 {
  color: #1f2937;
  font-size: 15px;
  margin-bottom: 14px;
  font-weight: 600;
}

.footer-links a {
  display: block;
  color: #475569;
  font-size: 14px;
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
  color: #4f46e5;
  transform: translateX(2px);
}

/* =========================
   FOOTER BOTTOM
========================= */
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  text-align: center;

  font-size: 13px;
  color: #64748b;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    padding: 48px 32px;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }

  .footer {
    padding: 72px 16px 28px;
  }
}




/* =========================
   LOGOUT BUTTON
========================= */
#logoutBtn {
  appearance: none;
  border: none;
  background-color: #ef4444; /* red-500 */
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  margin-left: 12px;
}

/* Hover effect */
#logoutBtn:hover {
  background-color: #dc2626; /* red-600 */
}

/* Click feedback */
#logoutBtn:active {
  transform: scale(0.97);
}

/* If logout is an <a> tag */
#logoutBtn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Mobile responsiveness */
@media (max-width: 640px) {
  #logoutBtn {
    padding: 6px 12px;
    font-size: 13px;
  }
}



/* =========================
   ADMIN UPLOAD BUTTON
========================= */
/* =========================
   ADMIN UPLOAD BUTTON
========================= */
.user-name {
  margin-right: 10px;
  font-size: 14px;
  color: #374151;
}

.admin-btn {
  margin-right: 10px;
}

.admin-btn {
  background: #2563eb;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin-right: 10px;
}

.logout-btn {
  background: #ef4444;
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.user-name {
  margin-right: 10px;
  font-size: 18px;
}


/* Pop Up Toast */

.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  min-width: 260px;
  padding: 14px 18px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  z-index: 9999;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success { background: #16a34a; }
.toast.error { background: #dc2626; }
.toast.info { background: #2563eb; }

.hidden {
  display: none;
}


.navbar {
  height: 64px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

/* Brand container */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;               /* distance between logo and text */
  text-decoration: none;
}

/* Logo */
.brand-icon {
  height: 36px;
  width: auto;
  display: block;
}

/* Brand text */
.brand-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2563eb;
  line-height: 1;
}
.brand:hover .brand-text {
  color: black;
}


@media (max-width: 640px) {
  .brand-text {
    font-size: 1.2rem;
  }

  .brand-icon {
    height: 32px;
  }
}



/* =========================
   PROFILE WRAPPER
========================= */
.profile-wrapper {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 24px 120px;
}

/* =========================
   PROFILE CARD (WARM GLASS)
========================= */
.profile-card {
  width: 100%;
  max-width: 420px;

  padding: 40px 36px 44px;
  text-align: center;

  background: linear-gradient(
    135deg,
    rgba(255, 246, 220, 0.85),
    rgba(250, 232, 200, 0.75),
    rgba(245, 220, 180, 0.65)
  );

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.45);

  box-shadow:
    0 25px 70px rgba(0, 0, 0, 0.22),
    inset 0 0 0 1px rgba(255, 255, 255, 0.25);
}

/* =========================
   AVATAR
========================= */
.profile-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;

  margin: 0 auto 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(
    135deg,
    #6366f1,
    #4f46e5
  );

  color: #ffffff;
  font-size: 2.4rem;
  font-weight: 700;

  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.45);
}

/* =========================
   HEADINGS
========================= */
.profile-card h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: #0f172a;
}

.profile-subtitle {
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 28px;
}

/* =========================
   FORM
========================= */
.profile-form {
  text-align: left;
}

.profile-form .field {
  margin-bottom: 16px;
}

.profile-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #334155;
}

.profile-form input {
  width: 100%;
  padding: 13px 14px;

  font-size: 0.95rem;
  border-radius: 14px;

  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.6);

  color: #0f172a;

  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.profile-form input:focus {
  outline: none;
  border-color: rgba(79, 70, 229, 0.6);
  box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.18);
}

.profile-form input:disabled {
  background: rgba(255, 255, 255, 0.45);
  color: #64748b;
  cursor: not-allowed;
}

/* =========================
   BUTTONS
========================= */
.btn-primary {
  width: 100%;
  margin-top: 18px;

  padding: 14px;
  border-radius: 16px;
  border: none;

  background: linear-gradient(
    135deg,
    #6366f1,
    #4f46e5
  );

  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;

  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.45);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(79, 70, 229, 0.6);
}

.btn-primary:active {
  transform: scale(0.98);
}

/* Logout */
.btn-outline {
  width: 100%;
  margin-top: 14px;

  padding: 13px;
  border-radius: 16px;

  background: transparent;
  font-size: 0.95rem;
  font-weight: 600;

  cursor: pointer;
}

.btn-outline.danger {
  border: 2px solid rgba(239, 68, 68, 0.6);
  color: #dc2626;
}

.btn-outline.danger:hover {
  background: rgba(239, 68, 68, 0.08);
}

/* =========================
   TOAST
========================= */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;

  padding: 12px 16px;
  border-radius: 14px;

  font-size: 0.9rem;
  color: #ffffff;

  opacity: 0;
  z-index: 9999;

  transition: opacity 0.3s ease;
}

.toast.show {
  opacity: 1;
}

.toast.hidden {
  display: none;
}

.toast.success {
  background: #16a34a;
}

.toast.error {
  background: #dc2626;
}

.toast.info {
  background: #2563eb;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 480px) {
  .profile-card {
    padding: 36px 28px 40px;
  }

  .profile-wrapper {
    padding: 72px 16px 96px;
  }
}
