/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Poppins', sans-serif;
  background: #f0f0f6;
  color: #333;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* =============================================
   CSS VARIABLES
============================================= */
:root {
  --accent:       #ff0066;
  --accent-light: rgba(255, 0, 102, 0.08);
  --accent-hover: #e0005a;
  --white:        #ffffff;
  --bg:           #f0f0f6;
  --bg-alt:       #f8f8fc;
  --card-bg:      #ffffff;
  --text:         #333333;
  --text-soft:    #666666;
  --text-muted:   #999999;
  --border:       #e8e8f0;
  --shadow-sm:    0 2px 12px rgba(0,0,0,0.06);
  --shadow-md:    0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.12);
  --sidebar-w:    240px;
  --radius:       12px;
  --transition:   0.28s cubic-bezier(0.4,0,0.2,1);
}

/* =============================================
   ACCENT COLOR
============================================= */
.accent { color: var(--accent); }

/* =============================================
   LAYOUT — SIDEBAR + MAIN
============================================= */
.sidebar {
  position: fixed;
  top: 0; left: 0;
  width: var(--sidebar-w);
  height: 100vh;
  background: var(--white);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  z-index: 100;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition);
}
.sidebar__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 20px;
  overflow-y: auto;
}
.sidebar__brand { margin-bottom: 32px; }
.sidebar__logo {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--text);
  background: var(--accent);
  color: white;
  display: inline-block;
  padding: 4px 14px;
  border-radius: 6px;
}
.sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.sidebar__nav-link {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-soft);
  padding: 10px 14px;
  border-radius: 8px;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}
.sidebar__nav-link:hover,
.sidebar__nav-link.active {
  color: var(--accent);
  background: var(--accent-light);
  padding-left: 20px;
}
.sidebar__social {
  display: flex;
  gap: 8px;
  margin: 20px 0 16px;
}

.sidebar__social a {
  width: 34px; height: 34px;
 
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-soft);
  transition: all var(--transition);
}
  
 

.sidebar__social a:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-2px);
}
.sidebar__hire-btn {
  display: block;
  text-align: center;
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 12px;
  border-radius: 8px;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(255,0,102,0.3);
}
.sidebar__hire-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,0,102,0.35);
}

/* MAIN CONTENT */
.main-content {
  margin-left: var(--sidebar-w);
  min-height: 100vh;
}

/* =============================================
   MOBILE HEADER
============================================= */
.mobile-header {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 56px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 200;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}
.mobile-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.mobile-menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   SECTIONS
============================================= */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-header { margin-bottom: 48px; }
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin-top: 10px;
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}
.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 16px rgba(255,0,102,0.3);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,0,102,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  background: var(--accent-light);
}

/* =============================================
   SECTION 1: HOME / HERO
============================================= */
.section-home {
  padding: 80px 0 60px;
  background: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.home-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.home-welcome {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.home-heading {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 6px;
}
.home-subtitle {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.2;
    min-height: 48px;   /* prevents jumping */
  display: flex;
  align-items: center;
}
.home-bio {
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 440px;
}
.home-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
}
.home-meta-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.home-meta-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}
.home-socials {
  display: flex;
  gap: 8px;
}
.home-socials-skills {
  display: flex;
  gap: 8px;
}
.social-icon {
  width: 36px; height: 36px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: var(--text-soft);
  transition: all var(--transition);
}
.social-icon-skills {
  height: 36px;
  padding: 0 14px;                /* Space left-right */
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: 8px;              /* Rectangle shape */
  display: inline-flex;
  align-items: center;
  gap: 8px;                        /* Space between logo & text */
  font-size: 12px;
  font-weight: 600;
  color: var(--text-soft);
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
}

/* Logo size */
.social-icon-skills img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

/* Hover Effect */
.social-icon-skills:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
}
.social-icon:hover,
.si-git:hover, .si-gfg:hover, .si-fig:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255,0,102,0.3);
}
.home-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Photo */
.home-photo { display: flex; flex-direction: column; gap: 24px; }
.photo-frame {
  position: relative;
  width: 100%;
  max-width: 320px;
}
.photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  border: 3px solid var(--accent);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  transition: opacity 0.8s ease-in-out; /* smoother */
}
.photo-placeholder::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(255,0,102,0.1), transparent);
}
.photo-initials {
  font-size: 72px;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
}
.photo-badge {
  position: absolute;
  bottom: 20px; right: -12px;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}
.badge-icon { font-size: 22px; }
.photo-badge strong { display: block; font-size: 13px; color: var(--text); }
.photo-badge small { font-size: 11px; color: var(--text-muted); }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* Stats strip */
.home-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 320px;
}
.home-stat {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.home-stat:hover { border-color: var(--accent); transform: translateY(-3px); }
.stat-num {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* =============================================
   SECTION 2: SERVICES / WHAT I DO
============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: default;
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.service-icon {
  width: 44px; height: 44px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all var(--transition);
}
.service-icon svg {
  width: 22px; height: 22px;
  stroke: var(--accent);
}
.service-card:hover .service-icon {
  background: var(--accent);
}
.service-card:hover .service-icon svg { stroke: white; }
.service-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* =============================================
   SECTION 3: PORTFOLIO
============================================= */
.portfolio-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  background: white;
  border: 1.5px solid var(--border);
  color: var(--text-soft);
  transition: all var(--transition);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.portfolio-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.portfolio-thumb {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  position: relative;
  overflow: hidden;
}
.port-blue   { background: linear-gradient(135deg, #e8f4fd, #cce5ff); }
.port-pink   { background: linear-gradient(135deg, #fce4ec, #f8bbd9); }
.port-green  { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.port-purple { background: linear-gradient(135deg, #f3e5f5, #e1bee7); }
.port-orange { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }
.port-teal   { background: linear-gradient(135deg, #e0f7fa, #b2ebf2); }

.port-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,0,102,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.portfolio-item:hover .port-overlay { opacity: 1; }
.port-links { display: flex; gap: 10px; }
.port-link {
  padding: 8px 16px;
  background: white;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  transition: all var(--transition);
}
.port-link:hover { background: var(--accent); color: white; }
.portfolio-info { padding: 16px 18px; }
.port-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.portfolio-info h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 6px 0 6px;
  color: var(--text);
}
.portfolio-info p {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: 10px;
}
.port-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* =============================================
   SECTION 4: RESUME
============================================= */
.resume-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  background: white;
  padding: 6px;
  border-radius: 50px;
  border: 1px solid var(--border);
  display: inline-flex;
}
.resume-tab {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  transition: all var(--transition);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
}
.resume-tab.active {
  background: var(--accent);
  color: white;
}
.resume-tab:hover:not(.active) { color: var(--accent); }

.resume-panel { display: none; }
.resume-panel.active { display: block; }

.resume-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.resume-col-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.resume-col-icon { font-size: 20px; }
.resume-item {
  position: relative;
  padding-left: 18px;
  margin-bottom: 28px;
  border-left: 2px solid var(--border);
  transition: border-color var(--transition);
}
.resume-item:hover { border-left-color: var(--accent); }
.resume-year {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.resume-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.resume-org {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 4px;
}
.resume-grade {
  font-size: 13px;
  color: var(--text-soft);
  font-weight: 600;
  margin-bottom: 6px;
}
.resume-item p {
  font-size: 13.5px;
  color: var(--text-soft);
  line-height: 1.65;
}

/* Skill Bars */
.skill-bar-wrap { display: flex; flex-direction: column; gap: 18px; }
.skill-entry {}
.skill-info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
.skill-track {
  height: 6px;
  background: var(--bg);
  border-radius: 100px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.skill-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #ff6699);
  border-radius: 100px;
  width: 0;
  transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(255,0,102,0.3);
}

/* =============================================
   SECTION 5: CLIENTS / SERVICES LOGOS
============================================= */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
.client-logo {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-soft);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.client-logo:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Testimonials */
.testimonial-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}
.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.testimonial-quote {
  font-size: 60px;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.15;
  font-weight: 900;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  background: var(--accent-light);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
}
.testimonial-author strong { display: block; font-size: 14px; color: var(--text); }
.testimonial-author span { font-size: 12px; color: var(--text-muted); }

/* =============================================
   SECTION 6: PRICING
============================================= */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.pricing-card--featured {
  border: 2px solid var(--accent);
  transform: scale(1.04);
  box-shadow: var(--shadow-md);
  position: relative;
}
.pricing-card--featured:hover { transform: scale(1.04) translateY(-5px); }
.pricing-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent-light);
  color: var(--accent);
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.pricing-card--featured .pricing-badge {
  background: var(--accent);
  color: white;
}
.pricing-service {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}
.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  margin-bottom: 24px;
}
.pricing-currency { font-size: 22px; font-weight: 700; color: var(--accent); }
.pricing-price { font-size: 44px; font-weight: 800; color: var(--text); line-height: 1; }
.pricing-period { font-size: 13px; color: var(--text-muted); }
.pricing-features {
  text-align: left;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 13.5px;
  color: var(--text-soft);
  padding: 0 4px;
}
.pricing-features li:first-child,
.pricing-features li:nth-child(2),
.pricing-features li:nth-child(3) { color: var(--text); }

/* =============================================
   SECTION 7: BLOG
============================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.blog-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.blog-thumb {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  position: relative;
}
.blog-thumb--1 { background: linear-gradient(135deg, #fce4ec, #f8bbd9); }
.blog-thumb--2 { background: linear-gradient(135deg, #e8f4fd, #cce5ff); }
.blog-thumb--3 { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.blog-category {
  position: absolute;
  bottom: 10px; left: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: white;
  padding: 3px 10px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}
.blog-body { padding: 16px 18px 20px; }
.blog-date { font-size: 11px; color: var(--text-muted); font-weight: 600; display: block; margin-bottom: 8px; }
.blog-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}
.blog-body h3 a { transition: color var(--transition); }
.blog-body h3 a:hover { color: var(--accent); }
.blog-body p { font-size: 13px; color: var(--text-soft); line-height: 1.6; }

/* =============================================
   SECTION 8: CONTACT
============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}
.contact-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 28px;
}
.contact-items { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon {
  width: 40px; height: 40px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all var(--transition);
}
.contact-item:hover .contact-icon { background: var(--accent); }
.contact-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact-value { font-size: 14px; font-weight: 600; color: var(--text); }
.contact-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.csocial {
  padding: 8px 16px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  transition: all var(--transition);
}
.csocial:hover {
  background: var(--accent-light);
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* FORM */
.contact-form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group { margin-bottom: 16px; }
.form-control {
  width: 100%;
  height: 46px;
  padding: 0 16px;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  transition: all var(--transition);
  outline: none;
}
.form-control::placeholder { color: var(--text-muted); }
.form-control:focus {
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 3px rgba(255,0,102,0.08);
}
textarea.form-control { height: 120px; padding: 12px 16px; resize: vertical; }
select.form-control { cursor: pointer; }
.form-submit { width: 100%; justify-content: center; margin-top: 4px; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.form-success.show { display: block; animation: fadeScale 0.5s ease; }
.form-success-icon { font-size: 48px; margin-bottom: 12px; }
.form-success h3 { font-size: 22px; color: var(--text); margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--text-muted); }
@keyframes fadeScale { from{opacity:0;transform:scale(0.9)} to{opacity:1;transform:scale(1)} }

/* =============================================
   FOOTER
============================================= */
.site-footer {
  background: var(--text);
  padding: 28px 0;
}
.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-inner p { font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }

/* =============================================
   SCROLL TO TOP
============================================= */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px; height: 44px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(255,0,102,0.35);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 200;
  cursor: pointer;
}
.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-top:hover {
  background: var(--accent-hover);
  transform: translateY(-3px);
}

/* =============================================
   ANIMATIONS
============================================= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1);
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1024px) {
  :root { --sidebar-w: 200px; }
  .section-inner, .home-inner, .footer-inner { padding: 0 28px; }
}

@media (max-width: 860px) {
  .mobile-header { display: flex; }
  .sidebar {
    transform: translateX(-100%);
    z-index: 150;
  }
  .sidebar.open { transform: translateX(0); }
  .main-content {
    margin-left: 0;
    padding-top: 56px;
  }
  .home-inner { grid-template-columns: 1fr; gap: 40px; }
  .home-photo { align-items: center; }
  .photo-frame { max-width: 260px; }
  .home-stats { max-width: 280px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 380px; }
  .pricing-card--featured { transform: scale(1); }
  .pricing-card--featured:hover { transform: translateY(-5px); }
  .resume-two-col { grid-template-columns: 1fr; gap: 32px; }
  .testimonial-block { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .services-grid, .portfolio-grid, .blog-grid { grid-template-columns: 1fr; }
  .home-stats { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .resume-tabs { flex-direction: column; border-radius: 12px; }
  .resume-tab { border-radius: 8px; }
  .home-meta { flex-direction: column; align-items: flex-start; gap: 16px; }
  .home-meta-divider { display: none; }
}
