/* ===== KARTAL CEPHE - SITE 1: KURUMSAL KLASİK ===== */
/* 2026 Design Standards — Premium Corporate */

:root {
  --navy: #0a1628;
  --navy-mid: #0f2044;
  --blue: #1a56db;
  --blue-light: #3b82f6;
  --gold: #d4af37;
  --gold-light: #f0d060;
  --text: #0a1628;
  --text-light: #64748b;
  --white: #ffffff;
  --off-white: #f8fafc;
  --surface: #f1f5f9;
  --border: rgba(10,22,40,0.1);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  --font-head: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

/* === PRELOADER === */
.preloader {
  position: fixed; inset: 0;
  background: var(--navy);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.pl-logo {
  font-family: var(--font-head);
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 2rem;
}
.pl-bar {
  width: 200px; height: 3px;
  background: rgba(255,255,255,0.15);
  border-radius: 99px; overflow: hidden;
}
.pl-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  border-radius: 99px;
  animation: pl-load 1.4s ease forwards;
}
@keyframes pl-load { from { width: 0% } to { width: 100% } }

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: 76px;
  display: flex; align-items: center;
  padding: 0 4%;
  z-index: 1000;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -1px;
  margin-right: auto;
}
.nav-logo span { color: var(--blue); font-weight: 400; }
.nav-menu {
  list-style: none;
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-menu a {
  padding: 8px 16px;
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 99px;
  transition: var(--transition);
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--navy);
  background: var(--surface);
}
.nav-menu .nav-cta {
  background: var(--navy);
  color: var(--white) !important;
  padding: 10px 22px;
}
.nav-menu .nav-cta:hover {
  background: var(--blue);
  color: var(--white) !important;
}
.burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.burger span {
  width: 24px; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: var(--transition);
  display: block;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 76px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 4%;
  z-index: 999;
  transform: translateY(-110%);
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { list-style: none; }
.mobile-menu li { border-bottom: 1px solid var(--border); }
.mobile-menu a {
  display: block; padding: 14px 0;
  text-decoration: none; color: var(--text);
  font-weight: 500; font-size: 1.05rem;
}

/* === HERO === */
.hero {
  min-height: 100svh;
  display: flex; flex-direction: column;
  justify-content: center;
  position: relative; overflow: hidden;
  padding-top: 76px;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-img.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(130deg,
    rgba(10,22,40,0.85) 0%,
    rgba(10,22,40,0.6) 50%,
    rgba(10,22,40,0.3) 100%
  );
}
.hero-content {
  position: relative; z-index: 5;
  padding: 5% 6%;
  max-width: 820px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -3px;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s ease 0.6s both;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 1rem;
  animation: fadeUp 0.8s ease 0.8s both;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 99px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(26,86,219,0.35);
}
.btn-primary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26,86,219,0.5);
}
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 99px;
  border: 1px solid rgba(255,255,255,0.3);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 99px;
  border: 2px solid var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-large { padding: 18px 40px; font-size: 1.1rem; }

/* === HERO STATS === */
.hero-stats {
  position: relative; z-index: 5;
  display: flex; flex-wrap: wrap;
  gap: 1px;
  margin-top: auto;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat {
  flex: 1; min-width: 140px;
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2px;
  display: block;
}
.stat-plus {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--gold-light);
  font-weight: 700;
}
.stat p {
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  margin-top: 4px;
}

/* === MARQUEE === */
.marquee-wrapper {
  background: var(--navy);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 2rem; align-items: center;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-track span {
  color: rgba(255,255,255,0.7);
  font-weight: 500; font-size: 0.9rem;
  text-transform: uppercase; letter-spacing: 1px;
}
.marquee-track .dot { color: var(--gold); font-size: 0.5rem; }
@keyframes marquee { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* === SECTIONS === */
.section { padding: clamp(60px, 10vw, 120px) 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 5%; }
.section-label {
  display: inline-block;
  text-transform: uppercase;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 4px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--navy);
  margin-bottom: 3rem;
}

/* === BENTO GRID === */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}
.bento-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.bento-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.bento-wide { grid-column: span 2; min-height: 380px; }
.bento-accent {
  background: linear-gradient(135deg, var(--blue) 0%, var(--navy) 100%);
  color: var(--white);
}
.bento-dark {
  min-height: 380px;
}
.bento-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.3;
  transition: var(--transition);
}
.bento-card:hover .bento-bg-img { opacity: 0.4; transform: scale(1.05); }
.bento-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; }
.bento-icon {
  font-size: 2.5rem; margin-bottom: 1rem;
  display: block;
}
.bento-icon-lg { font-size: 3.5rem; margin-bottom: 1.5rem; display: block; }
.bento-number {
  font-family: var(--font-head);
  font-size: 5rem; font-weight: 800;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.bento-card h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.bento-wide .bento-card h3, .bento-dark .bento-card h3, .bento-accent h3 { color: var(--white); }
.bento-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }
.bento-wide p, .bento-dark p { color: rgba(255,255,255,0.75); }
.bento-accent p { color: rgba(255,255,255,0.8); }
.bento-link {
  display: inline-block; margin-top: 1.5rem;
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.5px;
}
.bento-link:hover { text-decoration: underline; }

/* === ABOUT === */
.about-section { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-img {
  width: 100%;
  border-radius: var(--radius-xl);
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--navy);
  color: var(--white);
  width: 120px; height: 120px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
}
.badge-num {
  font-family: var(--font-head);
  font-size: 2.5rem; font-weight: 800;
  line-height: 1;
}
.badge-text { font-size: 0.7rem; opacity: 0.8; text-align: center; }
.about-text p {
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* === PROJECTS === */
.projects-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 3rem;
}
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.project-featured { aspect-ratio: auto; grid-row: span 2; }
.project-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.project-card:hover img { transform: scale(1.08); }
.project-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 32px 24px 24px;
  background: linear-gradient(transparent, rgba(10,22,40,0.85));
  color: var(--white);
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition);
}
.project-card:hover .project-info { transform: translateY(0); opacity: 1; }
.project-cat {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.project-info h3 {
  font-family: var(--font-head);
  font-size: 1.3rem; font-weight: 700;
  margin-bottom: 4px;
}
.center-btn { text-align: center; }

/* === CTA === */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--navy);
  text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(26,86,219,0.3) 0%, transparent 70%);
}
.cta-content {
  position: relative; z-index: 2;
}
.cta-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -2px;
}
.cta-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
}

/* === FOOTER === */
.footer { background: #060e1c; padding: 80px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  font-family: var(--font-head);
  font-size: 1.5rem; font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 1rem;
}
.footer-logo span { color: var(--blue); font-weight: 400; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.9rem; line-height: 1.7; }
.footer-nav h4, .footer-contact h4 {
  color: var(--white); font-weight: 600; font-size: 0.9rem;
  margin-bottom: 1.5rem; letter-spacing: 0.5px;
}
.footer-nav ul { list-style: none; }
.footer-nav li { margin-bottom: 10px; }
.footer-nav a {
  color: rgba(255,255,255,0.45);
  text-decoration: none; font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-nav a:hover { color: var(--white); }
.footer-contact p { color: rgba(255,255,255,0.45); font-size: 0.9rem; margin-bottom: 10px; }
.footer-bottom {
  padding: 24px 5%;
  text-align: center;
  color: rgba(255,255,255,0.25);
  font-size: 0.85rem;
}

/* === INNER PAGES === */
.page-hero {
  min-height: 50vh;
  display: flex; align-items: flex-end;
  position: relative; overflow: hidden;
  padding: 76px 5% 60px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}
.page-hero-content { position: relative; z-index: 5; max-width: 700px; }
.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 1rem;
}
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.15rem; line-height: 1.7; }

.page-content { padding: 80px 0; }
.page-content h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700; letter-spacing: -1px;
  color: var(--navy); margin-bottom: 1.5rem;
}
.page-content h3 {
  font-family: var(--font-head);
  font-size: 1.4rem; font-weight: 700;
  color: var(--navy); margin: 2.5rem 0 1rem;
}
.page-content p {
  color: var(--text-light); font-size: 1.05rem;
  line-height: 1.8; margin-bottom: 1.5rem;
}
.page-content ul {
  margin-left: 1.5rem; margin-bottom: 2rem;
}
.page-content li {
  color: var(--text-light); font-size: 1rem;
  line-height: 1.7; margin-bottom: 12px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin: 3rem 0;
}
.content-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 36px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.content-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.content-card img {
  width: 100%; border-radius: var(--radius-sm);
  aspect-ratio: 16/9; object-fit: cover;
  margin-bottom: 1.5rem;
}
.content-card h3 {
  font-family: var(--font-head);
  font-size: 1.25rem; font-weight: 700;
  color: var(--navy); margin: 0 0 0.75rem;
}
.content-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; margin: 0; }
.card-tag {
  display: inline-block;
  background: rgba(26,86,219,0.1);
  color: var(--blue);
  font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 99px;
  margin-bottom: 1rem;
}
.card-meta { font-size: 0.8rem; color: var(--text-light); margin-top: 1rem; opacity: 0.7; }

/* Contact Form */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px; align-items: start;
}
.contact-info h2 { font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: var(--navy); margin-bottom: 2rem; letter-spacing: -1px; }
.contact-detail {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 1.5rem;
}
.detail-icon {
  width: 44px; height: 44px;
  background: rgba(26,86,219,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}
.detail-text h4 { font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.detail-text p { font-size: 0.95rem; color: var(--text-light); margin: 0; }
.contact-form-wrap {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 48px;
}
.contact-form-wrap h3 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; margin-bottom: 2rem; color: var(--navy); }
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
label { font-size: 0.85rem; font-weight: 600; color: var(--navy); display: block; margin-bottom: 8px; }
input, textarea, select {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.95rem;
  color: var(--text); background: var(--white);
  transition: var(--transition);
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}
textarea { resize: vertical; min-height: 130px; }
.form-submit {
  width: 100%; padding: 16px;
  background: var(--navy);
  color: var(--white);
  border: none; border-radius: 99px;
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.form-submit:hover { background: var(--blue); transform: translateY(-2px); }
.form-success {
  display: none;
  text-align: center; padding: 2rem;
  background: rgba(26,86,219,0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(26,86,219,0.2);
  color: var(--blue); font-weight: 600; font-size: 1.1rem;
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal-up {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-wide { grid-column: span 2; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-visual { max-width: 500px; margin: 0 auto; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .project-featured { grid-column: span 2; aspect-ratio: 16/7; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .burger { display: flex; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; min-height: 280px; }
  .projects-grid { grid-template-columns: 1fr; }
  .project-featured { grid-column: span 1; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; }
}


/* =======================================================================
   2026 ULTRA-PREMIUM 10/10 AESTHETICS OVERRIDE
   ======================================================================= */
:root {
  --font-head: 'Outfit', sans-serif !important;
  --font-body: 'Plus Jakarta Sans', sans-serif !important;
  --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.05);
  --shadow-lg: 0 25px 50px -12px rgb(0 0 0 / 0.15);
  --shadow-xl: 0 40px 80px -20px rgb(0 0 0 / 0.2);
  --shadow-glow: 0 0 40px rgba(26, 86, 219, 0.3);
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.5);
  --radius-xl: 32px;
}

/* Base Font Override */
body, p, li, a, span, div, input, button {
    font-family: var(--font-body);
}
h1, h2, h3, h4, h5, h6, .hero-title, .nav-logo {
    font-family: var(--font-head);
    letter-spacing: -0.02em;
}

/* Nav Improvements */
.nav {
    backdrop-filter: blur(24px) saturate(200%);
    -webkit-backdrop-filter: blur(24px) saturate(200%);
    background: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255,255,255,0.4);
    box-shadow: var(--shadow-sm);
    padding: 0px 4%;
    height: 84px;
}
.nav-menu a {
    font-weight: 600;
    padding: 10px 20px;
    letter-spacing: 0.2px;
}
.nav-menu .nav-cta {
    background: linear-gradient(135deg, var(--blue, #1a56db), var(--navy, #0f172a)) !important;
    box-shadow: 0 10px 20px rgba(26, 86, 219, 0.3);
    border: 1px solid rgba(255,255,255,0.1);
    transform: translateY(0);
}
.nav-menu .nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(26, 86, 219, 0.4);
}

/* Hero Section Enhancement */
.hero-content {
    animation: heroEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes heroEntrance {
    0% { opacity: 0; transform: translateY(40px) scale(0.98); filter: blur(10px); }
    100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

.hero-badge {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    letter-spacing: 1px;
}

/* Fluid Typography */
.hero-title {
    font-size: clamp(3.5rem, 8vw, 6.5rem) !important;
    line-height: 1.05 !important;
    text-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.hero-title em {
    background: linear-gradient(to right, #60a5fa, #c084fc, #f472b6);
    -webkit-background-clip: text;
    color: transparent;
    font-style: normal;
}

/* Modern Bento Grid Updates */
.bento-grid {
    gap: 24px;
}
.bento-card {
    border-radius: var(--radius-xl);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    overflow: hidden;
}
.bento-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-xl);
    border-color: rgba(255,255,255,0.8);
}
.bento-bg-img {
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.bento-card:hover .bento-bg-img {
    transform: scale(1.08);
}

/* Section Titles */
.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem) !important;
    font-weight: 800 !important;
    margin-bottom: 4rem;
}

/* Preloader Ultra-Smooth */
.preloader {
    backdrop-filter: blur(40px);
}
.pl-fill {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--accent, #1a56db), var(--navy, #0f172a));
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
    border: none;
    letter-spacing: 0.5px;
}
.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(26, 86, 219, 0.4);
}

/* Card Improvements */
.content-card {
    border-radius: var(--radius-xl) !important;
    border: 1px solid rgba(0,0,0,0.05) !important;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: var(--shadow-md) !important;
    transition: var(--transition-smooth) !important;
}
.content-card:hover {
    transform: translateY(-12px) !important;
    box-shadow: var(--shadow-xl) !important;
    border-color: rgba(26, 86, 219, 0.15) !important;
}

/* Timeline updates */
.timeline-item::before {
    box-shadow: 0 0 0 6px rgba(26, 86, 219, 0.1) !important;
    transition: all 0.4s ease;
}
.timeline-item:hover::before {
    transform: scale(1.3);
    box-shadow: 0 0 0 10px rgba(26, 86, 219, 0.2) !important;
}
