/* =============================================
   SECTIONS — About, Skills, Projects,
              Testimonials, Education, Contact
   ============================================= */

/* ---- ABOUT ---- */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 14px;
  margin-bottom: 2rem;
}

.about-main {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 0.5px solid var(--border);
}

.about-quote-mark {
  font-size: 32px;
  color: var(--light2);
  line-height: 1;
  margin-bottom: 0.75rem;
  font-family: Georgia, serif;
}

.about-main p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-sub);
}

.about-side {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-contact {
  background: var(--accent);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.ac-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.ac-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.6rem;
}

.ac-row:last-child { margin-bottom: 0; }

.ac-row i {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
}

.ac-row span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.about-lang {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  border: 0.5px solid var(--border);
}

.lang-lbl {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.lang-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.lang-row:last-child { margin-bottom: 0; }

.lang-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

.lang-dot { display: flex; gap: 3px; }

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--light2);
}

.dot.on { background: var(--accent); }

.about-status {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: 1.1rem;
  border: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1D9E75;
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.status-text {
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
}

.status-sub {
  font-size: 11px;
  color: var(--accent2);
  margin-top: 2px;
}

/* ---- SKILLS ---- */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 2rem;
}

.skill-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  border: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.skill-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.skill-icon i {
  font-size: 17px;
  color: var(--accent);
}

.skill-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}

/* ---- PROJECTS ---- */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 2rem;
  grid-auto-rows: 1fr;
}

.proj-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  border: 0.5px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 6px;
}

.proj-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.proj-ico {
  width: 38px;
  height: 38px;
  background: var(--light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proj-ico i {
  font-size: 18px;
  color: var(--accent);
}

.proj-n {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

.proj-d {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.proj-tag {
  display: inline-block;
  background: var(--light);
  color: var(--accent);
  font-size: 11px;
  padding: 2px 9px;
  border-radius: 20px;
  align-self: end;
}

/* ---- TESTIMONIALS ---- */
.testi-wrap { margin-bottom: 2rem; }

.testi-slider {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.testi-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-slide {
  min-width: 100%;
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  border: 0.5px solid var(--border);
}

.testi-top {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.quote-icon {
  font-size: 36px;
  color: var(--light2);
  line-height: 1;
  font-family: Georgia, serif;
  margin-top: -6px;
}

.testi-meta { flex: 1; }

.testi-author {
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
}

.testi-role {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.testi-stars {
  display: flex;
  gap: 2px;
  margin-top: 6px;
}

.testi-stars i {
  font-size: 13px;
  color: #EF9F27;
}

.testi-body {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.85;
  font-style: italic;
}

.testi-progress {
  height: 2px;
  background: var(--light);
  border-radius: 2px;
  margin-top: 10px;
  overflow: hidden;
}

.testi-progress-bar {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width linear;
}

.testi-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
}

.testi-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  border: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.testi-btn:hover { background: var(--light); }

.testi-btn i {
  font-size: 16px;
  color: var(--accent);
}

.testi-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.tdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--light2);
  cursor: pointer;
  transition: all 0.3s;
}

.tdot.on {
  background: var(--accent);
  width: 20px;
  border-radius: 3px;
}

.testi-counter {
  font-size: 12px;
  color: var(--muted);
}

/* ---- EDUCATION ---- */
.edu-wrap { margin-bottom: 2rem; }

.edu-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.edu-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  border: 0.5px solid var(--border);
  position: relative;
  overflow: hidden;
}

.edu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
}

.edu-year-badge {
  display: inline-block;
  background: var(--light);
  color: var(--accent);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 0.75rem;
}

.edu-deg {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}

.edu-school {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.edu-gpa {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #EAF3DE;
  color: #27500A;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}

.edu-gpa i { font-size: 13px; }

.edu-cert-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.edu-cert {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem;
  border: 0.5px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.cert-ico {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: #FAEEDA;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cert-ico i {
  font-size: 16px;
  color: #633806;
}

.cert-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

.cert-by {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

/* ---- CONTACT ---- */
.contact-split {
  background: var(--accent);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.cs-left h3 {
  color: #fff;
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.cs-left p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.cs-avail {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cs-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1D9E75;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.cs-avail span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

.cs-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cs-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}

.cs-card:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(4px);
}

.cs-icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cs-icon i {
  font-size: 17px;
  color: #fff;
}

.cs-card-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.cs-card-val {
  font-size: 13px;
  color: #fff;
  font-weight: 500;
}

.cs-arr {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s;
}

.cs-card:hover .cs-arr {
  color: rgba(255, 255, 255, 0.8);
}

.cs-arr i { font-size: 16px; }
