/* ==========================================================================
   VENIS VASANI - ULTRA PREMIUM PORTFOLIO DESIGN SYSTEM
   Color Palette:
   - Background: #09090B
   - Surface: #111827
   - Cards: #18181B
   - Primary Accent: #7C3AED (Violet/Purple Glow)
   - Secondary Accent: #3B82F6 (Electric Blue)
   - Success: #10B981 (Emerald)
   - Text Primary: #FFFFFF / #FAFAFA
   - Text Muted: #9CA3AF / #A1A1AA
   ========================================================================== */

:root {
  --bg-color: #09090B;
  --surface-color: #111827;
  --card-bg: #18181B;
  --card-border: rgba(255, 255, 255, 0.08);
  --card-hover-border: rgba(124, 58, 237, 0.5);
  
  --primary-accent: #7C3AED;
  --primary-glow: rgba(124, 58, 237, 0.35);
  --secondary-accent: #3B82F6;
  --secondary-glow: rgba(59, 130, 246, 0.3);
  --success-color: #10B981;
  
  --text-main: #FAFAFA;
  --text-muted: #A1A1AA;
  --text-subtle: #71717A;

  --font-heading: 'Space Grotesk', -apple-system, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  --glass-bg: rgba(24, 24, 27, 0.65);
  --glass-blur: blur(16px);
  --glass-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* Base Resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Background Particle Canvas */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.text-gradient {
  background: linear-gradient(135deg, #FFFFFF 0%, #C4B5FD 50%, #7C3AED 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-purple {
  color: var(--primary-accent);
}

p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Utilities */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-padding {
  padding: 6rem 0;
}

/* Glassmorphism Card Element */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
  transition: var(--transition-normal);
}

.glass-card:hover {
  border-color: var(--card-hover-border);
  box-shadow: 0 24px 48px rgba(124, 58, 237, 0.15);
}

/* Buttons System */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #7C3AED 0%, #6D28D9 100%);
  color: #FFFFFF;
  box-shadow: 0 10px 25px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(124, 58, 237, 0.5);
}

.btn-secondary {
  background: var(--surface-color);
  color: var(--text-main);
  border-color: var(--card-border);
}

.btn-secondary:hover {
  border-color: var(--secondary-accent);
  color: var(--secondary-accent);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--card-border);
  color: var(--text-main);
}

.btn-outline:hover {
  border-color: var(--text-main);
  background: rgba(255, 255, 255, 0.05);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
}

.badge-glow {
  background: rgba(124, 58, 237, 0.15);
  color: #C4B5FD;
  border: 1px solid rgba(124, 58, 237, 0.4);
}

.badge-outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-muted);
  border: 1px solid var(--card-border);
}

.badge-purple {
  background: rgba(124, 58, 237, 0.2);
  color: #DDD6FE;
  border: 1px solid var(--primary-accent);
}

/* Section Header Shared */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* NAVBAR */
.navbar-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition-normal);
}

.navbar-wrapper.scrolled {
  background: rgba(9, 9, 11, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
  padding: 0.75rem 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

.status-dot {
  width: 8px;
  height: 8px;
  background-color: var(--success-color);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--success-color);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.highlight-link {
  color: #C4B5FD;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* HERO SECTION */
.hero-section {
  padding-top: 9rem;
  padding-bottom: 5rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-badges-top {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 580px;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-social-links {
  margin-top: 1.5rem;
  margin-bottom: 2.2rem;
  gap: 0.8rem;
}

.hero-trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--card-border);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
}

.hero-image-card {
  padding: 0.75rem;
  position: relative;
  overflow: visible;
}

.hero-img {
  width: 100%;
  border-radius: var(--radius-sm);
  filter: contrast(1.05) brightness(0.95);
}

/* Floating Hero Widgets */
.floating-widget {
  position: absolute;
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  z-index: 10;
  animation: floatWidget 6s ease-in-out infinite;
}

@keyframes floatWidget {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.widget-code {
  top: -20px;
  right: -20px;
  max-width: 250px;
  font-family: monospace;
  font-size: 0.75rem;
  background: rgba(9, 9, 11, 0.9);
}

.widget-header {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--card-border);
  padding-bottom: 0.3rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot.red { background: #EF4444; }
.dot.yellow { background: #F59E0B; }
.dot.green { background: #10B981; }

.widget-title {
  margin-left: auto;
  font-size: 0.7rem;
  color: var(--text-subtle);
}

.widget-workday {
  bottom: 20px;
  left: -30px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation-delay: -2s;
}

.widget-icon {
  width: 38px;
  height: 38px;
  background: rgba(124, 58, 237, 0.2);
  color: #C4B5FD;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.widget-figma {
  bottom: -25px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation-delay: -4s;
}

.figma-icon {
  background: rgba(59, 130, 246, 0.2);
  color: #93C5FD;
}

.widget-label {
  font-size: 0.75rem;
  color: var(--text-subtle);
}

.widget-value {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main);
}

/* STATS SECTION */
.stats-section {
  background: var(--surface-color);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 3rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-card {
  padding: 1rem;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-main);
  display: inline-block;
}

.stat-plus {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-accent);
  display: inline-block;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

/* ABOUT SECTION */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-card {
  padding: 0.75rem;
  position: relative;
}

.about-profile-img {
  width: 100%;
  border-radius: var(--radius-sm);
}

.about-overlay-badge {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(17, 24, 39, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-heading {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.about-text {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.philosophy-item {
  display: flex;
  gap: 1rem;
}

.phi-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(124, 58, 237, 0.15);
  color: #C4B5FD;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.phi-detail h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.phi-detail p {
  font-size: 0.85rem;
  margin: 0;
}

/* SKILLS SECTION */
.skills-filter {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.skill-tab {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.skill-tab:hover, .skill-tab.active {
  background: var(--primary-accent);
  color: #FFFFFF;
  border-color: var(--primary-accent);
  box-shadow: 0 5px 15px var(--primary-glow);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.skill-card {
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.skill-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-accent);
  flex-shrink: 0;
}

.skill-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.skill-info p {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.skill-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.skill-tag-chip {
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  color: var(--text-muted);
}

/* WORKDAY SECTION */
.workday-banner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  padding: 3.5rem;
  align-items: center;
}

.workday-title {
  font-size: 2.2rem;
  margin: 1rem 0 1.2rem 0;
}

.workday-desc {
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.workday-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.wd-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-main);
  font-weight: 500;
}

.wd-tag i {
  color: var(--success-color);
  width: 18px;
}

.workday-img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

/* PROJECTS SECTION */
.project-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.project-tab {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.project-tab:hover, .project-tab.active {
  background: var(--secondary-accent);
  color: #FFFFFF;
  border-color: var(--secondary-accent);
  box-shadow: 0 5px 15px var(--secondary-glow);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}

.project-card {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.project-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}

.project-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--transition-slow);
}

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

.project-badge {
  position: absolute;
  top: 12px;
  left: 12px;
}

.project-title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.project-summary {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.project-tech-stack {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.tech-pill {
  font-size: 0.75rem;
  padding: 0.2rem 0.6rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  color: var(--text-muted);
}

.project-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--card-border);
}

/* SERVICES SECTION */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 2rem;
}

.service-icon {
  width: 54px;
  height: 54px;
  background: rgba(124, 58, 237, 0.15);
  color: #C4B5FD;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.9rem;
}

/* WHY SECTION */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.why-card {
  padding: 1.75rem;
}

.why-icon {
  color: var(--secondary-accent);
  margin-bottom: 1rem;
}

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.88rem;
  margin: 0;
}

/* EXPERIENCE TIMELINE */
.timeline {
  max-width: 850px;
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 7px;
  width: 2px;
  height: 100%;
  background: var(--card-border);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.timeline-dot {
  position: absolute;
  left: -2rem;
  top: 1.5rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary-accent);
  box-shadow: 0 0 10px var(--primary-glow);
}

.timeline-card {
  padding: 1.75rem;
}

.timeline-period {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-accent);
  text-transform: uppercase;
}

.timeline-role {
  font-size: 1.3rem;
  margin: 0.3rem 0;
}

.timeline-company {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.timeline-techs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.tech-tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: #c4b5fd;
  font-weight: 500;
}

.timeline-bullets {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-secondary);
}

.timeline-bullets li {
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
  line-height: 1.55;
}

/* TESTIMONIALS SECTION */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.stars {
  color: #F59E0B;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 0.95rem;
  font-style: italic;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7C3AED, #3B82F6);
  color: #FFFFFF;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.author-name {
  font-weight: 700;
  font-size: 0.95rem;
}

.author-role {
  font-size: 0.8rem;
  color: var(--text-subtle);
}

/* BLOG SECTION */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
}

.blog-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary-accent);
  margin-bottom: 0.75rem;
}

.blog-title {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-excerpt {
  font-size: 0.9rem;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-subtle);
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--primary-accent);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* CONTACT SECTION */
.contact-box {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  padding: 3.5rem;
}

.contact-title {
  font-size: 2.2rem;
  margin: 0.5rem 0 1rem 0;
}

.contact-desc {
  margin-bottom: 2rem;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.c-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.c-info-item i {
  color: var(--primary-accent);
}

.c-info-item span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-subtle);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
}

.social-icon:hover {
  background: var(--primary-accent);
  border-color: var(--primary-accent);
}

/* Forms System */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-title {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.form-group input, .form-group select, .form-group textarea {
  background: rgba(9, 9, 11, 0.8);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--primary-accent);
  box-shadow: 0 0 10px var(--primary-glow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--card-border);
  padding: 2.5rem 0;
  background: #060608;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-copy {
  font-size: 0.85rem;
  margin: 0.4rem 0 0 0;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.back-to-top {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top:hover {
  background: var(--primary-accent);
  border-color: var(--primary-accent);
}

/* MODAL WINDOW SYSTEM */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.modal-backdrop.hidden {
  opacity: 0;
  pointer-events: none;
}

.modal-content {
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  background: #111827;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  color: var(--text-main);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Modal Enhancements & Custom Inputs */
.modal-content {
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  background: rgba(17, 24, 39, 0.95);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(124, 58, 237, 0.3);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(124, 58, 237, 0.15);
}

.booking-modal-content {
  max-width: 520px;
  border-radius: var(--radius-lg);
  padding: 2.25rem;
}

.booking-header {
  text-align: center;
  margin-bottom: 2rem;
}

.booking-icon-wrapper {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem auto;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.4);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(124, 58, 237, 0.25);
}

.booking-icon {
  width: 32px;
  height: 32px;
  color: #C4B5FD;
}

.booking-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.booking-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Icon Inputs System */
.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  color: #A1A1AA;
  pointer-events: none;
  transition: var(--transition-fast);
}

.input-with-icon input {
  width: 100%;
  padding-left: 2.75rem !important;
}

.input-with-icon input:focus + .input-icon,
.input-with-icon input:focus ~ .input-icon,
.input-with-icon:focus-within .input-icon {
  color: var(--primary-accent);
}

/* Dark mode for native date pickers */
input[type="date"] {
  color-scheme: dark;
}

/* Time Slot Chips Grid */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 0.4rem;
}

.time-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--card-border);
  color: var(--text-muted);
  padding: 0.65rem 0.4rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
}

.time-chip:hover {
  border-color: rgba(124, 58, 237, 0.5);
  color: var(--text-main);
  background: rgba(124, 58, 237, 0.1);
}

.time-chip.active {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.3) 0%, rgba(109, 40, 217, 0.4) 100%);
  border-color: var(--primary-accent);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.submit-booking-btn {
  margin-top: 1.5rem;
  padding: 0.95rem;
  font-size: 1rem;
}

/* TOAST NOTIFICATION */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(17, 24, 39, 0.95);
  border: 1px solid var(--success-color);
  color: #FFFFFF;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 3000;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.toast.hidden {
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
}

.toast-icon {
  color: var(--success-color);
}

/* ARTICLE READER MODAL */
.article-modal-content {
  max-width: 820px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 2.5rem;
  line-height: 1.7;
}

.article-category-tag {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.article-modal-title {
  font-size: 1.85rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.article-meta-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--card-border);
  margin-bottom: 1.5rem;
}

.article-body-content p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.article-body-content h3 {
  font-size: 1.3rem;
  color: #FFFFFF;
  margin: 1.75rem 0 0.75rem;
}

.article-code-snippet {
  background: rgba(10, 10, 20, 0.8);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
  font-family: 'Space Grotesk', monospace;
  font-size: 0.85rem;
  color: #a7f3d0;
  overflow-x: auto;
  margin: 1rem 0 1.5rem;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
  .hero-container, .about-grid, .workday-banner, .contact-box {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-title {
    font-size: 2.75rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(9, 9, 11, 0.95);
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--card-border);
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .section-title {
    font-size: 2rem;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* WhatsApp Floating CTA */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3), 0 10px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  background-color: #20BA5A;
  box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4), 0 14px 28px rgba(0, 0, 0, 0.4);
  color: #FFFFFF;
}

.whatsapp-float::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #25D366;
  top: 0;
  left: 0;
  animation: wa-pulse 2s infinite;
  pointer-events: none;
  opacity: 0;
}

@keyframes wa-pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

