/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Logo Colors */
  --blue: #29b6f6;      /* Pusula Blue */
  --blue-dark: #0288d1;
  --pink: #e91e63;      /* Cocuk Pink */
  --pink-dark: #c2185b;
  --orange: #ffa726;    /* Ogrenci Etkinlik Orange */
  --orange-light: #ffcc80;
  --yellow: #ffee58;    /* Rocket Accents */
  
  --navy: #1a2530;      /* Dark text / outlines */
  --white: #ffffff;
  --bg-color: #fffbf5;  /* Soft cream background */
  --bg-alt: #f0f7fb;    /* Soft blue background for alternating sections */
  
  --text: #2c3e50;
  --text-light: #546e7a;
  
  --shadow-sm: 0 4px 8px rgba(0,0,0,.04);
  --shadow-md: 0 8px 24px rgba(41, 182, 246, 0.15);
  --shadow-lg: 0 12px 32px rgba(233, 30, 99, 0.15);
  --shadow-fun: 4px 4px 0px rgba(26, 37, 48, 0.1);
  --shadow-btn: 0px 6px 0px rgba(0,0,0,0.15);
  
  --radius: 24px;
  --radius-pill: 50px;
  --radius-blob: 40% 60% 70% 30% / 40% 50% 60% 50%;
  
  --transition: .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --max-w: 1140px;
}

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

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--bg-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'DynaPuff', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.5rem, 6vw, 4rem); letter-spacing: -1px; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
h3 { font-size: 1.4rem; }

.section-header { text-align: center; margin-bottom: 60px; position: relative; }
.section-header h2 { 
  display: inline-block;
  position: relative;
  color: var(--blue-dark);
}
.section-header h2::after {
  content: ''; position: absolute; bottom: -8px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 6px; background: var(--pink);
  border-radius: var(--radius-pill);
}
.section-header p { 
  color: var(--text-light); max-width: 600px; margin: 24px auto 0; 
  font-size: 1.1rem; font-weight: 500;
}

section { padding: 100px 0; }
section:nth-child(even) { background: var(--bg-alt); }

/* ===== HEADER / NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: var(--bg-color);
  box-shadow: var(--shadow-sm);
  transition: all .3s ease;
  padding: 12px 0;
}
.navbar.scrolled { 
  padding: 8px 0;
  background: rgba(255, 251, 245, 0.95); 
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md); 
}

.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo-img { height: 75px; width: auto; object-fit: contain; transition: var(--transition); }
.navbar.scrolled .brand-logo-img { height: 55px; }
.footer-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; margin-bottom: 20px; }
.footer-logo .brand-logo-img { height: 90px; filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.45)) brightness(1.05); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text strong { font-size: 1.4rem; color: var(--blue); font-weight: 700; font-family: 'DynaPuff', sans-serif; }
.logo-text span { font-size: .8rem; color: var(--pink); font-weight: 600; letter-spacing: 0.5px; }

.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
  font-size: 1rem; font-weight: 600; color: var(--text);
  padding: 8px 16px; border-radius: var(--radius-pill);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { 
  background: rgba(41, 182, 246, 0.1); 
  color: var(--blue-dark); 
}

.nav-cta {
  background: var(--orange); color: var(--white) !important;
  box-shadow: 0 4px 0 var(--orange-light) !important;
  transform: translateY(0);
}
.nav-cta:hover { 
  background: var(--orange) !important; 
  transform: translateY(-2px);
  box-shadow: 0 6px 0 var(--orange-light) !important;
}
.nav-cta:active {
  transform: translateY(4px);
  box-shadow: none !important;
}

/* Mobile menu */
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 24px; position: relative; z-index: 1001;
}
.menu-toggle span {
  display: block; width: 100%; height: 4px; background: var(--blue);
  border-radius: 4px; position: absolute; left: 0; transition: var(--transition);
}
.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 10px; }
.menu-toggle span:nth-child(3) { top: 20px; }
.menu-toggle.active span:nth-child(1) { top: 10px; transform: rotate(45deg); background: var(--pink); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { top: 10px; transform: rotate(-45deg); background: var(--pink); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--bg-color); color: var(--navy);
  position: relative; overflow: hidden; padding: 120px 0 80px;
}
.hero::after {
  content: ''; position: absolute; top: -10%; right: -5%;
  width: 50vw; height: 50vw; background: var(--yellow);
  border-radius: 50%; opacity: 0.2; z-index: 0; filter: blur(60px);
  animation: float 15s ease-in-out infinite;
}
.hero::before {
  content: ''; position: absolute; bottom: -10%; left: -5%;
  width: 40vw; height: 40vw; background: var(--pink);
  border-radius: 50%; opacity: 0.1; z-index: 0; filter: blur(60px);
  animation: float 20s ease-in-out infinite reverse;
}

/* Floating Shapes */
.floating-shapes {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 1; overflow: hidden;
}
.shape { position: absolute; font-size: 2.5rem; opacity: 0.7; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1)); }
.shape.s1 { top: 15%; left: 10%; animation: float 6s ease-in-out infinite; }
.shape.s2 { top: 25%; right: 15%; animation: float 5s ease-in-out infinite 1s; font-size: 3rem; }
.shape.s3 { bottom: 20%; left: 15%; animation: float 7s ease-in-out infinite 2s; }
.shape.s4 { bottom: 30%; right: 10%; animation: float 6s ease-in-out infinite 0.5s; font-size: 3.5rem; }
.shape.s5 { top: 40%; left: 5%; animation: float 8s ease-in-out infinite 1.5s; }
.shape.s6 { top: 50%; right: 5%; animation: float 5.5s ease-in-out infinite 2.5s; font-size: 2.8rem; }

.hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; margin: 0 auto; }
.hero-badge {
  display: inline-block; background: rgba(233, 30, 99, 0.1);
  color: var(--pink-dark); padding: 8px 24px; border-radius: var(--radius-pill);
  font-size: .9rem; font-weight: 700; margin-bottom: 32px;
  border: 2px dashed var(--pink);
}
.hero h1 { margin-bottom: 24px; color: var(--navy); font-size: clamp(3rem, 8vw, 5rem); line-height: 1.25; text-shadow: 4px 4px 0 rgba(255, 167, 38, 0.15); }
.hero h1 .highlight { 
  color: transparent; 
  background: linear-gradient(45deg, var(--blue), var(--pink), var(--orange), var(--blue));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
  padding-top: 10px;
  animation: gradientText 6s ease-in-out infinite;
}
.hero-desc {
  font-size: 1.2rem; color: var(--text-light); font-weight: 500;
  max-width: 700px; margin: 0 auto 40px; line-height: 1.8;
}
.hero-actions { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px; font-size: 1.1rem; font-weight: 700;
  border-radius: var(--radius-pill);
  border: none; cursor: pointer; transition: var(--transition);
  font-family: 'DynaPuff', sans-serif; text-align: center;
}
.btn-primary { 
  background: var(--pink); color: var(--white); 
  box-shadow: 0 6px 0 var(--pink-dark);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 9px 0 var(--pink-dark); }
.btn-primary:active { transform: translateY(6px); box-shadow: none; }

.btn-outline {
  background: var(--white); color: var(--blue-dark);
  border: 3px solid var(--blue);
  box-shadow: 0 6px 0 var(--blue);
}
.btn-outline:hover { transform: translateY(-3px); box-shadow: 0 9px 0 var(--blue); background: var(--bg-alt); }
.btn-outline:active { transform: translateY(6px); box-shadow: none; }

.hero-stats {
  display: flex; gap: 32px; justify-content: center; margin-top: 80px; flex-wrap: wrap;
}
.hero-stat {
  background: var(--white); padding: 20px 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  border-bottom: 4px solid var(--orange);
}
.hero-stat strong {
  display: block; font-family: 'DynaPuff', sans-serif;
  font-size: 2.5rem; color: var(--blue); line-height: 1;
}
.hero-stat span { font-size: 1rem; color: var(--text-light); font-weight: 600; }

/* ===== KURUMLAR (Institutions) ===== */
.institutions-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px;
}
.institution-card {
  background: var(--white); border-radius: 32px;
  padding: 48px; transition: var(--transition);
  box-shadow: var(--shadow-md);
  position: relative; border: 2px solid transparent;
}
.institution-card:nth-child(1) { border-bottom: 8px solid var(--pink); }
.institution-card:nth-child(2) { border-bottom: 8px solid var(--blue); }

.institution-card:hover { transform: translateY(-10px); }

.institution-card .card-label {
  display: inline-block; padding: 6px 16px; border-radius: var(--radius-pill);
  font-size: .85rem; font-weight: 700; margin-bottom: 20px;
}
.institution-card:nth-child(1) .card-label { background: rgba(233, 30, 99, 0.1); color: var(--pink); }
.institution-card:nth-child(2) .card-label { background: rgba(41, 182, 246, 0.1); color: var(--blue); }

.institution-card h3 { margin-bottom: 16px; font-size: 1.6rem; }
.institution-card p { color: var(--text-light); font-size: 1.05rem; margin-bottom: 24px; font-weight: 500; }
.institution-card .card-features { margin-bottom: 32px; }
.institution-card .card-features li {
  padding: 8px 0; font-size: 1rem; color: var(--text);
  display: flex; align-items: center; gap: 12px; font-weight: 600;
}
.institution-card:nth-child(1) .card-features li::before {
  content: '🌸'; font-size: 1.2rem;
}
.institution-card:nth-child(2) .card-features li::before {
  content: '🚀'; font-size: 1.2rem;
}

.card-link {
  font-size: 1rem; font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-pill);
  transition: var(--transition);
}
.institution-card:nth-child(1) .card-link { background: var(--pink); color: var(--white); }
.institution-card:nth-child(2) .card-link { background: var(--blue); color: var(--white); }
.card-link:hover { opacity: 0.9; transform: translateX(5px); }

.card-insta-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.95rem; margin-bottom: 16px;
  transition: var(--transition); text-decoration: none;
}
.institution-card:nth-child(1) .card-insta-link { color: var(--pink); }
.institution-card:nth-child(2) .card-insta-link { color: var(--blue); }
.card-insta-link:hover { opacity: 0.7; }
.card-insta-link svg { width: 18px; height: 18px; }

/* ===== NEDEN PUSULA ===== */
.reasons-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.reason-item {
  padding: 40px 32px; border-radius: var(--radius);
  background: var(--white); transition: var(--transition);
  text-align: center; box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
}
.reason-item:hover { transform: scale(1.03); box-shadow: var(--shadow-lg); border-color: var(--yellow); }
.reason-item .reason-num {
  width: 60px; height: 60px; margin: 0 auto 24px;
  background: var(--bg-alt); color: var(--blue);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: 'DynaPuff', sans-serif; font-size: 1.5rem; font-weight: 700;
  animation: float 4s ease-in-out infinite;
}
.reason-item:nth-child(even) .reason-num { background: rgba(233, 30, 99, 0.1); color: var(--pink); }
.reason-item h3 { font-size: 1.3rem; margin-bottom: 12px; }
.reason-item p { font-size: 1rem; color: var(--text-light); font-weight: 500; }

/* ===== ETKİNLİKLER ===== */
.activities-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.activity-card {
  display: flex; gap: 24px; padding: 40px; border-radius: 32px;
  background: var(--white); transition: var(--transition);
  box-shadow: var(--shadow-md); align-items: center;
}
.activity-card:hover { transform: translateY(-5px); }
.activity-icon {
  width: 80px; height: 80px; border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 2.5rem;
  animation: float 3s ease-in-out infinite;
}
.activity-card:nth-child(1) .activity-icon { background: rgba(255, 167, 38, 0.15); border: 2px solid var(--orange); }
.activity-card:nth-child(2) .activity-icon { background: rgba(41, 182, 246, 0.15); border: 2px solid var(--blue); }
.activity-card h3 { margin-bottom: 8px; font-size: 1.4rem; }
.activity-card p { font-size: 1rem; color: var(--text-light); font-weight: 500; }

/* ===== HİZMETLER ===== */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.service-item {
  text-align: center; padding: 40px 24px; border-radius: var(--radius);
  background: var(--white); transition: var(--transition);
  box-shadow: var(--shadow-sm); border-bottom: 4px solid var(--orange);
}
.service-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.service-item .service-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: var(--bg-alt); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.service-item h4 { font-size: 1.2rem; margin-bottom: 10px; }
.service-item p { font-size: .95rem; color: var(--text-light); font-weight: 500; }

/* ===== KAYIT FORMU ===== */
section.registration { background: var(--blue-dark); color: var(--white); position: relative; overflow: hidden; }
.registration::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
}
.registration .section-header h2 { color: var(--white); }
.registration .section-header p { color: rgba(255,255,255,.8); }

.reg-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2;
}
.reg-info h3 { color: var(--yellow); font-size: 1.8rem; margin-bottom: 20px; }
.reg-info p { color: rgba(255,255,255,.9); margin-bottom: 32px; font-size: 1.1rem; }
.reg-info-list li {
  padding: 16px 0; border-bottom: 1px dashed rgba(255,255,255,.2);
  color: var(--white); font-size: 1.1rem; font-weight: 600;
  display: flex; align-items: center; gap: 16px;
}
.reg-info-list li::before {
  content: '⭐'; font-size: 1.2rem;
}
.reg-info-list li svg { display: none !important; }

.reg-form-container {
  background: var(--white); padding: 48px; border-radius: 32px;
  box-shadow: 0 20px 40px rgba(0,0,0,.2);
}
.reg-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; font-family: 'DynaPuff', sans-serif;
}
.form-group input,
.form-group select {
  width: 100%; max-width: 100%;
  background: var(--bg-color); border: 2px solid #e0e6ed;
  color: var(--navy); padding: 16px; border-radius: 16px; font-size: 1rem;
  font-family: 'Nunito', sans-serif; font-weight: 600; outline: none;
  transition: var(--transition);
}
.form-group select {
  text-overflow: ellipsis; white-space: nowrap; overflow: hidden;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(41, 182, 246, 0.2); }

.form-submit { margin-top: 16px; }

/* ===== İLETİŞİM ===== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.contact-item {
  padding: 48px; border-radius: 32px;
  background: var(--white); box-shadow: var(--shadow-md);
  border-left: 8px solid var(--orange);
  height: 100%; display: flex; flex-direction: column; justify-content: center;
}
.contact-item .contact-label {
  display: inline-block; align-self: flex-start; padding: 6px 16px; background: rgba(255, 167, 38, 0.15);
  color: var(--orange); border-radius: var(--radius-pill);
  font-size: .85rem; font-weight: 700; margin-bottom: 24px;
}
.contact-item h3 { margin-bottom: 24px; font-size: 1.8rem; }
.contact-detail {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; font-size: 1.1rem; color: var(--text); font-weight: 600;
}
.contact-detail svg { width: 24px; height: 24px; color: var(--blue); flex-shrink: 0; }
.contact-detail a { transition: color var(--transition); }
.contact-detail a:hover { color: var(--pink); }

.map-container {
  border-radius: 32px; overflow: hidden; box-shadow: var(--shadow-md);
  height: 100%; min-height: 350px;
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy); color: rgba(255,255,255,.7);
  padding: 80px 0 32px; position: relative;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: start;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap; gap: 48px;
}
.footer-brand .logo-text strong { color: var(--white); }
.footer-brand .logo-text span { color: var(--yellow); }
.footer-brand p { margin-top: 20px; font-size: 1.05rem; max-width: 320px; font-weight: 500; }

.footer-links { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-links h4 {
  color: var(--white); font-size: 1.2rem; margin-bottom: 24px;
}
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul a { font-size: 1rem; font-weight: 500; transition: color var(--transition); }
.footer-links ul a:hover { color: var(--yellow); padding-left: 8px; }

.footer-social { display: flex; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.footer-social a {
  height: 48px; padding: 0 20px; background: rgba(255,255,255,.05);
  border-radius: var(--radius-pill); display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: var(--transition); color: var(--white); font-weight: 600; font-size: 0.95rem; text-decoration: none;
}
.footer-social a:hover { background: var(--pink); transform: translateY(-4px); }
.footer-social a svg { width: 20px; height: 20px; color: var(--white); flex-shrink: 0; }

.footer-bottom {
  text-align: center; padding-top: 32px; font-weight: 500;
  font-size: .95rem; display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.developer-credit {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  margin-top: 16px; padding-top: 32px; border-top: 1px dashed rgba(255,255,255,0.1); width: 100%; max-width: 400px;
}
.credit-title {
  font-size: 0.75rem; letter-spacing: 4px; font-weight: 700;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
}
.kumico-brand {
  display: block; text-decoration: none;
  transition: var(--transition); opacity: 0.8;
}
.kumico-brand:hover {
  opacity: 1; transform: translateY(-2px);
}
.kc-logo-img {
  height: 24px; width: auto; display: block;
}

/* ===== WhatsApp Button ===== */
.whatsapp-btn {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 64px; height: 64px; background: #25d366;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  transition: var(--transition);
}
.whatsapp-btn:hover { transform: scale(1.1) rotate(-5deg); }
.whatsapp-btn svg { width: 32px; height: 32px; color: var(--white); }

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity .8s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform .8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

@keyframes gradientText {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes pulseBadge {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.4); }
  100% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(233, 30, 99, 0); }
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(3deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .institutions-grid, .activities-grid, .contact-grid { grid-template-columns: 1fr; }
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reg-wrapper { grid-template-columns: 1fr; }
  .map-container { height: 400px; }
}

@media (max-width: 768px) {
  section { padding: 80px 0; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
    background: var(--white); flex-direction: column;
    padding: 100px 40px 40px; gap: 24px;
    box-shadow: -10px 0 30px rgba(0,0,0,.1); transition: right var(--transition);
  }
  .nav-links.open { right: 0; }
  .menu-toggle { display: block; }
  .hero-stats { gap: 20px; }
  .hero-stat { width: calc(50% - 10px); padding: 16px; }
  .reasons-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .reg-form-container { padding: 32px 24px; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero { padding: 120px 0 60px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn { width: 100%; justify-content: center; }
  .institution-card { padding: 32px 24px; }
  .activity-card { flex-direction: column; text-align: center; padding: 32px 24px; }
  .contact-item { padding: 32px 24px; }
  .reg-form-container { padding: 24px 16px; }
  .reg-info h3 { font-size: 1.5rem; }
  .reg-info p { font-size: 1rem; }
  .reg-info-list li { font-size: 1rem; }
}
