/* =============================================
   S4C – Space for Change | Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

@font-face {
  font-family: 'Montserrat-BoldItalic';
  src: url('../Font/Montserrat-BoldItalic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* ─── CSS Variables ─── */
:root {
  --black:        #080808;
  --dark:         #0f0f0f;
  --dark-card:    #141414;
  --dark-surface: #1a1a1a;
  --yellow:       #f5c800;
  --yellow-light: #ffe44d;
  --yellow-dim:   #b89a00;
  --red:          #e84040;
  --red-dim:      #a32b2b;
  --white:        #ffffff;
  --white-60:     rgba(255,255,255,0.60);
  --white-30:     rgba(255,255,255,0.30);
  --white-10:     rgba(255,255,255,0.08);
  --glow-yellow:  0 0 40px rgba(245,200,0,0.25);
  --glow-red:     0 0 40px rgba(232,64,64,0.25);
  --border:       1px solid rgba(255,255,255,0.08);
  --radius:       16px;
  --radius-lg:    24px;
  --transition:   all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { background: var(--yellow); color: var(--black); }

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

a { text-decoration: none; color: inherit; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 3px; }

/* ─── Typography ─── */
h1, h2, h3, h4, h5 { line-height: 1.2; font-family: 'Outfit', sans-serif; font-weight: 800; }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--yellow);
  padding: 6px 16px;
  border: 1px solid rgba(245,200,0,0.35);
  border-radius: 50px;
  margin-bottom: 18px;
  background: rgba(245,200,0,0.06);
}

.section-title {
 font-size: clamp(1.8rem, 4.5vw, 3rem) !important;
color: var(--yellow);
margin-bottom: 12px;
}

.section-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--white);
  font-weight: 500;
  margin-bottom: 20px;
}

.section-body {
  font-size: 1rem;
  color: var(--white-60);
  max-width: 640px;
  line-height: 1.8;
}

/* ─── Utility Classes ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

.text-yellow { color: var(--yellow); }
.text-red    { color: var(--red); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--white-60); }

.gradient-text {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--yellow), var(--red));
  border-radius: 2px;
  margin: 20px 0 32px;
}

.divider-center { margin: 20px auto 32px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: linear-gradient(135deg, var(--yellow), #e8a800);
  color: var(--black);
  box-shadow: 0 8px 30px rgba(245,200,0,0.3);
}

.btn-primary:hover { box-shadow: 0 12px 40px rgba(245,200,0,0.5); }

.btn-outline {
  background: transparent;
  color: var(--yellow);
  border: 2px solid var(--yellow);
}

.btn-outline:hover {
  background: var(--yellow);
  color: var(--black);
  box-shadow: var(--glow-yellow);
}

.btn-ghost {
  background: var(--white-10);
  color: var(--white);
  border: var(--border);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.2);
}

/* ─── Card ─── */
.card {
  background: var(--dark-card);
  border: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  border-color: rgba(245,200,0,0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), var(--glow-yellow);
}

/* ─── Page Sections ─── */
.page-section {
  display: none;
  min-height: 100vh;
  animation: fadeInPage 0.6s ease forwards;
}

.page-section.active { display: block; }

@keyframes fadeInPage {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Navbar ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(8,8,8,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.nav-logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 10px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text span:first-child {
  font-family: 'Montserrat-BoldItalic', sans-serif;
  font-size: 1.15rem;
  font-weight: normal;
  font-style: normal;
  color: var(--yellow);
  letter-spacing: 0.05em;
  line-height: 1.1;
}

.nav-logo-text span:last-child {
  font-family: 'Montserrat-BoldItalic', sans-serif;
  font-size: 0.68rem;
  font-weight: normal;
  font-style: normal;
  color: var(--white-60);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.nav-links li a,
.nav-links li button {
  background: none;
  border: none;
  color: var(--white-60);
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links li a:hover,
.nav-links li button:hover {
  color: var(--yellow);
  background: rgba(245,200,0,0.08);
}

.nav-links li a.active,
.nav-links li button.active {
  color: var(--yellow);
  background: rgba(245,200,0,0.12);
}

.nav-cta {
  background: linear-gradient(135deg, var(--yellow), #e8a800) !important;
  color: var(--black) !important;
  border-radius: 50px !important;
  padding: 8px 20px !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  box-shadow: 0 6px 20px rgba(245,200,0,0.4) !important;
  transform: translateY(-2px);
  background: rgba(245,200,0,0.12) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(20px);
  border-bottom: var(--border);
  padding: 20px;
  z-index: 999;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu.open { display: flex; }

.mobile-menu button {
  background: none;
  border: none;
  color: var(--white-60);
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.mobile-menu button:hover,
.mobile-menu button.active { color: var(--yellow); background: rgba(245,200,0,0.08); }

/* ─── Hero Section ─── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,8,8,0.3) 0%,
    rgba(8,8,8,0.5) 50%,
    rgba(8,8,8,0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px 40px 80px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,200,0,0.1);
  border: 1px solid rgba(245,200,0,0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 28px;
  animation: slideDown 0.8s ease forwards;
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: 'Montserrat-BoldItalic', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: normal;
  font-style: normal;
  line-height: 1.1;
  margin-bottom: 12px;
  animation: slideUp 0.8s ease 0.1s both;
}

.hero-title .line1 { color: var(--white); display: block; }
.hero-title .line2 {
  display: block;
  background: linear-gradient(135deg, var(--yellow) 0%, #e8a800 50%, var(--red) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--white-60);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 28px;
  animation: slideUp 0.8s ease 0.2s both;
}

.hero-quote {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 3px solid var(--yellow);
  animation: slideUp 0.8s ease 0.3s both;
}

.hero-quote em { color: var(--yellow); font-style: italic; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: slideUp 0.8s ease 0.4s both;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--white-60);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(var(--yellow), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

.hero-stats {
  position: absolute;
  bottom: 80px;
  right: 40px;
  z-index: 2;
  display: flex;
  gap: 32px;
  animation: slideUp 0.8s ease 0.5s both;
}

.hero-stat {
  text-align: center;
}

.hero-stat .number {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
}

.hero-stat .label {
  font-size: 0.7rem;
  color: var(--white-60);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Projects Navigation ─── */
.projects-nav {
  background: var(--dark-surface);
  border-bottom: var(--border);
  padding: 20px 40px;
  position: sticky;
  top: 72px;
  z-index: 100;
  overflow-x: auto;
  scrollbar-width: none;
}

.projects-nav::-webkit-scrollbar { display: none; }

.projects-nav-inner {
  display: flex;
  gap: 8px;
  max-width: 1400px;
  margin: 0 auto;
  white-space: nowrap;
}

.proj-nav-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white-60);
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.proj-nav-btn:hover {
  color: var(--yellow);
  border-color: rgba(245,200,0,0.4);
  background: rgba(245,200,0,0.06);
}

.proj-nav-btn.active {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  font-weight: 700;
}

/* ─── Project Pages ─── */
.project-page {
  display: none;
  padding-top: 72px;
  min-height: 100vh;
  animation: fadeInPage 0.5s ease forwards;
}

.project-page.active { display: block; }

.project-hero {
  position: relative;
  height: 65vh;
  min-height: 480px;
  overflow: hidden;
}

.project-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: transform 0.8s ease;
}

.project-hero:hover img { transform: scale(1.03); }

.project-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8,8,8,1) 0%,
    rgba(8,8,8,0.5) 40%,
    rgba(8,8,8,0.1) 100%
  );
  display: flex;
  align-items: flex-end;
}

.project-hero-content {
  padding: 60px 60px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.project-num {
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(245,200,0,0.12);
  line-height: 1;
  margin-bottom: -20px;
  letter-spacing: -0.02em;
}

.project-hero-title {
  font-size: clamp(1.5rem, 3.5vw, 2.8rem);
  color: var(--yellow);
  font-weight: 900;
}

.project-hero-sub {
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 500;
  margin-top: 6px;
}

/* ─── Project Visual Placeholder ─── */
.project-visual-bg {
  width: 100%;
  height: 65vh;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.project-visual-bg .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,1) 0%, rgba(8,8,8,0.4) 50%, transparent 100%);
  z-index: 2;
}

.project-visual-bg .icon-display {
  position: relative;
  z-index: 1;
  text-align: center;
}

.project-visual-bg .icon-display svg {
  width: 120px;
  height: 120px;
  opacity: 0.15;
}

.visual-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  padding: 60px;
  max-width: 1400px;
  margin: 0 auto;
}

/* ─── Project Content Area ─── */
.project-content {
  padding: 80px 0;
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.project-grid.reverse { direction: rtl; }
.project-grid.reverse > * { direction: ltr; }

.project-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--dark-surface);
  border: var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.feature-item:hover {
  border-color: rgba(245,200,0,0.25);
  background: rgba(245,200,0,0.04);
  transform: translateX(6px);
}

.feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  background: rgba(245,200,0,0.1);
  border: 1px solid rgba(245,200,0,0.2);
}

.feature-icon.red-icon {
  background: rgba(232,64,64,0.1);
  border-color: rgba(232,64,64,0.2);
}

.feature-text strong {
  display: block;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-text p {
  color: var(--white-60);
  font-size: 0.9rem;
}

/* ─── About Section ─── */
#about-section {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

#about-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,200,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-logo-display {
  background: var(--dark-surface);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-logo-display::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(245,200,0,0.08) 0%, transparent 70%);
}

.about-logo-display img {
  width: 240px;
  height: 240px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(245,200,0,0.2));
}

.about-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--yellow), #e8a800);
  color: var(--black);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(245,200,0,0.3);
}

.about-badge-float .big-num {
  font-size: 1.8rem;
  line-height: 1;
  display: block;
}

.about-badge-float .small-text {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-text .section-body { max-width: 100%; }

.philosophy-box {
  background: var(--dark-surface);
  border: var(--border);
  border-left: 3px solid var(--yellow);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 28px;
}

.philosophy-box h4 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 12px;
}

.philosophy-box p {
  color: var(--white-60);
  font-size: 0.95rem;
  line-height: 1.8;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.why-item {
  background: var(--dark-surface);
  border: var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}

.why-item:hover {
  border-color: rgba(245,200,0,0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.why-item .why-icon { font-size: 1.8rem; margin-bottom: 10px; }
.why-item strong { display: block; color: var(--yellow); font-size: 0.85rem; margin-bottom: 4px; }
.why-item p { color: var(--white-60); font-size: 0.78rem; }

/* ─── Founder Section ─── */
#founder-section {
  padding: 140px 0;
  position: relative;
  background: transparent;
  overflow: hidden;
}

#founder-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
}

.founder-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
}

.founder-card {
  position: relative;
}

.founder-photo {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--dark-surface);
  border: var(--border);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.founder-photo:hover img { transform: scale(1.04); }

.founder-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.7) 0%, transparent 50%);
  z-index: 1;
}

.founder-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: radial-gradient(circle at center, rgba(245,200,0,0.08) 0%, transparent 70%);
}

.founder-initials {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), #e8a800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 900;
  color: var(--black);
  box-shadow: 0 0 60px rgba(245,200,0,0.3);
}

.founder-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(10px);
  border: var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
}

.founder-tag h3 { color: var(--yellow); font-size: 1rem; }
.founder-tag p { color: var(--white-60); font-size: 0.8rem; margin-top: 2px; }

.founder-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--yellow);
  margin-bottom: 6px;
}

.founder-info .founder-title {
  font-size: 1rem;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.founder-info .founder-bio {
  color: var(--white-60);
  line-height: 1.9;
  margin-bottom: 24px;
}

.founder-quote {
  background: var(--dark-surface);
  border: var(--border);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 28px;
  margin: 32px 0;
  position: relative;
}

.founder-quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 3.5rem;
  color: var(--yellow);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.founder-quote p {
  color: var(--white);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.7;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.cred-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--dark-surface);
  border: var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.82rem;
  color: var(--white-60);
  transition: var(--transition);
}

.cred-badge:hover {
  border-color: rgba(245,200,0,0.3);
  color: var(--yellow);
}

.cred-badge .dot { 
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
}

/* ─── Contact Section ─── */
#contact-section {
  padding: 140px 0 80px;
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info-card {
  background: var(--dark-surface);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--red));
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: var(--border);
}

.contact-item:last-child { border-bottom: none; }

.contact-item-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(245,200,0,0.1);
  border: 1px solid rgba(245,200,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-item-text strong {
  display: block;
  color: var(--yellow);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}

.contact-item-text a,
.contact-item-text span {
  color: var(--white);
  font-size: 1rem;
  transition: color 0.3s;
}

.contact-item-text a:hover { color: var(--yellow); }

.contact-form-card {
  background: var(--dark-surface);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-60);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--yellow);
  background: rgba(245,200,0,0.04);
  box-shadow: 0 0 0 3px rgba(245,200,0,0.1);
}

.form-group textarea { height: 120px; resize: vertical; }

.form-group select option { background: var(--dark); }

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

/* ─── Footer ─── */
#footer {
  background: var(--dark);
  border-top: var(--border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-brand .logo-wrap img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-brand .logo-wrap span {
  font-family: 'Montserrat-BoldItalic', sans-serif;
  font-size: 1.25rem;
  font-weight: normal;
  font-style: normal;
  color: var(--yellow);
}

.footer-brand p {
  color: var(--white-60);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--dark-surface);
  border: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--yellow);
  color: var(--black);
  border-color: var(--yellow);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li button {
  background: none;
  border: none;
  color: var(--white-60);
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  cursor: pointer;
  transition: color 0.3s;
  padding: 0;
  text-align: left;
}
.footer-col ul li button:hover { color: var(--yellow); }
.footer-col ul li a {
  color: var(--white-60);
  font-size: 0.88rem;
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--yellow); }

.footer-bottom {
  border-top: var(--border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: var(--white-30);
  font-size: 0.82rem;
}

.footer-bottom p span { color: var(--yellow); }

/* ─── Section Background Patterns ─── */
.bg-pattern-1 {
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(245,200,0,0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(232,64,64,0.04) 0%, transparent 50%),
    var(--black);
}

.bg-pattern-2 {
  background:
    radial-gradient(ellipse at 80% 80%, rgba(245,200,0,0.04) 0%, transparent 50%),
    var(--dark);
}

.section-spacer { padding: 140px 0; }

/* ─── Why Partner Section ─── */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.partner-card {
  background: var(--dark-surface);
  border: var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.partner-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), var(--red));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.partner-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245,200,0,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.partner-card:hover::before { transform: scaleX(1); }

.partner-card .icon {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.partner-card h3 {
  font-size: 1.1rem;
  color: var(--yellow);
  margin-bottom: 10px;
}

.partner-card p {
  color: var(--white-60);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ─── Floating particles ─── */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float-particle linear infinite;
}

@keyframes float-particle {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; }
  .founder-grid { grid-template-columns: 1fr; }
  .founder-card { max-width: 400px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .project-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .project-hero-content { padding: 40px; }
  .visual-hero-content { padding: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .partner-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 120px 24px 60px; }
  .container { padding: 0 20px; }
  .container-wide { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .section-spacer { padding: 80px 0; }
  .contact-info-card,
  .contact-form-card { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .projects-nav { padding: 16px 20px; }
}



