/* Modern Light Theme Variables */
:root {
  --primary-blue: #0A84FF;
  --primary-blue-hover: #0066D6;
  --accent-green: #30D158;
  --accent-green-hover: #22A343;
  --bg-main: #F9FAFB;
  --bg-secondary: #F3F4F6;
  --text-main: #111827;
  --text-gray: #4B5563;
  --border-color: rgba(0, 0, 0, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
  
  --font-family: 'Outfit', sans-serif;
  --border-radius: 16px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.07);
  --shadow-glow: 0 0 24px rgba(10, 132, 255, 0.15);
}

/* Global Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: radial-gradient(circle at top left, rgba(10, 132, 255, 0.04) 0%, transparent 40%),
                    radial-gradient(circle at bottom right, rgba(48, 209, 88, 0.04) 0%, transparent 40%);
}

a { text-decoration: none; color: var(--primary-blue); transition: all 0.3s ease; }
a:hover { color: var(--primary-blue-hover); }

/* Typography Constraints */
h1, h2, h3 { color: var(--text-main); font-weight: 700; line-height: 1.25; }
p { font-size: 1.05rem; color: var(--text-gray); }
h1 span { 
    background: linear-gradient(135deg, #0A84FF, #10B981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-sm { font-size: 0.875rem; }
.text-gray { color: var(--text-gray); }
.text-blue { color: var(--primary-blue); }
.text-green { color: var(--accent-green); }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-auto { margin-top: auto; }

/* Blob Background Arrays */
.blob-bg {
    position: absolute;
    filter: blur(100px);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
    animation: pulseBlob 8s infinite alternate ease-in-out;
}
.blob-1 { top: -50px; left: -50px; width: 500px; height: 500px; background: rgba(10, 132, 255, 0.15); }
.blob-2 { bottom: 100px; right: -50px; width: 400px; height: 400px; background: rgba(48, 209, 88, 0.15); animation-delay: 4s; }

@keyframes pulseBlob {
    0% { transform: scale(1) translate(0, 0); opacity: 0.4; }
    100% { transform: scale(1.1) translate(20px, 30px); opacity: 0.7; }
}

/* Glassmorphism Classes (Light variant) */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  border-radius: var(--border-radius);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

/* Base Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; border-radius: 100px; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: all 0.3s ease; border: none; outline: none; position: relative; overflow: hidden;
}

.btn-primary { background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-hover) 100%); color: white; box-shadow: 0 4px 14px rgba(10, 132, 255, 0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(10, 132, 255, 0.4); }

.btn-outline { background: white; color: var(--text-main); border: 1px solid var(--border-color); box-shadow: var(--shadow-sm); }
.btn-outline:hover { background: var(--bg-secondary); border-color: rgba(0,0,0,0.15); }

.btn-linkedin { background: linear-gradient(135deg, #0077b5, #005e93); color: white; box-shadow: 0 4px 14px rgba(0, 119, 181, 0.3); }
.btn-linkedin:hover { box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4); transform: translateY(-2px); }

.btn-large { padding: 0.85rem 2rem; font-size: 1.05rem; }
.w-100 { width: 100%; }

/* Navigation */
.navbar { position: fixed; top: 0; width: 100%; z-index: 1000; padding: 1rem 0; transition: background 0.3s; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0.75rem 1.5rem; display: flex; align-items: center; justify-content: space-between; border-radius: 100px; }
.brand { display: flex; align-items: center; gap: 0.5rem; font-weight: 800; font-size: 1.5rem; letter-spacing: -0.02em; color: var(--text-main); }
.header-logo { height: 35px; width: auto; object-fit: contain; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: var(--text-gray); font-weight: 500; font-size: 1rem; }
.nav-links a:hover { color: var(--primary-blue); }
.nav-actions { display: flex; gap: 1rem; }

/* Hero Section */
.hero { max-width: 1200px; margin: 8rem auto 4rem; padding: 0 1.5rem; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; min-height: 70vh; }
.badge { display: inline-block; padding: 0.5rem 1.2rem; background: rgba(10, 132, 255, 0.1); border: 1px solid rgba(10, 132, 255, 0.15); color: var(--primary-blue); border-radius: 100px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
.hero-content h1 { font-size: 4.5rem; margin-bottom: 1.5rem; letter-spacing: -0.03em; }
.hero-content p { font-size: 1.25rem; margin-bottom: 2.5rem; max-width: 90%; color: var(--text-gray); font-weight: 400; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image-wrapper { position: relative; border-radius: 24px; padding: 1rem; }
.hero-img { width: 100%; border-radius: 20px; object-fit: cover; box-shadow: var(--shadow-md); transition: transform 0.5s ease; border: 1px solid var(--border-color); }
.hero-img:hover { transform: translateY(-5px); }
.floating-card { position: absolute; padding: 1.25rem; display: flex; align-items: center; gap: 1rem; animation: float 6s ease-in-out infinite; z-index: 10; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); border: 1px solid var(--border-color); border-radius: 16px; box-shadow: var(--shadow-sm); }
.floating-card i { color: var(--primary-blue); width: 28px; height: 28px; }
.floating-card strong { display: block; font-size: 1rem; color: var(--text-main); font-weight: 700; }
.floating-card span { font-size: 0.85rem; color: var(--text-gray); }
.c1 { top: 20px; left: -20px; animation-delay: 0s; }
.c2 { bottom: 40px; right: -20px; animation-delay: 3s; }

@keyframes float { 0% { transform: translateY(0px); } 50% { transform: translateY(-15px); } 100% { transform: translateY(0px); } }

/* Main layout */
.main-body { max-width: 1000px; margin: 2rem auto 6rem; padding: 0 1.5rem; display: flex; flex-direction: column; gap: 4rem; }
.card { background: white; border: 1px solid var(--border-color); box-shadow: var(--shadow-md); border-radius: 24px; overflow: hidden; }
.card-header { padding: 2rem 2.5rem; border-bottom: 1px solid var(--border-color); background: rgba(255,255,255,0.8); }
.card-header h2 { display: flex; align-items: center; gap: 0.75rem; font-size: 1.75rem; }
.card-body { padding: 3rem; }

/* Grids */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.reverse-grid { display: grid; grid-template-columns: 1fr 1fr; }
.reverse-grid .form-instructions { padding: 3.5rem; }
.reverse-grid .form-fields { padding: 3.5rem; }
.border-left { border-left: 1px solid var(--border-color); }

.form-instructions h3 { margin-bottom: 1rem; font-size: 1.5rem; }
.form-instructions p { margin-bottom: 2rem; line-height: 1.8; }
.benefit-list { list-style: none; margin-bottom: 2.5rem; }
.benefit-list li { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; color: var(--text-main); font-weight: 500; font-size: 1.05rem; }

/* Forms */
.input-group { margin-bottom: 1.5rem; }
.input-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; font-size: 0.95rem; color: var(--text-main); }
.input-wrapper { position: relative; display: flex; align-items: center; }
.input-wrapper i { position: absolute; left: 1rem; color: var(--text-gray); width: 22px; height: 22px; }
.input-wrapper input { padding-left: 3rem; }
.input-group input, .input-group textarea {
  width: 100%; padding: 0.85rem 1rem; background: var(--bg-main); border: 2px solid var(--border-color);
  border-radius: 12px; color: var(--text-main); font-family: inherit; font-size: 1rem; transition: all 0.3s;
}
.input-group input:focus, .input-group textarea:focus { outline: none; border-color: var(--primary-blue); background: white; box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.1); }
textarea { min-height: 140px; resize: vertical; }

/* Utilities */
.flex-center { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; }
.icon-badge { background: rgba(10, 132, 255, 0.08); border: 1px solid rgba(10, 132, 255, 0.15); padding: 1.25rem; border-radius: 50%; margin-bottom: 1.5rem; }
.badge-icon { width: 40px; height: 40px; color: var(--primary-blue); }

.file-drop-area { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 2.5rem; border: 2px dashed rgba(0,0,0,0.15); border-radius: 16px; background: var(--bg-main); transition: all 0.3s; cursor: pointer; text-align: center; }
.file-drop-area:hover, .file-drop-area.active { border-color: var(--primary-blue); background: rgba(10,132,255,0.02); }
.file-drop-area i { color: var(--primary-blue); width: 48px; height: 48px; margin-bottom: 1rem; }
.file-message { font-size: 1rem; font-weight: 500; color: var(--text-gray); }
.file-input { position: absolute; left: 0; top: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }

/* Footer */
.footer { border-top: 1px solid var(--border-color); padding: 5rem 1.5rem 2rem; background: white; }
.footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem; margin-bottom: 4rem; }
.footer-col ul { list-style: none; margin-top: 1.5rem; }
.footer-col ul li { margin-bottom: 1rem; }
.footer-col ul li a { color: var(--text-gray); font-size: 1rem; font-weight: 500; }
.footer-col ul li a:hover { color: var(--primary-blue); }
.footer-bottom { max-width: 1200px; margin: 0 auto; border-top: 1px solid var(--border-color); padding-top: 2rem; text-align: center; color: var(--text-gray); font-size: 0.95rem; }

/* Scroll Reveal Animation Classes */
.scroll-reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }

/* Ripple Effect */
.ripple { position: relative; overflow: hidden; }
span.ripple-effect { position: absolute; border-radius: 50%; background: rgba(255, 255, 255, 0.6); transform: scale(0); animation: ripple-anim 600ms linear; pointer-events: none; }
.btn-outline span.ripple-effect { background: rgba(0, 0, 0, 0.1); }
@keyframes ripple-anim { to { transform: scale(4); opacity: 0; } }

/* Responsive adjustments */
/* Responsive adjustments */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; text-align: center; margin-top: 6rem; gap: 3rem; }
  .hero-content h1 { font-size: 3.5rem; }
  .hero-content p { margin: 0 auto 2.5rem; }
  .hero-buttons { justify-content: center; }
  .floating-card { display: none; }
  /* Nav-links left visibly active since it only has "Seekers" now */
  .form-grid { grid-template-columns: 1fr; gap: 3rem; }
  .reverse-grid { grid-template-columns: 1fr; }
  .border-left { border-left: none; border-top: 1px solid var(--border-color); }
  .footer-container { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
}

@media (max-width: 600px) {
  .hero-content h1 { font-size: 2.5rem; margin-bottom: 1rem; }
  .hero-content p { font-size: 1.05rem; }
  .hero-buttons { flex-direction: column; width: 100%; gap: 1rem; }
  .btn { white-space: normal; height: auto; text-align: center; padding: 0.85rem 1rem; min-height: 3.5rem; display: flex; justify-content: center; }
  .btn i { flex-shrink: 0; }
  .btn-large { width: 100%; }
  .nav-container { padding: 0.75rem 1rem; }
  
  .card-header { padding: 1.5rem; }
  .card-header h2 { font-size: 1.35rem; }
  .card-body { padding: 1.5rem; }
  .reverse-grid .form-instructions, .reverse-grid .form-fields { padding: 1.5rem; }
  
  .benefit-list li { align-items: flex-start; }
  .benefit-list li i { margin-top: 4px; }
  
  .footer { padding: 3rem 1.5rem 1.5rem; }
}
