/* ==========================================
   SMF AKADEMİ - STYLE.CSS
   Marka renk paleti:
   - Koyu Lacivert: #1F2C4C
   - Açık Turuncu: #FF7B26
   - Su Mavisi: #33C3F0
   - Gri Ton: #F3F4F6
   - Beyaz: #FFFFFF
   ========================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    color: #1F2C4C;
}

h2 {
    font-size: 2rem;
    color: #1F2C4C;
}

h3 {
    font-size: 1.5rem;
    color: #1F2C4C;
}

p {
    margin-bottom: 1rem;
    color: #666;
}

/* === BUTTONS === */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: #FF7B26;
    color: white;
}

.btn-primary:hover {
    background: #e66b20;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 123, 38, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #1F2C4C;
    border: 2px solid #1F2C4C;
}

.btn-secondary:hover {
    background: #1F2C4C;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 44, 76, 0.3);
}

/* === NAVIGATION === */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(31, 44, 76, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.nav-logo h2 {
    color: #1F2C4C;
    margin: 0;
    font-size: 1.8rem;
}

.nav-logo span {
    color: #FF7B26;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #1F2C4C;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #FF7B26;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FF7B26;
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #1F2C4C;
    margin: 3px 0;
    transition: 0.3s;
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(135deg, #F3F4F6 0%, #ffffff 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-title {
    font-size: 3.5rem;
    color: #1F2C4C;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-graphic {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #33C3F0 0%, #FF7B26 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 8rem;
    color: white;
    animation: float 3s ease-in-out infinite;
}

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

/* === SECTIONS === */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #FF7B26;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* === ABOUT PREVIEW === */
.about-preview {
    padding: 80px 0;
    background: white;
}

.about-preview .container {
    padding: 0 60px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.about-card {
    background: #F3F4F6;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.about-icon {
    width: 80px;
    height: 80px;
    background: #FF7B26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.about-cta {
    text-align: center;
}

/* === EDUCATION SECTION === */
.education {
    padding: 80px 0;
    background: #F3F4F6;
}

.education .container {
    padding: 0 60px;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.education-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.education-card:hover {
    transform: translateY(-5px);
}

.education-icon {
    width: 80px;
    height: 80px;
    background: #33C3F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: white;
}

.education-card ul {
    list-style: none;
    padding: 0;
}

.education-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.education-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF7B26;
    font-weight: bold;
}

.education-cta {
    text-align: center;
}

/* === CONTACT SECTION === */
.contact {
    padding: 80px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    padding: 0 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: #FF7B26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.contact-form {
    background: #F3F4F6;
    padding: 2rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1F2C4C;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #FF7B26;
}

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

/* === FOOTER === */
.footer {
    background: #1F2C4C;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FF7B26;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #FF7B26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #33C3F0;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* === PAGE HEADER === */
.page-header {
    background: linear-gradient(135deg, #1F2C4C 0%, #33C3F0 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: white;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

/* === VISION SECTION === */
.vision-section {
    padding: 80px 0;
    background: white;
}

.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #F3F4F6;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    color: #1F2C4C;
}

.feature-item i {
    color: #FF7B26;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #33C3F0 0%, #FF7B26 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    color: white;
    margin: 0 auto;
}

/* === MISSION SECTION === */
.mission-section {
    padding: 80px 0;
    background: #F3F4F6;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mission-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.mission-item i {
    width: 50px;
    height: 50px;
    background: #FF7B26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mission-item h3 {
    margin-bottom: 0.5rem;
    color: #1F2C4C;
}

/* === GOALS SECTION === */
.goals-section {
    padding: 80px 0;
    background: white;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.goal-card {
    background: #F3F4F6;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.goal-card:hover {
    transform: translateY(-5px);
}

.goal-icon {
    width: 80px;
    height: 80px;
    background: #33C3F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

/* === FOUNDER SECTION === */
.founder-section {
    padding: 80px 0;
    background: #F3F4F6;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.founder-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-item i {
    width: 50px;
    height: 50px;
    background: #FF7B26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #1F2C4C;
    display: block;
}

.stat-text {
    font-size: 0.875rem;
    color: #666;
}

/* === CTA SECTION === */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1F2C4C 0%, #33C3F0 100%);
    text-align: center;
    color: white;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* === EDUCATION OVERVIEW === */
.education-overview {
    padding: 80px 0;
    background: white;
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stat-card {
    background: #F3F4F6;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card i {
    font-size: 2rem;
    color: #FF7B26;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2rem;
    color: #1F2C4C;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #666;
    margin: 0;
}

/* === SUBJECT SECTIONS === */
.subject-section {
    padding: 80px 0;
}

.science-section {
    background: white;
}

.math-section {
    background: #F3F4F6;
}

.biology-section {
    background: white;
}

.subject-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.subject-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.subject-features .feature-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.math-section .subject-features .feature-item {
    background: #F3F4F6;
}

.subject-features .feature-item i {
    width: 40px;
    height: 40px;
    background: #FF7B26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.subject-features .feature-item h4 {
    margin-bottom: 0.5rem;
    color: #1F2C4C;
}

.subject-features .feature-item p {
    margin: 0;
    color: #666;
}

/* === METHODS SECTION === */
.methods-section {
    padding: 80px 0;
    background: #F3F4F6;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.method-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.method-card:hover {
    transform: translateY(-5px);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: #33C3F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 2rem;
    color: white;
}

.method-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.method-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #666;
}

.method-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF7B26;
    font-weight: bold;
}

/* === UPCOMING SECTION === */
.upcoming-section {
    padding: 80px 0;
    background: white;
}

.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.upcoming-card {
    background: linear-gradient(135deg, #F3F4F6 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px dashed #33C3F0;
    transition: transform 0.3s ease;
}

.upcoming-card:hover {
    transform: translateY(-5px);
}

.upcoming-icon {
    width: 80px;
    height: 80px;
    background: #33C3F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

/* === CONTACT PAGE STYLES === */
.contact-info-section {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: #F3F4F6;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card .contact-icon {
    width: 80px;
    height: 80px;
    background: #FF7B26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
}

.contact-card h3 {
    color: #1F2C4C;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #1F2C4C;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.contact-card span {
    color: #666;
    font-size: 0.875rem;
}

/* === CONTACT FORM SECTION === */
.contact-form-section {
    padding: 80px 0;
    background: #F3F4F6;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.form-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.form-features .feature-item i {
    width: 50px;
    height: 50px;
    background: #FF7B26;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.form-features .feature-item h4 {
    margin-bottom: 0.5rem;
    color: #1F2C4C;
}

.form-features .feature-item p {
    margin: 0;
    color: #666;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.consent-text {
    color: #FF7B26;
    text-decoration: none;
}

.consent-text:hover {
    text-decoration: underline;
}

.form-message {
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message i {
    font-size: 1.5rem;
}

.form-message p {
    margin: 0;
}

/* === FAQ SECTION === */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.faq-item {
    background: #F3F4F6;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F3F4F6;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-question h3 {
    color: #1F2C4C;
    margin: 0;
    font-size: 1.125rem;
}

.faq-question i {
    color: #FF7B26;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    margin: 0;
    color: #666;
}

/* === SOCIAL SECTION === */
.social-section {
    padding: 80px 0;
    background: #F3F4F6;
    text-align: center;
}

.social-content h2 {
    color: #1F2C4C;
    margin-bottom: 1rem;
}

.social-content p {
    color: #666;
    margin-bottom: 2rem;
}

.social-section .social-links {
    justify-content: center;
    gap: 2rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-link i {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.social-link.youtube i {
    background: #FF0000;
}

.social-link.instagram i {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.facebook i {
    background: #1877F2;
}

.social-link.twitter i {
    background: #1DA1F2;
}

.social-link span {
    color: #1F2C4C;
    font-weight: 500;
}

/* === MOBILE RESPONSIVENESS === */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

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

    .hero-buttons {
        justify-content: center;
    }

    .hero-graphic {
        width: 250px;
        height: 250px;
        font-size: 6rem;
    }

    .about-grid,
    .education-grid,
    .goals-grid,
    .methods-grid,
    .upcoming-grid {
        grid-template-columns: 1fr;
    }

    .contact-content,
    .vision-content,
    .mission-content,
    .founder-content,
    .overview-content,
    .subject-content,
    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .founder-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .social-section .social-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hero-container {
        padding: 0 20px;
    }

    .section-header {
        padding: 0 20px;
    }

    .image-placeholder {
        width: 250px;
        height: 250px;
        font-size: 4rem;
    }
}

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

    .hero-graphic {
        width: 200px;
        height: 200px;
        font-size: 4rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.875rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .social-section .social-links {
        grid-template-columns: 1fr;
    }

    .image-placeholder {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* === SMOOTH SCROLLING === */
html {
    scroll-behavior: smooth;
}

/* === FOCUS STATES === */
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid #FF7B26;
    outline-offset: 2px;
}

/* === PRINT STYLES === */
@media print {
    .navbar,
    .footer,
    .btn,
    .social-links {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
} 