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

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

:root {
  --primary: #0B3D5C;
  --primary-dark: #072A40;
  --primary-light: #1A6B9C;
  --secondary: #C9A84C;
  --secondary-light: #E0C06A;
  --accent: #2196F3;
  --text-dark: #1a1a2e;
  --text-body: #3d4f5f;
  --text-light: #6b7c8d;
  --bg-white: #ffffff;
  --bg-light: #f5f7fa;
  --bg-section: #f0f4f8;
  --bg-dark: #0a1628;
  --border-light: #e0e6ed;
  --border-medium: #c5cdd6;
  --shadow-sm: 0 2px 8px rgba(11, 61, 92, 0.08);
  --shadow-md: 0 4px 16px rgba(11, 61, 92, 0.12);
  --shadow-lg: 0 8px 32px rgba(11, 61, 92, 0.16);
  --shadow-xl: 0 16px 48px rgba(11, 61, 92, 0.2);
  --gradient-primary: linear-gradient(135deg, #0B3D5C 0%, #1A6B9C 50%, #2196F3 100%);
  --gradient-gold: linear-gradient(135deg, #C9A84C 0%, #E0C06A 50%, #F0D87A 100%);
  --gradient-hero: linear-gradient(135deg, #0a1628 0%, #0B3D5C 40%, #1A6B9C 100%);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-body);
  background-color: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  color: var(--secondary);
}

ul {
  list-style: none;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-logo {
  height: 48px;
  width: auto;
  transition: var(--transition);
}

.header-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 2px 8px rgba(11, 61, 92, 0.3));
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 8px 18px;
  font-size: 0.925rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

.nav-link:hover {
  color: var(--primary);
  background: rgba(11, 61, 92, 0.05);
}

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.menu-toggle:hover {
  background: rgba(11, 61, 92, 0.05);
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 24px 60px;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
  animation: heroGlow 8s ease-in-out infinite;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 150, 243, 0.1) 0%, transparent 70%);
  animation: heroGlow 10s ease-in-out infinite reverse;
}

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

.hero-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--bg-white);
  line-height: 1.25;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out;
}

.hero-notice {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 28px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.feature-icon {
  color: var(--secondary);
  font-size: 0.75rem;
}

.hero-form-wrapper {
  animation: fadeInRight 0.8s ease-out 0.3s both;
}

.hero-form-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--bg-white);
  margin-bottom: 24px;
  text-align: center;
}

.hero-form-card input[type="email"],
.hero-form-card textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  color: var(--bg-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 14px;
  transition: var(--transition);
  outline: none;
}

.hero-form-card input[type="email"]::placeholder,
.hero-form-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.hero-form-card input[type="email"]:focus,
.hero-form-card textarea:focus {
  border-color: var(--secondary);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.2);
}

.hero-form-card textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-link {
  width: 100%;
  padding: 14px 24px;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

.contact-link:active {
  transform: translateY(0);
}

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

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

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

.sponsor-section {
  padding: 60px 24px;
  background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
  border-top: 3px solid var(--secondary);
}

.sponsor-container {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.sponsor-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 28px;
}

.sponsor-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--primary-dark);
  color: var(--secondary);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
  font-style: italic;
}

.sponsor-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  align-items: start;
}

.sponsor-logo-wrapper {
  background: var(--bg-white);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.sponsor-logo-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.sponsor-logo {
  max-width: 160px;
  height: auto;
  filter: brightness(1.1) saturate(1.2);
  transition: var(--transition);
}

.sponsor-logo:hover {
  filter: brightness(1.2) saturate(1.3) drop-shadow(0 2px 8px rgba(0,0,0,0.15));
  transform: scale(1.05);
}

.sponsor-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--primary);
  margin-bottom: 14px;
}

.sponsor-desc {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 20px;
}

.sponsor-link {
  color: var(--primary-light);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.sponsor-link:hover {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

.sponsor-services-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 14px;
}

.sponsor-services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.sponsor-service-item {
  display: inline-block;
  padding: 6px 16px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--primary);
  transition: var(--transition);
}

.sponsor-service-item:hover {
  background: var(--primary);
  color: var(--bg-white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.sponsor-detail-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 14px;
}

.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 16px;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  margin: 16px auto 0;
  border-radius: 3px;
}

.section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.about-section {
  padding: 80px 24px;
  background: var(--bg-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
  color: var(--text-body);
}

.about-images {
  display: grid;
  gap: 16px;
}

.about-img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.about-img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.about-mission {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 40px;
  align-items: center;
}

.mission-img-wrapper {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.mission-img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

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

.mission-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 18px;
}

.mission-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--text-body);
}

.services-section {
  padding: 80px 24px;
  background: var(--bg-section);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

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

.service-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary);
  padding: 20px 24px 10px;
}

.service-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-body);
  padding: 0 24px 24px;
}

.projects-section {
  padding: 80px 24px;
  background: var(--bg-white);
}

.project-showcase {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 48px;
}

.project-card {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: 32px;
  align-items: center;
  padding: 32px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.project-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.project-reverse {
  direction: rtl;
}

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

.project-img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.project-card:hover .project-img {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.project-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 14px;
}

.project-desc {
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--text-body);
}

.project-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.gallery-img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.team-section {
  padding: 80px 24px;
  background: var(--bg-section);
}

.team-intro {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}

.team-intro-text p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--text-body);
}

.team-intro-images {
  display: grid;
  gap: 16px;
}

.team-img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

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

.team-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.team-gallery-img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-gallery-img:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-section {
  padding: 80px 24px;
  background: var(--bg-white);
}

.why-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.why-card {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 40px;
  align-items: center;
}

.why-card-reverse {
  grid-template-columns: 0.6fr 0.4fr;
}

.why-card-reverse .why-img-wrapper {
  order: 2;
}

.why-card-reverse .why-text {
  order: 1;
}

.why-img-wrapper {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.why-img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

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

.why-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

.why-text p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
}

.ecosystem-section {
  padding: 80px 24px;
  background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-white) 100%);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.partner-card {
  padding: 28px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary-light);
}

.partner-desc {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-body);
}

.partner-link {
  color: var(--primary-light);
  font-weight: 600;
  border-bottom: 1px dashed var(--primary-light);
  transition: var(--transition);
}

.partner-link:hover {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
}

.insight-section {
  padding: 80px 24px;
  background: var(--bg-white);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 40px;
}

.insight-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: var(--transition);
}

.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.insight-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--transition);
}

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

.insight-content {
  padding: 24px;
}

.insight-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.insight-desc {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-body);
}

.insight-images-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.insight-row-img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.insight-row-img:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-md);
}

.contact-section {
  padding: 80px 24px;
  background: var(--bg-section);
}

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

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 24px;
  background: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
}

.contact-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
}

.contact-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
}

.contact-office-img {
  width: 100%;
  max-height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  margin-bottom: 16px;
  transition: var(--transition);
  outline: none;
}

.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(26, 107, 156, 0.15);
  background: var(--bg-white);
}

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

.contact-form .contact-link {
  background: var(--gradient-primary);
  color: var(--bg-white);
}

.contact-form .contact-link:hover {
  box-shadow: 0 6px 20px rgba(11, 61, 92, 0.3);
}

.site-footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 24px 0;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(1.5);
}

.footer-brand-text {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--bg-white);
  margin-bottom: 20px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--secondary);
  padding-left: 4px;
}

.footer-partner-text {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.6);
}

.footer-partner-link {
  color: var(--secondary-light);
  font-weight: 600;
  transition: var(--transition);
}

.footer-partner-link:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
}

.copyright {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

@keyframes slideInFromLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInFromRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.3); }
  50% { box-shadow: 0 0 0 12px rgba(201, 168, 76, 0); }
}

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

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-features {
    align-items: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-mission {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card,
  .project-reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

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

  .team-intro {
    grid-template-columns: 1fr;
  }

  .team-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-card,
  .why-card-reverse {
    grid-template-columns: 1fr;
  }

  .why-card-reverse .why-img-wrapper {
    order: 0;
  }

  .why-card-reverse .why-text {
    order: 0;
  }

  .partners-grid {
    grid-template-columns: 1fr;
  }

  .insight-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
  }

  .sponsor-content {
    grid-template-columns: 1fr;
  }

  .sponsor-logo-wrapper {
    max-width: 200px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .header-container {
    height: 64px;
  }

  .header-logo {
    height: 40px;
  }

  .main-nav {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border-light);
    animation: slideDown 0.3s ease;
  }

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

  .main-nav.active {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    width: 100%;
    gap: 4px;
  }

  .nav-link {
    width: 100%;
    padding: 12px 18px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .nav-link::after {
    display: none;
  }

  .nav-link:hover,
  .nav-link.active {
    background: var(--bg-light);
  }

  .menu-toggle {
    display: flex;
  }

  .hero-section {
    padding: 90px 16px 40px;
    min-height: auto;
  }

  .hero-title {
    font-size: 1.65rem;
  }

  .hero-notice {
    font-size: 0.9rem;
  }

  .hero-form-card {
    padding: 24px;
  }

  .form-title {
    font-size: 1.25rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .about-section,
  .services-section,
  .projects-section,
  .team-section,
  .why-section,
  .ecosystem-section,
  .insight-section,
  .contact-section {
    padding: 50px 16px;
  }

  .section-container {
    padding: 0;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-card {
    padding: 20px 14px;
  }

  .stat-number {
    font-size: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    padding: 20px;
    gap: 20px;
  }

  .project-gallery {
    grid-template-columns: 1fr;
  }

  .team-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .insight-images-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 24px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .sponsor-section {
    padding: 40px 16px;
  }

  .sponsor-services-grid {
    gap: 6px;
  }

  .sponsor-service-item {
    font-size: 0.78rem;
    padding: 5px 12px;
  }

  .sponsor-badge {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.4rem;
  }

  .hero-container {
    gap: 24px;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .stat-number {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .team-gallery {
    grid-template-columns: 1fr;
  }

  .mission-title,
  .why-name {
    font-size: 1.3rem;
  }

  .project-name {
    font-size: 1.15rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.service-card,
.project-card,
.insight-card,
.partner-card,
.stat-card,
.why-card {
  cursor: pointer;
}

.sponsor-service-item:focus,
.nav-link:focus,
.contact-link:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

.hero-form-card input:focus,
.hero-form-card textarea:focus,
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
}

::selection {
  background: var(--secondary);
  color: var(--primary-dark);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}
