/* ========================================
   TARIQ MOHMAD SHIEKH - PORTFOLIO
   Pure CSS (No Tailwind, No Preprocessors)
   ======================================== */

/* ----------------------------------------
   CSS Variables / Design Tokens
---------------------------------------- */
:root {
  --background: hsl(240, 20%, 6%);
  --foreground: hsl(40, 20%, 98%);
  --card: hsl(240, 15%, 10%);
  --card-foreground: hsl(40, 20%, 98%);
  --primary: hsl(270, 77%, 40%);
  --primary-foreground: hsl(40, 20%, 98%);
  --secondary: hsl(0, 70%, 70%);
  --secondary-foreground: hsl(40, 20%, 98%);
  --accent: hsl(48, 90%, 60%);
  --accent-foreground: hsl(240, 20%, 6%);
  --muted: hsl(240, 15%, 15%);
  --muted-foreground: hsl(240, 10%, 60%);
  --border: hsl(270, 30%, 25%);
  --violet: hsl(270, 77%, 40%);
  --violet-glow: hsl(270, 77%, 50%);
  --coral: hsl(0, 70%, 70%);
  --coral-glow: hsl(0, 70%, 80%);
  --gold: hsl(48, 90%, 60%);
  --gold-glow: hsl(48, 90%, 70%);
  --radius: 0.75rem;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ----------------------------------------
   Reset & Base
---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font-body); background-color: var(--background); color: var(--foreground); line-height: 1.6; min-height: 100vh; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ----------------------------------------
   Utilities
---------------------------------------- */
.gradient-text {
  background: linear-gradient(135deg, var(--violet) 0%, var(--coral) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.coral-glow { box-shadow: 0 0 40px hsla(0, 70%, 70%, 0.3); }

/* ----------------------------------------
   Animations
---------------------------------------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes bounce { 0%, 100% { transform: translateY(-25%); animation-timing-function: cubic-bezier(0.8,0,1,1); } 50% { transform: translateY(0); animation-timing-function: cubic-bezier(0,0,0.2,1); } }

.animate-fade-up { opacity: 0; animation: fadeUp 0.8s ease-out forwards; }
.animate-fade-in { opacity: 0; animation: fadeIn 0.6s ease-out forwards; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4,0,0.6,1) infinite; }
.animate-bounce { animation: bounce 1s infinite; }
.animation-delay-200 { animation-delay: 200ms; }
.animation-delay-400 { animation-delay: 400ms; }
.animation-delay-600 { animation-delay: 600ms; }
.animation-delay-800 { animation-delay: 800ms; }

/* Scroll animations */
.animate-on-scroll { opacity: 0; transform: translateY(2rem); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

/* ----------------------------------------
   NAVIGATION
---------------------------------------- */
.nav-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 0 1rem; transition: all 0.3s; }
.nav-header.scrolled { background: hsla(240,15%,10%,0.8); border-bottom: 1px solid hsla(270,30%,25%,0.5); backdrop-filter: blur(16px); box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.nav-container { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 56px; }
.nav-logo { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; background: linear-gradient(135deg, var(--violet), var(--coral)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; cursor: pointer; padding: 0.5rem; transition: opacity 0.3s; }
.nav-logo:hover { opacity: 0.8; }
.nav-links { display: none; gap: 1.5rem; }
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-link { font-size: 0.875rem; color: var(--muted-foreground); transition: color 0.2s; padding: 0.5rem; position: relative; }
.nav-link:hover { color: var(--foreground); }
.nav-link::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--primary); transition: width 0.3s; }
.nav-link:hover::after { width: 100%; }
.nav-toggle { display: flex; padding: 0.5rem; color: var(--muted-foreground); transition: color 0.3s; }
.nav-toggle:hover { color: var(--foreground); }
@media (min-width: 768px) { .nav-toggle { display: none; } }
.nav-toggle-icon { width: 1.25rem; height: 1.25rem; }
.nav-mobile-menu { display: none; flex-direction: column; padding: 1rem; background: hsla(240,15%,10%,0.98); border-top: 1px solid hsla(270,30%,25%,0.5); }
.nav-mobile-menu.open { display: flex; }
.nav-mobile-link { padding: 0.5rem 0.75rem; color: var(--muted-foreground); font-size: 0.875rem; transition: all 0.2s; border-radius: 0.5rem; }
.nav-mobile-link:hover { color: var(--foreground); background: hsla(240,15%,10%,0.5); }

/* ----------------------------------------
   Layout
---------------------------------------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.container-narrow { max-width: 56rem; margin: 0 auto; padding: 0 1rem; }
.section { padding: 7rem 1rem; position: relative; }
.section-muted { background: hsla(240, 15%, 15%, 0.3); }
.section-header { text-align: center; margin-bottom: 5rem; }
.section-label-wrapper { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 1.5rem; }
.section-label-line { height: 1px; width: 3rem; }
.section-label-line-left { background: linear-gradient(to right, transparent, hsla(270,77%,40%,0.6), var(--primary)); }
.section-label-line-right { background: linear-gradient(to left, transparent, hsla(270,77%,40%,0.6), var(--primary)); }
.section-label { display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); padding: 0 0.5rem; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; display: inline-block; margin-bottom: 1.5rem; }
.section-ornament { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; }
.ornament-line { height: 4px; width: 4rem; border-radius: 9999px; }
.ornament-line-left { background: linear-gradient(to right, transparent, var(--primary)); }
.ornament-line-right { background: linear-gradient(to left, transparent, var(--primary)); }
.ornament-dot { width: 0.5rem; height: 0.5rem; border-radius: 50%; background: var(--secondary); }
.section-desc { color: var(--muted-foreground); font-size: 1.125rem; max-width: 42rem; margin: 0 auto; line-height: 1.7; }
.section-divider-line { height: 1px; background: linear-gradient(to right, transparent, hsla(270,30%,25%,0.5), transparent); max-width: 80%; margin: 0 auto; }

/* ----------------------------------------
   HERO SECTION
---------------------------------------- */
.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 8rem 1rem; }
.hero-bg { position: absolute; inset: 0; }
.hero-gradient-1 { position: absolute; inset: 0; background: linear-gradient(to bottom, var(--background), var(--background), hsla(240,15%,15%,0.3)); }
.hero-gradient-2 { position: absolute; inset: 0; background: linear-gradient(to top right, hsla(270,77%,40%,0.05), transparent, hsla(0,70%,70%,0.05)); }
.hero-blob { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-blob-1 { top: 33%; left: 25%; width: 500px; height: 500px; background: hsla(270,77%,40%,0.15); filter: blur(150px); }
.hero-blob-2 { bottom: 25%; right: 25%; width: 400px; height: 400px; background: hsla(0,70%,70%,0.1); filter: blur(120px); }
.hero-content { position: relative; z-index: 10; text-align: center; max-width: 56rem; margin: 0 auto; }
.hero-photo-wrapper { margin-bottom: 2rem; display: inline-block; position: relative; }
.hero-photo-glow { position: absolute; inset: 0; background: linear-gradient(to bottom right, var(--primary), var(--coral), var(--gold)); border-radius: 50%; filter: blur(20px); opacity: 0.5; transform: scale(1.25); }
.hero-photo { position: relative; width: 9rem; height: 9rem; border-radius: 50%; object-fit: cover; border: 2px solid hsla(270,77%,40%,0.5); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); }
@media (min-width: 768px) { .hero-photo { width: 11rem; height: 11rem; } }
.hero-name-label { margin-top: 1rem; font-size: 1.875rem; font-weight: 600; color: var(--primary); letter-spacing: 0.05em; }
.hero-headline-group { margin-top: -1rem; }
.hero-subtitle { font-size: 1rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--foreground); margin-bottom: 1rem; }
@media (min-width: 768px) { .hero-subtitle { font-size: 1.125rem; } }
.hero-title { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 4.5rem); font-weight: 800; line-height: 1.1; }
.hero-title-alt { color: var(--foreground); font-weight: 800; }
.hero-value-line { font-size: 1.25rem; font-weight: 700; color: var(--primary); margin-top: 2.5rem; margin-bottom: 1.25rem; max-width: 48rem; margin-left: auto; margin-right: auto; line-height: 1.5; letter-spacing: -0.01em; }
@media (min-width: 768px) { .hero-value-line { font-size: 1.5rem; } }
.hero-tagline { font-size: 1.125rem; color: var(--muted-foreground); margin-bottom: 2.5rem; max-width: 42rem; margin-left: auto; margin-right: auto; line-height: 1.7; }
.hero-cta { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.hero-cta-btn { display: inline-flex; align-items: center; padding: 1rem 2.5rem; border-radius: 0.5rem; background: linear-gradient(135deg, var(--violet), var(--coral)); color: var(--foreground); font-size: 1.125rem; font-weight: 600; transition: all 0.3s; box-shadow: 0 0 60px hsla(270,77%,40%,0.4); }
.hero-cta-btn:hover { transform: scale(1.03); }
.hero-scroll-indicator { margin-top: 2rem; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: var(--muted-foreground); }
.hero-scroll-text { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* ----------------------------------------
   ABOUT SECTION
---------------------------------------- */
.about-text-centered { text-align: center; max-width: 48rem; margin: 0 auto; display: flex; flex-direction: column; gap: 1.5rem; }
.about-lead { font-size: 1.125rem; line-height: 1.7; color: hsla(40,20%,98%,0.9); }
.about-body { font-size: 1rem; line-height: 1.7; color: var(--muted-foreground); max-width: 48rem; margin: 0 auto; }
.about-quote { font-size: 1.125rem; line-height: 1.7; color: hsla(40,20%,98%,0.9); font-weight: 600; }
.about-highlight { color: var(--secondary); font-weight: 600; }

/* ----------------------------------------
   SERVICES SECTION
---------------------------------------- */
.services-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card { position: relative; padding: 1.5rem; border-radius: 1rem; background: var(--card); border: 1px solid hsla(270,30%,25%,0.5); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05); transition: all 0.5s; overflow: hidden; }
.service-card:hover { box-shadow: 0 25px 50px -12px hsla(270,77%,40%,0.1); border-color: hsla(270,77%,40%,0.3); }
.service-icon-wrapper { width: 3.5rem; height: 3.5rem; border-radius: 0.75rem; background: hsla(270,77%,40%,0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; transition: background 0.3s; }
.service-card:hover .service-icon-wrapper,
.why-me-card:hover .service-icon-wrapper,
.capability-card:hover .service-icon-wrapper { background: hsla(270,77%,40%,0.2); }
.service-icon { width: 1.75rem; height: 1.75rem; color: var(--primary); transition: color 0.3s; }
.service-card:hover .service-icon,
.why-me-card:hover .service-icon,
.capability-card:hover .service-icon { color: var(--secondary); }
.service-title { font-size: 1rem; font-weight: 600; color: var(--foreground); margin-bottom: 0.75rem; }
.service-desc { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; margin-bottom: 1.25rem; }
.service-benefits { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.service-benefits li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.75rem; color: hsla(40,20%,98%,0.8); }
.benefit-check { color: var(--secondary); font-weight: 700; flex-shrink: 0; }

/* ----------------------------------------
   DIGITAL PRESENCE SECTION
---------------------------------------- */
.capabilities-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .capabilities-grid { grid-template-columns: repeat(2, 1fr); } }
.capability-card { position: relative; padding: 2rem; border-radius: 1rem; background: var(--card); border: 1px solid hsla(270,30%,25%,0.5); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05); transition: all 0.5s; overflow: hidden; }
.capability-card:hover { box-shadow: 0 25px 50px -12px hsla(270,77%,40%,0.1); border-color: hsla(270,77%,40%,0.3); }
.capability-inner { display: flex; align-items: flex-start; gap: 1.25rem; }
.capability-inner .service-icon-wrapper { flex-shrink: 0; }
.capability-content { flex: 1; }

/* ----------------------------------------
   EXPERIENCE SECTION
---------------------------------------- */
.experience-section { background: hsla(240,15%,15%,0.3); }
.experience-timeline { position: relative; max-width: 900px; margin: 0 auto; }
.experience-timeline::before { content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--violet), var(--coral), var(--gold)); }
@media (min-width: 768px) { .experience-timeline::before { left: 50%; transform: translateX(-50%); } }
.experience-item { position: relative; padding-left: 60px; padding-bottom: 2.5rem; }
@media (min-width: 768px) { .experience-item { padding-left: 0; width: 50%; } .experience-item:nth-child(odd) { padding-right: 40px; text-align: right; margin-left: 0; } .experience-item:nth-child(even) { padding-left: 40px; margin-left: 50%; } }
.experience-dot { position: absolute; left: 11px; top: 0.5rem; width: 18px; height: 18px; border-radius: 50%; background: var(--primary); border: 3px solid var(--background); box-shadow: 0 0 15px var(--violet-glow); z-index: 1; }
@media (min-width: 768px) { .experience-dot { left: auto; right: -9px; top: 0.5rem; } .experience-item:nth-child(even) .experience-dot { left: -9px; right: auto; } }
.experience-card { background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 1.5rem; transition: all 0.3s; }
.experience-card:hover { border-color: hsla(270,77%,40%,0.5); box-shadow: 0 10px 40px -10px hsla(270,77%,40%,0.3); transform: translateY(-4px); }
.experience-date { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; font-weight: 500; color: var(--secondary); margin-bottom: 0.75rem; }
.experience-date svg { width: 1rem; height: 1rem; }
.experience-company { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.25rem; }
.experience-role { font-size: 1rem; font-weight: 600; background: linear-gradient(135deg, var(--violet), var(--coral)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 0.5rem; }
.experience-location { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.25rem; }
@media (min-width: 768px) { .experience-item:nth-child(odd) .experience-location { justify-content: flex-end; } }
.experience-location svg { width: 0.875rem; height: 0.875rem; }
.experience-desc { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; }
.experience-desc ul { list-style: none; padding: 0; margin: 0; }
.experience-desc li { position: relative; padding-left: 1.25rem; margin-bottom: 0.5rem; }
.experience-desc li::before { content: '▹'; position: absolute; left: 0; color: var(--secondary); }
@media (min-width: 768px) { .experience-item:nth-child(odd) .experience-desc li { padding-left: 0; padding-right: 1.25rem; } .experience-item:nth-child(odd) .experience-desc li::before { left: auto; right: 0; } }

/* ----------------------------------------
   HONORS & AWARDS
---------------------------------------- */
.honors-section { padding: 7rem 1rem; }
.honors-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-bottom: 2.5rem; }
@media (min-width: 768px) { .honors-stats { grid-template-columns: repeat(4, 1fr); } }
.honors-stat { text-align: center; padding: 1rem; border-radius: 0.75rem; background: hsla(240,15%,10%,0.5); border: 1px solid hsla(270,30%,25%,0.5); }
.honors-stat-value { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; }
.honors-stat-value.amber { color: #f59e0b; }
.honors-stat-value.emerald { color: #10b981; }
.honors-stat-value.yellow { color: #facc15; }
.honors-stat-value.primary { color: var(--primary); }
.honors-stat-label { font-size: 0.75rem; color: var(--muted-foreground); }
.honors-grid { display: grid; gap: 0.75rem; }
@media (min-width: 640px) { .honors-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .honors-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1280px) { .honors-grid { grid-template-columns: repeat(4, 1fr); } }
.award-card { display: flex; align-items: flex-start; gap: 0.5rem; padding: 0.75rem; border-radius: 0.5rem; background: hsla(240,15%,10%,0.4); border: 1px solid hsla(270,30%,25%,0.4); transition: all 0.3s; }
.award-card:hover { border-color: hsla(270,77%,40%,0.5); background: hsla(240,15%,10%,0.7); }
.award-icon { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.125rem; }
.award-icon.amber { color: #f59e0b; }
.award-icon.emerald { color: #10b981; }
.award-icon.yellow { color: #facc15; }
.award-icon.primary { color: var(--primary); }
.award-content { min-width: 0; flex: 1; }
.award-title { font-size: 0.75rem; font-weight: 600; color: var(--foreground); line-height: 1.3; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.award-meta { font-size: 0.625rem; color: var(--muted-foreground); margin-top: 0.125rem; }

/* ----------------------------------------
   PROJECTS
---------------------------------------- */
.projects-section { background: hsla(240,15%,15%,0.3); }
.projects-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; max-width: 56rem; margin: 0 auto; }
@media (min-width: 768px) { .projects-grid { grid-template-columns: repeat(3, 1fr); } }
.project-card { position: relative; border-radius: 0.75rem; overflow: hidden; background: var(--card); border: 1px solid hsla(270,30%,25%,0.5); cursor: pointer; transition: all 0.5s; }
.project-card:hover { border-color: hsla(270,77%,40%,0.5); transform: scale(1.05); box-shadow: 0 10px 40px -10px hsla(270,77%,40%,0.1); }
.project-thumbnail { aspect-ratio: 16/9; position: relative; overflow: hidden; }
.project-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.project-card:hover .project-thumbnail img { transform: scale(1.1); }
.project-overlay { position: absolute; inset: 0; background: hsla(240,20%,6%,0.8); opacity: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; transition: opacity 0.3s; padding: 0.75rem; }
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay svg { width: 2rem; height: 2rem; color: var(--primary); transition: transform 0.3s; }
.project-card:hover .project-overlay svg { transform: scale(1.1); }
.project-overlay-title { font-size: 0.875rem; font-weight: 500; color: var(--foreground); text-align: center; }
.project-badge { position: absolute; top: 0.5rem; padding: 0.25rem 0.5rem; border-radius: 9999px; font-size: 0.75rem; font-weight: 500; color: white; z-index: 2; }
.project-badge-right { right: 0.5rem; }
.badge-youtube { background: #dc2626; }
.badge-website { background: #2563eb; }
.badge-app { background: #16a34a; }
.badge-linkedin { background: #0A66C2; }

/* ----------------------------------------
   AI PROJECTS (Digital Content)
---------------------------------------- */
.ai-projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; max-width: 56rem; margin: 0 auto; }
@media (min-width: 768px) { .ai-projects-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .ai-projects-grid { grid-template-columns: repeat(5, 1fr); } }
.ai-project-card { position: relative; aspect-ratio: 1; border-radius: 0.75rem; overflow: hidden; cursor: pointer; background: var(--card); border: 1px solid var(--border); transition: all 0.3s; }
.ai-project-card:hover { border-color: hsla(270,77%,40%,0.5); transform: scale(1.05); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5); }
.ai-project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.ai-project-card:hover img { transform: scale(1.1); }
.ai-project-overlay { position: absolute; inset: 0; background: hsla(240,20%,6%,0.8); opacity: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; transition: opacity 0.3s; }
.ai-project-card:hover .ai-project-overlay { opacity: 1; }
.ai-project-overlay svg { width: 2rem; height: 2rem; color: var(--primary); margin-bottom: 0.5rem; }
.ai-project-overlay span { font-size: 0.875rem; font-weight: 500; color: var(--foreground); }

/* ----------------------------------------
   VIDEO GALLERY
---------------------------------------- */
.video-section { background: hsla(240,15%,15%,0.3); }
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; max-width: 56rem; margin: 0 auto; }
@media (min-width: 768px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .video-grid { grid-template-columns: repeat(4, 1fr); } }
.video-card { position: relative; cursor: pointer; border-radius: 0.75rem; overflow: hidden; border: 1px solid hsla(270,30%,25%,0.5); background: hsla(240,15%,10%,0.5); backdrop-filter: blur(8px); transition: all 0.3s; }
.video-card:hover { border-color: hsla(270,77%,40%,0.5); box-shadow: 0 10px 40px -10px hsla(270,77%,40%,0.1); }
.video-thumbnail { position: relative; aspect-ratio: 16/9; overflow: hidden; }
.video-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.video-card:hover .video-thumbnail img { transform: scale(1.1); }
.video-overlay { position: absolute; inset: 0; background: hsla(240,20%,6%,0.6); opacity: 0; display: flex; align-items: center; justify-content: center; transition: opacity 0.3s; }
.video-card:hover .video-overlay { opacity: 1; }
.video-play-btn { width: 4rem; height: 4rem; border-radius: 50%; background: var(--coral); display: flex; align-items: center; justify-content: center; transform: scale(0.75); transition: transform 0.3s; }
.video-card:hover .video-play-btn { transform: scale(1); }
.video-play-btn svg { width: 2rem; height: 2rem; color: var(--foreground); fill: currentColor; margin-left: 0.25rem; }
.video-yt-badge { position: absolute; top: 0.75rem; right: 0.75rem; background: hsla(240,20%,6%,0.8); backdrop-filter: blur(8px); border-radius: 50%; padding: 0.5rem; }
.video-yt-badge svg { width: 1rem; height: 1rem; color: var(--coral); }

/* ----------------------------------------
   WHY WORK WITH ME
---------------------------------------- */
.why-me-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .why-me-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-me-grid { grid-template-columns: repeat(3, 1fr); } }
.why-me-card { position: relative; padding: 1.75rem; border-radius: 1rem; background: var(--card); border: 1px solid hsla(270,30%,25%,0.5); box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05); transition: all 0.5s; overflow: hidden; }
.why-me-card:hover { box-shadow: 0 25px 50px -12px hsla(270,77%,40%,0.1); border-color: hsla(270,77%,40%,0.3); }

/* ----------------------------------------
   CONTACT SECTION
---------------------------------------- */
.contact-form-wrapper { max-width: 42rem; margin: 0 auto; }
.contact-hero-text { font-size: 1.5rem; font-weight: 700; color: var(--foreground); margin-bottom: 1rem; }
@media (min-width: 768px) { .contact-hero-text { font-size: 1.875rem; } }
.contact-form-card { padding: 2rem; background: hsla(240,15%,10%,0.6); border: 1px solid hsla(270,30%,25%,0.5); border-radius: 1rem; backdrop-filter: blur(10px); }
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-label { font-size: 0.875rem; font-weight: 500; color: var(--foreground); }
.form-input, .form-select { padding: 0.75rem 1rem; background: hsla(240,20%,6%,0.5); border: 1px solid hsla(270,30%,25%,0.5); border-radius: 0.5rem; color: var(--foreground); font-family: var(--font-body); font-size: 1rem; transition: border-color 0.3s; }
.form-input:focus, .form-select:focus { outline: none; border-color: var(--primary); }
.form-input::placeholder { color: var(--muted-foreground); }
.form-select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 1rem; padding-right: 2.5rem; }
.form-select option { background: var(--background); color: var(--foreground); }
.captcha-wrapper { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.5rem; }
.captcha-question { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: hsla(270,77%,40%,0.1); border: 1px solid hsla(270,77%,40%,0.2); border-radius: 0.5rem; }
.captcha-text { font-family: monospace; font-size: 1.125rem; font-weight: 600; color: var(--foreground); }
.captcha-refresh { padding: 0.5rem; border-radius: 0.5rem; color: var(--muted-foreground); transition: background-color 0.3s; }
.captcha-refresh:hover { background: var(--muted); }
.captcha-refresh svg { width: 1.25rem; height: 1.25rem; }
.form-error { font-size: 0.75rem; color: hsl(0,70%,60%); margin-top: 0.25rem; }
.form-submit-btn { display: flex; align-items: center; justify-content: center; gap: 0.5rem; width: 100%; padding: 1rem 2rem; background: linear-gradient(135deg, var(--violet), var(--coral)); border-radius: 9999px; color: var(--foreground); font-family: var(--font-body); font-size: 1rem; font-weight: 600; transition: all 0.3s; box-shadow: 0 0 60px hsla(270,77%,40%,0.4); }
.form-submit-btn:hover:not(:disabled) { transform: scale(1.02); }
.form-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.form-submit-btn svg { width: 1.25rem; height: 1.25rem; }
.contact-direct { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid hsla(270,30%,25%,0.5); text-align: center; }
.contact-direct-label { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 0.5rem; }
.contact-direct-email { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--primary); transition: opacity 0.3s; }
.contact-direct-email:hover { opacity: 0.8; text-decoration: underline; }
.contact-direct-email svg { width: 1rem; height: 1rem; }

/* ----------------------------------------
   FOOTER
---------------------------------------- */
.footer { position: relative; background: hsla(240,15%,15%,0.5); border-top: 1px solid hsla(270,30%,25%,0.3); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; padding: 4rem 0 3rem; text-align: center; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; text-align: left; gap: 2rem; } }
.footer-brand { display: flex; flex-direction: column; align-items: center; }
@media (min-width: 768px) { .footer-brand { align-items: flex-start; } }
.footer-brand-name { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; margin-bottom: 1rem; }
.footer-brand-desc { font-size: 0.875rem; color: var(--muted-foreground); max-width: 20rem; }
.footer-links-col { display: flex; flex-direction: column; align-items: center; }
.footer-col-title { font-size: 0.875rem; font-weight: 600; color: var(--foreground); margin-bottom: 1rem; }
.footer-quick-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-quick-links a { font-size: 0.875rem; color: var(--muted-foreground); transition: color 0.3s; }
.footer-quick-links a:hover { color: var(--primary); }
.footer-connect-col { display: flex; flex-direction: column; align-items: center; }
@media (min-width: 768px) { .footer-connect-col { align-items: flex-end; } }
.footer-email { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); transition: color 0.3s; margin-bottom: 1.25rem; }
.footer-email:hover { color: var(--primary); }
.social-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem; }
.social-link { width: 2.5rem; height: 2.5rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; border: 1px solid hsla(270,30%,25%,0.5); color: var(--muted-foreground); transition: all 0.3s; }
.social-link:hover { border-color: hsla(270,77%,40%,0.5); background: hsla(270,77%,40%,0.1); color: var(--foreground); }
.social-link svg { width: 1rem; height: 1rem; }
.footer-bottom { border-top: 1px solid hsla(270,30%,25%,0.3); }
.footer-bottom-inner { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.5rem 0; }
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; } }
.footer-copyright { font-size: 0.75rem; color: var(--muted-foreground); }
.back-to-top-btn { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--muted-foreground); transition: color 0.3s; }
.back-to-top-btn:hover { color: var(--foreground); }
.back-to-top-icon { width: 2rem; height: 2rem; border-radius: 50%; border: 1px solid hsla(270,30%,25%,0.5); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.back-to-top-btn:hover .back-to-top-icon { border-color: hsla(270,77%,40%,0.5); background: hsla(270,77%,40%,0.1); }

/* ----------------------------------------
   RESPONSIVE
---------------------------------------- */
@media (max-width: 640px) {
  .hero-blob-1, .hero-blob-2 { width: 200px; height: 200px; }
  .section { padding: 4rem 1rem; }
}