/* ============================================
   🍎 Section-Specific Styles — Premium iOS
   ============================================ */

/* ══════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* ── Animated Background Orbs ── */
.hero-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: var(--z-background);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.6;
  animation: orbFloat 25s infinite ease-in-out;
}

.hero-orb-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--orb-1), transparent 70%);
  top: -20%;
  left: -15%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--orb-2), transparent 70%);
  top: 30%;
  right: -15%;
  animation-delay: -8s;
}

.hero-orb-3 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--orb-3), transparent 70%);
  bottom: -10%;
  left: 25%;
  animation-delay: -16s;
}

.hero-orb-4 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--orb-4), transparent 70%);
  top: 15%;
  left: 55%;
  animation-delay: -5s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(40px, -60px) scale(1.08); }
  50% { transform: translate(-30px, 30px) scale(0.94); }
  75% { transform: translate(50px, 40px) scale(1.04); }
}

/* ── Hero Content ── */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  padding: var(--space-xl);
}

.hero-greeting {
  font-size: var(--fs-h4);
  font-weight: var(--fw-medium);
  color: var(--accent-blue);
  margin-bottom: var(--space-sm);
  letter-spacing: var(--ls-wide);
}

.hero-name {
  font-size: var(--fs-display);
  font-weight: var(--fw-extrabold);
  letter-spacing: -0.04em;
  margin-bottom: var(--space-sm);
  line-height: 1.05;
}

.hero-title {
  font-size: var(--fs-h3);
  font-weight: var(--fw-regular);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.hero-title .typed-text {
  color: var(--accent-blue);
  font-weight: var(--fw-semibold);
  border-right: 2px solid var(--accent-blue);
  padding-right: 4px;
  animation: blink-caret 0.8s infinite;
}

@keyframes blink-caret {
  0%, 100% { border-color: var(--accent-blue); }
  50% { border-color: transparent; }
}

.hero-description {
  font-size: var(--fs-body);
  color: var(--text-accent);
  max-width: 500px;
  margin: 0 auto var(--space-xl);
  line-height: var(--lh-relaxed);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-socials {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
  justify-content: center;
}

/* ── Scroll Indicator ── */
.scroll-indicator {
  position: absolute;
  bottom: var(--space-xl);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  color: var(--text-muted);
  font-size: var(--fs-caption);
  animation: bounceScroll 2s infinite;
}

.scroll-indicator svg {
  width: 18px;
  height: 18px;
}

@keyframes bounceScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Floating Glass Elements (Hero) ── */
.hero-float {
  position: absolute;
  border-radius: var(--radius-md);
  background: var(--glass-bg-3);
  backdrop-filter: var(--glass-blur-2);
  -webkit-backdrop-filter: var(--glass-blur-2);
  border: 1px solid var(--glass-border-3);
  padding: var(--space-sm) var(--space-md);
  font-size: var(--fs-small);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  animation: floatElement 8s infinite ease-in-out;
  z-index: 1;
  pointer-events: none;
  box-shadow: var(--glass-shadow-sm);
}

.hero-float svg {
  width: 16px;
  height: 16px;
  color: var(--accent-blue);
}

.hero-float-1 {
  top: 22%;
  left: 6%;
  animation-delay: 0s;
}

.hero-float-2 {
  top: 18%;
  right: 8%;
  animation-delay: -2s;
}

.hero-float-3 {
  bottom: 28%;
  left: 8%;
  animation-delay: -4s;
}

.hero-float-4 {
  bottom: 22%;
  right: 6%;
  animation-delay: -1s;
}

@keyframes floatElement {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}


/* ══════════════════════════════════════════════
   ABOUT SECTION
   ══════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.about-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-image {
  width: 220px;
  height: 220px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  position: relative;
  border: 2px solid var(--glass-border-3);
}

.about-image::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: var(--gradient-primary);
  z-index: -1;
  opacity: 0.5;
  filter: blur(20px);
  animation: glowPulse 4s infinite ease-in-out;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.4; filter: blur(20px); }
  50% { opacity: 0.7; filter: blur(25px); }
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a1628, #1a0a2e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.about-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.about-info h3 {
  font-size: var(--fs-h3);
  margin-bottom: 0;
}

.about-info p {
  line-height: var(--lh-relaxed);
  font-size: var(--fs-body);
}

.about-details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-xl);
  margin-top: var(--space-xs);
}

.about-detail {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.about-detail-label {
  font-size: var(--fs-caption);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  font-weight: var(--fw-medium);
}

.about-detail-value {
  font-size: var(--fs-small);
  color: var(--text-primary);
  font-weight: var(--fw-medium);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

/* ── Stats ── */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-2xl);
}

.stat-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}

.stat-number {
  font-size: var(--fs-h1);
  font-weight: var(--fw-extrabold);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: var(--fs-caption);
  color: var(--text-muted);
  font-weight: var(--fw-medium);
}


/* ══════════════════════════════════════════════
   SKILLS SECTION
   ══════════════════════════════════════════════ */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: var(--space-sm);
}

.skill-category {
  margin-bottom: var(--space-xl);
}

.skill-category-title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.skill-category-title svg {
  width: 18px;
  height: 18px;
  color: var(--accent-blue);
}

.skill-card {
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: default;
}

.skill-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--glass-bg-2);
  border: 1px solid var(--glass-border-1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.15rem;
}

.skill-name {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--text-primary);
}


/* ══════════════════════════════════════════════
   PROJECTS SECTION
   ══════════════════════════════════════════════ */
.projects-filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.filter-btn {
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  background: var(--glass-bg-1);
  border: 1px solid var(--glass-border-1);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--glass-bg-3);
  border-color: var(--accent-blue);
  color: var(--text-primary);
  box-shadow: 0 0 20px rgba(10, 132, 255, 0.15);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.project-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  transition: all var(--duration-normal) var(--ease-out);
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-lg);
}

.project-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

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

.project-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}

.project-image-placeholder.p1 {
  background: linear-gradient(135deg, #0a1040, #1a0a3e, #0a2040);
}
.project-image-placeholder.p2 {
  background: linear-gradient(135deg, #0a200a, #082828, #0a0a30);
}
.project-image-placeholder.p3 {
  background: linear-gradient(135deg, #200a0a, #201a0a, #0a0a20);
}
.project-image-placeholder.p4 {
  background: linear-gradient(135deg, #050a20, #100520, #200520);
}
.project-image-placeholder.p5 {
  background: linear-gradient(135deg, #0a2020, #050a20, #0a0508);
}
.project-image-placeholder.p6 {
  background: linear-gradient(135deg, #20200a, #0a2005, #050a20);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(5, 5, 16, 0.4) 50%,
    rgba(5, 5, 16, 0.85) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-overlay-actions {
  display: flex;
  gap: var(--space-xs);
}

.project-body {
  padding: var(--space-md) var(--space-lg);
}

.project-title {
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.project-description {
  font-size: var(--fs-small);
  color: var(--text-accent);
  margin-bottom: var(--space-md);
  line-height: var(--lh-normal);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.project-tag {
  padding: 2px var(--space-sm);
  background: var(--glass-bg-1);
  border: 1px solid var(--glass-border-1);
  border-radius: var(--radius-full);
  font-size: var(--fs-caption);
  color: var(--text-muted);
}

/* ── Featured Project ── */
.project-card.featured {
  grid-column: span 2;
}

.project-card.featured .project-image {
  height: 260px;
}


/* ══════════════════════════════════════════════
   EXPERIENCE SECTION
   ══════════════════════════════════════════════ */
.timeline {
  position: relative;
  max-width: 750px;
  margin: 0 auto;
  padding-left: var(--space-2xl);
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--accent-blue),
    var(--accent-purple),
    var(--accent-pink),
    transparent
  );
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-xl);
}

.timeline-dot {
  position: absolute;
  left: calc(-1 * var(--space-2xl) + 5px);
  top: var(--space-lg);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: 3px solid var(--bg-primary);
  box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.3), 0 0 15px rgba(10, 132, 255, 0.2);
  z-index: 1;
}

.timeline-card {
  padding: var(--space-lg);
}

.timeline-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  flex-wrap: wrap;
}

.timeline-role {
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--text-primary);
}

.timeline-company {
  font-size: var(--fs-small);
  color: var(--accent-blue);
  font-weight: var(--fw-medium);
}

.timeline-date {
  font-size: var(--fs-caption);
  color: var(--text-muted);
  font-weight: var(--fw-medium);
  white-space: nowrap;
}

.timeline-description {
  font-size: var(--fs-small);
  color: var(--text-accent);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
}

.timeline-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}


/* ══════════════════════════════════════════════
   TESTIMONIALS SECTION
   ══════════════════════════════════════════════ */
.testimonials-wrapper {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: var(--space-lg);
  transition: transform var(--duration-slow) var(--ease-out);
}

.testimonial-card {
  min-width: 360px;
  max-width: 360px;
  padding: var(--space-lg);
  flex-shrink: 0;
}

.testimonial-quote {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
  font-style: italic;
  position: relative;
  padding-left: var(--space-lg);
}

.testimonial-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 2rem;
  color: var(--accent-blue);
  font-style: normal;
  font-weight: var(--fw-bold);
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-small);
  font-weight: var(--fw-bold);
  color: white;
  flex-shrink: 0;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
}

.testimonial-role {
  font-size: var(--fs-caption);
  color: var(--text-muted);
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.testimonials-dots {
  display: flex;
  gap: var(--space-xs);
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--glass-bg-3);
  border: 1px solid var(--glass-border-2);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
}

.testimonial-dot.active {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  width: 24px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 10px rgba(10, 132, 255, 0.4);
}


/* ══════════════════════════════════════════════
   CONTACT SECTION
   ══════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info h3 {
  font-size: var(--fs-h3);
  margin-bottom: 0;
}

.contact-info > p {
  color: var(--text-accent);
  line-height: var(--lh-relaxed);
  font-size: var(--fs-small);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--glass-bg-2);
  border: 1px solid var(--glass-border-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-blue);
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
}

.contact-item-text {
  display: flex;
  flex-direction: column;
}

.contact-item-label {
  font-size: var(--fs-caption);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
}

.contact-item-value {
  font-size: var(--fs-small);
  color: var(--text-primary);
  font-weight: var(--fw-medium);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.contact-socials {
  display: flex;
  gap: var(--space-xs);
  margin-top: var(--space-xs);
}

/* ── Contact Form ── */
.contact-form {
  padding: var(--space-xl);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  font-size: var(--fs-caption);
  font-weight: var(--fw-medium);
  color: var(--text-secondary);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-submit {
  width: 100%;
  margin-top: var(--space-xs);
}


/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--glass-border-1);
  position: relative;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-md);
}

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

.footer-name {
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--text-primary);
}

.footer-copy {
  font-size: var(--fs-caption);
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: var(--space-lg);
}

.footer-link {
  font-size: var(--fs-caption);
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--duration-normal) var(--ease-out);
}

.footer-link:hover {
  color: var(--text-primary);
}

/* ── Back to Top ── */
.back-to-top {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  z-index: var(--z-card);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--duration-normal) var(--ease-out);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

/* ══════════════════════════════════════════════
   ✨ LIQUID GLASS — LIGHT THEME OVERRIDES
   Apple Vision Pro / visionOS inspired
   ══════════════════════════════════════════════ */

/* ── Orbs — larger, more vibrant, dreamy ── */
[data-theme="light"] .hero-orb {
  opacity: 1;
  filter: blur(120px);
}

[data-theme="light"] .hero-orb-1 {
  width: 800px;
  height: 800px;
}

[data-theme="light"] .hero-orb-2 {
  width: 700px;
  height: 700px;
}

/* ── Hero floats — frosted look ── */
[data-theme="light"] .hero-float {
  background: var(--glass-bg-3);
  border-color: var(--glass-border-3);
  box-shadow: var(--glass-shadow);
}

[data-theme="light"] .hero-float svg {
  color: var(--accent-purple);
}

/* ── Avatar ── */
[data-theme="light"] .about-avatar-placeholder {
  background: var(--avatar-bg);
}

/* ── About image glow — softer ── */
[data-theme="light"] .about-image::before {
  opacity: 0.3;
  filter: blur(30px);
}

/* ── Project placeholders — pastel liquid gradients ── */
[data-theme="light"] .project-image-placeholder.p1 {
  background: linear-gradient(135deg, #c7d2fe, #ddd6fe, #c4b5fd);
}
[data-theme="light"] .project-image-placeholder.p2 {
  background: linear-gradient(135deg, #a7f3d0, #bae6fd, #c7d2fe);
}
[data-theme="light"] .project-image-placeholder.p3 {
  background: linear-gradient(135deg, #fecaca, #fed7aa, #ddd6fe);
}
[data-theme="light"] .project-image-placeholder.p4 {
  background: linear-gradient(135deg, #bfdbfe, #c4b5fd, #f5d0fe);
}
[data-theme="light"] .project-image-placeholder.p5 {
  background: linear-gradient(135deg, #a5f3fc, #bae6fd, #e9d5ff);
}
[data-theme="light"] .project-image-placeholder.p6 {
  background: linear-gradient(135deg, #fde68a, #bbf7d0, #bfdbfe);
}

/* ── Project overlay ── */
[data-theme="light"] .project-overlay {
  background: var(--project-overlay-bg);
}

[data-theme="light"] .project-overlay .btn-icon {
  background: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.8);
  color: var(--text-primary);
}

/* ── Timeline — vivid gradient line ── */
[data-theme="light"] .timeline::before {
  background: linear-gradient(
    to bottom,
    var(--accent-blue),
    var(--accent-purple),
    var(--accent-pink),
    transparent
  );
  opacity: 0.6;
}

[data-theme="light"] .timeline-dot {
  border-color: var(--bg-primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.15), 0 0 15px rgba(0, 102, 255, 0.08);
}

/* ── Stat numbers — keep gradient vibrant ── */
[data-theme="light"] .stat-number {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Glass input focus — blue ring ── */
[data-theme="light"] .glass-input:focus,
[data-theme="light"] .glass-textarea:focus {
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1), 0 4px 12px rgba(0, 0, 0, 0.06);
}

/* ── Filter buttons ── */
[data-theme="light"] .filter-btn.active {
  box-shadow: 0 0 15px rgba(0, 102, 255, 0.12);
}

/* ── Section label ── */
[data-theme="light"] .section-label {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.7);
}

/* ── Status dot — brighter ── */
[data-theme="light"] .status-dot {
  box-shadow: 0 0 6px rgba(40, 205, 81, 0.5);
}

/* ── Skill icon bg ── */
[data-theme="light"] .skill-icon {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.6);
}

/* ── Nav inner — liquid frosted glass ── */
[data-theme="light"] .nav-inner {
  background: rgba(255, 255, 255, 0.70);
  border-bottom-color: rgba(255, 255, 255, 0.80);
}

/* ── Back to top ── */
[data-theme="light"] .back-to-top {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.7);
}

/* ── Footer border ── */
[data-theme="light"] .footer {
  border-top-color: rgba(0, 0, 0, 0.06);
}

/* ── Testimonial avatar gradient stays ── */
[data-theme="light"] .testimonial-avatar {
  color: #ffffff;
}

/* ── Progress bar (if visible) ── */
[data-theme="light"] .progress-bar {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.06);
}

/* ── Testimonial dot active ── */
[data-theme="light"] .testimonial-dot.active {
  box-shadow: 0 0 8px rgba(0, 102, 255, 0.3);
}

/* ── Mobile menu overlay ── */
[data-theme="light"] .nav-mobile {
  background: rgba(240, 240, 245, 0.95);
}
