/* ============================================================
   Ma. Cristina Chamian – Portfolio CSS
   Modern, Professional, Recruiter-Friendly Design
   ============================================================ */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --primary: #be185d;
  --primary-dark: #9d174d;
  --primary-light: #fce7f3;
  --accent: #a855f7;
  --accent-light: #f3e8ff;
  --dark: #3b1a2e;
  --dark-2: #5c2d47;
  --text: #52344a;
  --text-light: #8b6178;
  --text-muted: #b48fa3;
  --border: #f0d6e8;
  --white: #ffffff;
  --bg-light: #fdf4f8;
  --bg-section: #fdf2f8;
  --success: #059669;
  --gradient-hero: linear-gradient(135deg, #6b1a42 0%, #c2185b 45%, #9c27b0 100%);
  --gradient-primary: linear-gradient(135deg, #ec4899, #a855f7);
  --gradient-dark: linear-gradient(135deg, #6b1a42, #4a0e35);
  --shadow-sm: 0 1px 3px rgba(190, 24, 93, 0.08);
  --shadow-md: 0 4px 16px rgba(190, 24, 93, 0.12);
  --shadow-lg: 0 10px 40px rgba(190, 24, 93, 0.15);
  --shadow-primary: 0 8px 32px rgba(236, 72, 153, 0.3);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ===== UTILITY ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.highlight-light {
  color: #93c5fd;
}

.dot { color: var(--primary); }

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
}

.section-header.light .section-label {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

.section-header.light .section-title {
  color: var(--white);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(107, 26, 66, 0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.nav-links .nav-cta {
  background: var(--gradient-primary);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600;
  box-shadow: var(--shadow-primary);
}

.nav-links .nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.4);
  background: rgba(255,255,255,0.1) !important;
  background: var(--gradient-primary) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
}

.shape-1 {
  width: 600px; height: 600px;
  background: #f9a8d4;
  top: -200px; right: -150px;
  animation: float 8s ease-in-out infinite;
}

.shape-2 {
  width: 400px; height: 400px;
  background: #e879f9;
  bottom: -100px; left: -100px;
  animation: float 10s ease-in-out infinite reverse;
}

.shape-3 {
  width: 200px; height: 200px;
  background: #fbcfe8;
  top: 40%; left: 30%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-20px) scale(1.02); }
}

.hero-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 64px;
}

.hero-avatar {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.avatar-circle {
  width: 220px;
  height: 270px;
  border-radius: 24px;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: 0 0 0 4px rgba(236,72,153,0.5), 0 0 0 10px rgba(236,72,153,0.18), var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.avatar-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 24px;
  display: block;
}

.avatar-circle::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 28px;
  border: 2px dashed rgba(255,255,255,0.25);
  animation: spin 20s linear infinite;
}

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

.avatar-badge {
  background: linear-gradient(135deg, #ec4899, #a855f7);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.45);
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 4px 12px rgba(236, 72, 153, 0.45); }
  50% { box-shadow: 0 4px 24px rgba(236, 72, 153, 0.75); }
}



.hero-content {
  flex: 1;
}

.hero-greeting {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.hero-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-titles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.title-tag {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}

.title-tag:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.3);
}

.title-tag i { font-size: 0.75rem; color: #93c5fd; }

.hero-tagline {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 36px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(37, 99, 235, 0.5);
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
  animation: scroll-bounce 1.5s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--dark);
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-text p strong {
  color: var(--dark);
  font-weight: 600;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-2);
  transition: var(--transition);
}

.highlight-item:hover {
  background: var(--primary-light);
  transform: translateX(4px);
}

.highlight-item i {
  color: var(--primary);
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.about-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}

.card-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-title i { color: var(--primary); }

.info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-list li > i {
  color: var(--primary);
  width: 18px;
  text-align: center;
  margin-top: 3px;
  flex-shrink: 0;
}

.info-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 2px;
}

.info-value {
  display: block;
  font-size: 0.88rem;
  color: var(--dark);
  font-weight: 500;
  line-height: 1.4;
}

.info-value.available {
  color: var(--success);
  font-weight: 600;
}

a.info-value:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* ===== SKILLS SECTION ===== */
.skills {
  padding: 100px 0;
  background: var(--bg-section);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.skill-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.skill-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.skill-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.skill-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.skill-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 18px;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.skill-tags span {
  background: var(--bg-light);
  color: var(--text);
  font-size: 0.73rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid var(--border);
  letter-spacing: 0.03em;
}

/* ===== EXPERIENCE SECTION ===== */
.experience {
  padding: 100px 0;
  background: var(--white);
}

.timeline {
  position: relative;
  padding-left: 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 28px;
  margin-bottom: 32px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 22px;
}

.marker-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--border);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--border);
  flex-shrink: 0;
  z-index: 1;
  transition: var(--transition);
}

.timeline-item.current .marker-dot {
  background: var(--primary);
  box-shadow: 0 0 0 2px var(--primary), 0 0 0 6px var(--primary-light);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 2px var(--primary), 0 0 0 6px rgba(37,99,235,0.2); }
  50% { box-shadow: 0 0 0 2px var(--primary), 0 0 0 10px rgba(37,99,235,0.1); }
}

.marker-line {
  flex: 1;
  width: 2px;
  background: linear-gradient(to bottom, var(--border), transparent);
  margin-top: 6px;
}

.timeline-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.timeline-item.current .timeline-card {
  border-color: var(--primary);
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow-primary);
  background: linear-gradient(135deg, #fdf2f8, var(--white));
}

.timeline-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.job-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  line-height: 1.4;
}

.job-company {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 7px;
}

.job-company i { color: var(--primary); font-size: 0.75rem; }

.job-period {
  background: var(--bg-section);
  color: var(--text-light);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

.job-period.current-badge {
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.job-period.current-badge i {
  font-size: 0.55rem;
  animation: pulse-dot 1.5s ease-in-out infinite;
  color: var(--success);
}

.job-duties {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.job-duties li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.6;
}

.job-duties li i {
  color: var(--success);
  font-size: 0.7rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* Earlier Roles */
.earlier-roles {
  background: var(--bg-light) !important;
  border-style: dashed !important;
}

.earlier-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.earlier-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  flex-wrap: wrap;
}

.earlier-title {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.88rem;
  min-width: 200px;
}

.earlier-company {
  color: var(--text-light);
  font-size: 0.82rem;
  flex: 1;
}

.earlier-period {
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ===== CERTIFICATIONS SECTION ===== */
.certifications {
  padding: 100px 0;
  background: var(--bg-section);
}

.cert-education-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.education-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 5px solid var(--accent);
}

.education-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.edu-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent);
  flex-shrink: 0;
}

.edu-details {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  align-items: center;
}

.edu-degree {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  width: 100%;
}

.edu-school {
  font-size: 0.95rem;
  color: var(--primary);
  font-weight: 600;
}

.edu-location, .edu-year {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.edu-location i, .edu-year i {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.certs-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.certs-title i { color: var(--accent); }

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

.cert-badge {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.cert-badge:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}

.cert-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--white);
  flex-shrink: 0;
}

.cert-info { flex: 1; }

.cert-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.4;
}

.cert-provider {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.cert-provider i { color: #0a66c2; font-size: 0.75rem; }

.cert-year {
  display: block;
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #6b1a42 0%, #4a0e35 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(37,99,235,0.08);
  pointer-events: none;
}

.contact-intro {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 640px;
  margin: 20px auto 0;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 56px 0 40px;
}

.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.contact-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}

.contact-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: var(--shadow-primary);
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}

.contact-link {
  color: #93c5fd;
  font-size: 0.9rem;
  font-weight: 600;
  word-break: break-all;
  transition: var(--transition);
}

a.contact-link:hover {
  color: var(--white);
  text-decoration: underline;
}

.availability-banner {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 24px;
  backdrop-filter: blur(10px);
}

.avail-icon {
  font-size: 2rem;
  color: var(--success);
  flex-shrink: 0;
}

.avail-text {
  flex: 1;
}

.avail-text strong {
  display: block;
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.avail-text p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin: 0;
}

/* ===== FOOTER ===== */
.footer {
  background: #2d0a1f;
  padding: 40px 0 24px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-wrap: wrap;
}

.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  margin-top: 6px;
  line-height: 1.5;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.footer-bottom {
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.25);
  font-size: 0.78rem;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-info-card {
    position: static;
    max-width: 520px;
  }
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cert-cards-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(107, 26, 66, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
    background: rgba(107, 26, 66, 0.98);
  }

  .nav-links a {
    font-size: 1.3rem;
    padding: 14px 28px;
  }

  .hamburger {
    display: flex;
    z-index: 1000;
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 36px;
  }

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

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

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

  .hero-tagline {
    margin: 0 auto 32px;
  }

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

  .timeline-item {
    grid-template-columns: 30px 1fr;
    gap: 18px;
  }

  .card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

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

  .availability-banner {
    flex-direction: column;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .education-card {
    flex-direction: column;
    text-align: center;
    padding: 28px 24px;
  }
}

@media (max-width: 480px) {
  .hero-name {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .hero-stats {
    gap: 16px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .btn {
    padding: 11px 22px;
    font-size: 0.85rem;
  }

  .timeline-card {
    padding: 20px 18px;
  }

  .about, .skills, .experience, .certifications, .contact {
    padding: 72px 0;
  }
}
