/* ================================
   NURSE SUSMITA CHALISE
   nursesusmita.com — v2 with photos
================================ */
:root {
  --navy: #1a2e3b;
  --teal: #2a7f9e;
  --teal-light: #5ba3c9;
  --sky: #dff0f7;
  --green: #4caf7d;
  --green-light: #e8f5e9;
  --gold: #c9a84c;
  --gold-light: #fdf6e3;
  --white: #ffffff;
  --off-white: #f7fbfd;
  --grey-light: #eef5f8;
  --grey: #8fa8b5;
  --text: #1a2e3b;
  --text-muted: #5a7080;
  --border: #d0e8f2;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(26,46,59,0.08);
  --shadow-md: 0 8px 40px rgba(26,46,59,0.14);
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin-bottom: 12px; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; font-weight: 400; }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); color: var(--navy); }
h2 em { font-style: italic; color: var(--teal); }
h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 8px; font-weight: 600; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-family: var(--font-body); font-size: 0.92rem; font-weight: 500; cursor: pointer; border: 2px solid transparent; transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1); }
.btn-primary { background: var(--teal); color: var(--white); }
.btn-primary:hover { background: var(--navy); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(42,127,158,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-2px); }
.btn.full-width { width: 100%; justify-content: center; }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 18px 0; transition: all 0.4s ease; }
.nav.scrolled { background: rgba(255,255,255,0.96); backdrop-filter: blur(16px); box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 24px rgba(26,46,59,0.06); padding: 12px 0; }
.nav.scrolled .nav-logo, .nav.scrolled .nav-links a { color: var(--navy); }
.nav.scrolled .nav-cta { color: var(--white) !important; }
.nav-inner { max-width: 1140px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); font-weight: 400; letter-spacing: 0.02em; }
.nav-logo span { background: rgba(255,255,255,0.18); padding: 2px 10px; border-radius: 20px; font-size: 0.82rem; font-family: var(--font-body); font-weight: 600; margin-left: 6px; vertical-align: middle; }
.nav.scrolled .nav-logo span { background: var(--sky); color: var(--teal); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.88); transition: color var(--transition); }
.nav-links a:hover { color: var(--white); }
.nav-cta { background: var(--teal); color: var(--white) !important; padding: 9px 22px; border-radius: 50px; }
.nav-cta:hover { background: var(--navy) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.nav.scrolled .nav-toggle span { background: var(--navy); }

/* HERO with photo */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background: var(--navy); padding: 100px 24px 80px; }

.hero-parallax { position: absolute; inset: -60px; background: linear-gradient(135deg, #0d1e28 0%, #1a3a50 50%, #1e5570 100%); z-index: 0; will-change: transform; }

.hero-photo-wrap { position: absolute; right: 0; bottom: 0; top: 0; width: 48%; z-index: 1; overflow: hidden; }
.hero-photo-frame { position: relative; width: 100%; height: 100%; }
.hero-photo { width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: brightness(0.85) contrast(1.05); transition: transform 8s ease; }
.hero-photo-overlay { position: absolute; inset: 0; background: linear-gradient(to right, var(--navy) 0%, rgba(26,46,59,0.4) 40%, transparent 70%); }

.hero-content { position: relative; z-index: 2; max-width: 620px; }
.hero-text-block { margin-bottom: 40px; }
.hero-eyebrow { display: inline-block; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.8); padding: 7px 18px; border-radius: 50px; font-size: 0.85rem; margin-bottom: 24px; letter-spacing: 0.04em; backdrop-filter: blur(8px); }
.hero-name { font-family: var(--font-display); font-size: clamp(3.5rem, 8vw, 6.5rem); font-weight: 300; color: var(--white); line-height: 0.95; margin-bottom: 20px; letter-spacing: -0.02em; }
.hero-name em { color: var(--teal-light); font-style: italic; display: block; }
.hero-title { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.65); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 24px; }
.hero-title .dot { opacity: 0.35; }
.hero-tagline { font-family: var(--font-display); font-size: clamp(1rem, 2vw, 1.3rem); font-style: italic; color: rgba(255,255,255,0.75); margin-bottom: 36px; line-height: 1.6; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats { position: relative; z-index: 2; display: flex; align-items: center; gap: 0; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 22px 0; backdrop-filter: blur(12px); max-width: 560px; }
.stat { text-align: center; padding: 0 28px; flex: 1; }
.stat strong { display: block; font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--white); }
.stat span { font-size: 0.75rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.1em; }
.stat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

.hero-scroll { position: absolute; bottom: 32px; left: 48px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.4); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; z-index: 2; }
.scroll-line { width: 40px; height: 1px; background: linear-gradient(to right, rgba(255,255,255,0.3), transparent); animation: scrollSlide 2s ease infinite; }
@keyframes scrollSlide { 0%, 100% { transform: scaleX(1); opacity: 0.4; } 50% { transform: scaleX(1.3); opacity: 1; } }

/* ABOUT */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img { width: 100%; height: 520px; object-fit: cover; object-position: center top; border-radius: 20px; box-shadow: var(--shadow-md); transition: transform 0.6s ease; }
.about-img-wrap:hover .about-img { transform: scale(1.02); }
.about-img-badge { position: absolute; bottom: 24px; left: -20px; background: var(--white); border-radius: 12px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.about-img-badge span { font-size: 1.6rem; }
.about-img-badge strong { display: block; font-size: 0.85rem; color: var(--navy); font-weight: 600; }
.about-img-badge small { color: var(--text-muted); font-size: 0.75rem; }
.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--text-muted); margin-bottom: 16px; font-size: 1rem; line-height: 1.75; }
.about-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.badge { background: var(--sky); color: var(--teal); padding: 6px 16px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; border: 1px solid var(--border); }
.badge-gold { background: var(--gold-light); color: var(--gold); border-color: rgba(201,168,76,0.3); }

/* JOURNEY */
.journey { background: var(--off-white); }
.timeline { position: relative; padding-left: 48px; max-width: 860px; margin: 0 auto; }
.timeline::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(to bottom, var(--teal), var(--green), var(--gold)); border-radius: 2px; }
.timeline-item { display: grid; grid-template-columns: 110px 1fr; gap: 24px; margin-bottom: 36px; align-items: start; }
.timeline-marker { padding-top: 20px; }
.timeline-dot { width: 13px; height: 13px; border-radius: 50%; background: var(--white); border: 3px solid var(--teal); position: absolute; left: -6px; margin-top: 20px; transition: all 0.3s; }
.timeline-dot.active { background: var(--teal); box-shadow: 0 0 0 5px rgba(42,127,158,0.12); }
.timeline-dot.gold { border-color: var(--gold); background: var(--gold); box-shadow: 0 0 0 5px rgba(201,168,76,0.15); }
.timeline-year { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; color: var(--teal); white-space: nowrap; }
.timeline-card { background: var(--white); border-radius: var(--radius); padding: 26px 28px; box-shadow: var(--shadow); border: 1px solid var(--border); transition: transform 0.3s, box-shadow 0.3s; }
.timeline-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.timeline-card.featured { border-color: rgba(42,127,158,0.3); background: linear-gradient(135deg, #f4fbff, var(--white)); }
.timeline-card.gold-card { border-color: rgba(201,168,76,0.4); background: linear-gradient(135deg, #fdf9f0, var(--white)); }
.tl-icon { font-size: 1.4rem; margin-bottom: 10px; }
.timeline-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.timeline-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 14px; }
.tl-tag { display: inline-block; background: var(--grey-light); color: var(--grey); padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.tl-tag.milestone { background: linear-gradient(135deg, var(--teal), var(--green)); color: var(--white); }
.tl-tag.gold-tag { background: linear-gradient(135deg, var(--gold), #e2b84a); color: var(--white); }
.tl-card-actions { margin: 14px 0 10px; }
.tl-btn { display: inline-flex; align-items: center; background: var(--navy); color: var(--white); padding: 10px 22px; border-radius: 50px; font-size: 0.85rem; font-weight: 500; transition: all 0.3s; border: 2px solid var(--navy); }
.tl-btn:hover { background: var(--gold); border-color: var(--gold); transform: translateX(4px); }

/* SKILLS */
.skills { background: var(--white); }
.skills-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 20px; }
.skill-card { background: var(--off-white); border-radius: var(--radius); padding: 28px 24px; border: 1px solid var(--border); transition: all 0.3s; }
.skill-card:hover { background: var(--white); border-color: var(--teal-light); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.skill-card.skill-wide { grid-column: 1 / -1; background: linear-gradient(135deg, var(--sky), var(--green-light)); border-color: var(--teal-light); display: flex; gap: 24px; align-items: flex-start; }
.sk-icon { font-size: 1.6rem; margin-bottom: 14px; }
.skill-card.skill-wide .sk-icon { flex-shrink: 0; font-size: 2rem; margin-bottom: 0; }
.skill-card h3 { font-size: 1rem; margin-bottom: 8px; }
.skill-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }
.skill-link { display: inline-flex; align-items: center; margin-top: 12px; color: var(--teal); font-size: 0.88rem; font-weight: 600; transition: all 0.2s; }
.skill-link:hover { color: var(--navy); letter-spacing: 0.02em; }

/* EDUCATION */
.education { background: var(--off-white); }
.edu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.edu-card { background: var(--white); border-radius: var(--radius); padding: 28px 24px; display: flex; gap: 18px; border: 1px solid var(--border); box-shadow: var(--shadow); transition: transform 0.3s, box-shadow 0.3s; }
.edu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.edu-icon { font-size: 1.8rem; flex-shrink: 0; }
.edu-tag { display: inline-block; background: var(--sky); color: var(--teal); padding: 3px 12px; border-radius: 50px; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 8px; }
.edu-tag-gold { background: var(--gold-light); color: var(--gold); }
.edu-card h3 { font-size: 0.98rem; margin-bottom: 6px; }
.edu-card p { color: var(--text-muted); font-size: 0.86rem; line-height: 1.6; }

/* WHY */
.why { background: var(--navy); }
.why .section-label { color: var(--teal-light); }
.why h2 { color: var(--white); }
.why h2 em { color: var(--teal-light); }
.why .section-header p { color: rgba(255,255,255,0.55); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.why-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 32px 26px; transition: all 0.3s; }
.why-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(91,163,201,0.4); transform: translateY(-4px); }
.why-num { font-family: var(--font-display); font-size: 2.8rem; color: var(--teal-light); opacity: 0.25; line-height: 1; margin-bottom: 10px; }
.why-card h3 { color: var(--white); margin-bottom: 10px; font-size: 1.05rem; }
.why-card p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; }

/* CONTACT */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 36px; font-size: 1rem; }
.contact-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact-item { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; color: var(--text-muted); }
.contact-item a { color: var(--teal); }
.contact-item a:hover { text-decoration: underline; }
.ahpra-badge { display: flex; align-items: center; gap: 14px; background: var(--sky); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 16px 20px; }
.ahpra-badge span { font-size: 1.6rem; }
.ahpra-badge strong { display: block; color: var(--navy); font-size: 0.9rem; font-weight: 600; }
.ahpra-badge small { color: var(--text-muted); font-size: 0.75rem; }
.contact-form-wrap { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px 32px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.84rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; letter-spacing: 0.02em; }
.form-group input, .form-group textarea { width: 100%; padding: 13px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.93rem; color: var(--text); background: var(--white); transition: border-color 0.25s, box-shadow 0.25s; outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(42,127,158,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--grey); }
.form-group textarea { resize: vertical; }
.form-note { text-align: center; margin-top: 12px; font-size: 0.85rem; color: var(--green); min-height: 20px; }

/* FOOTER */
.footer { background: var(--navy); padding: 52px 0 28px; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 28px; margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); display: block; margin-bottom: 6px; }
.footer-logo em { color: var(--teal-light); font-style: italic; }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 0.82rem; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: rgba(255,255,255,0.45); font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom p { color: rgba(255,255,255,0.25); font-size: 0.78rem; text-align: center; }

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-photo-wrap { width: 55%; opacity: 0.6; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img { height: 380px; }
}
@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .hero { padding: 120px 24px 60px; }
  .hero-photo-wrap { display: none; }
  .hero-stats { flex-direction: column; gap: 16px; padding: 24px 20px; }
  .stat-div { width: 60px; height: 1px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(16px); padding: 20px 24px; gap: 14px; box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--navy) !important; }
  .nav-toggle { display: flex; }
  .timeline { padding-left: 24px; }
  .timeline-item { grid-template-columns: 80px 1fr; gap: 14px; }
  .skill-card.skill-wide { flex-direction: column; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
