* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

main {
    min-height: calc(100vh - 80px);
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

a {
    color: inherit;
    text-decoration: none;
}

button, .btn {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.header {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: #1B3A52;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: #4a5568;
    transition: color 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.nav-links a:hover {
    color: #E67E22;
}

.nav-links a.active {
    color: #E67E22;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: #E67E22;
}

.btn-contact {
    background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
    color: white !important;
    padding: 10px 24px !important;
    border-radius: 8px;
    font-weight: 600;
}

.btn-contact::after {
    display: none;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(230, 126, 34, 0.3);
}

.hero {
    background: linear-gradient(135deg, #1B3A52 0%, #2C5F7F 100%);
    color: white;
    padding: 120px 24px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230, 126, 34, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.services {
    padding: 96px 24px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 64px;
    color: #1B3A52;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #1B3A52;
}

.service-card p {
    color: #4a5568;
    line-height: 1.8;
}

.stats {
    background: #f7fafc;
    padding: 80px 24px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.125rem;
    color: #4a5568;
}

.cta {
    background: linear-gradient(135deg, #1B3A52 0%, #2C5F7F 100%);
    color: white;
    padding: 96px 24px;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-light {
    background: white;
    color: #1B3A52;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.footer {
    background: #1B3A52;
    color: #e2e8f0;
    padding: 64px 24px 24px;
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 48px;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.footer-description {
    color: #cbd5e0;
    line-height: 1.6;
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #cbd5e0;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #E67E22;
}

.footer-links i {
    margin-right: 8px;
    color: #f4f4f4; /* matches light text */
}

.footer-links a:hover i {
    color: #e1306c; /* Instagram pink hover */
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid #2d3748;
    text-align: center;
    color: #a0aec0;
}

.page-hero {
    background: linear-gradient(135deg, #1B3A52 0%, #2C5F7F 100%);
    color: white;
    padding: 96px 24px 64px;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.projects-section,
.workshops-section,
.benefits,
.testimonials,
.capabilities,
.mission,
.values,
.expertise,
.team {
    padding: 80px 24px;
}

.projects-grid,
.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.project-card,
.workshop-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.project-card:hover,
.workshop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.project-category {
    display: inline-block;
    background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.project-card h3,
.workshop-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #1B3A52;
}

.project-card p,
.workshop-card > p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 24px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    background: #f7fafc;
    color: #4a5568;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    border: 1px solid #e2e8f0;
}

.workshop-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.duration {
    background: #f7fafc;
    color: #4a5568;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

.level {
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
}

.level-beginner {
    background: #48bb78;
}

.level-intermediate {
    background: #E67E22;
}

.level-advanced {
    background: #f56565;
}

.topics h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1B3A52;
    margin-bottom: 12px;
}

.topics ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 8px;
}

.topics li {
    color: #4a5568;
    padding-left: 20px;
    position: relative;
}

.topics li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #E67E22;
}

.capabilities-grid,
.benefits-grid,
.values-grid,
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.capability-item,
.benefit-card,
.value-card,
.reason-item {
    background: white;
    padding: 32px;
    border-radius: 12px;
}

.capability-item {
    border-left: 4px solid #E67E22;
}

.benefit-card,
.value-card {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
    color: white;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-card h3 {
    color: #E67E22;
}

.reason-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border-left: 4px solid #E67E22;
}

.testimonial-card p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: #1B3A52;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: #718096;
    font-size: 0.875rem;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.mission-text p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.125rem;
}

.placeholder-image {
    background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e0;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
}

.expertise-item {
    text-align: center;
}

.expertise-item h4 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.expertise-item p {
    color: #4a5568;
    line-height: 1.6;
}

.contact-section {
    padding: 80px 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.info-intro {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 40px;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.info-item {
    display: flex;
    gap: 20px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #E67E22 0%, #D35400 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.info-item h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
    color: #1B3A52;
}

.info-item a {
    color: #E67E22;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #D35400;
}

.info-item p {
    color: #4a5568;
    line-height: 1.8;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #1B3A52;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E67E22;
    box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.map-section {
    background: #f7fafc;
    padding: 80px 24px;
}

.map-placeholder {
    background: white;
    border-radius: 16px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: #cbd5e0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.map-placeholder p {
    font-size: 1.125rem;
    color: #a0aec0;
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }

    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: white;
        padding: 24px;
        gap: 16px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        padding: 80px 24px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .services,
    .projects-section,
    .workshops-section,
    .benefits,
    .testimonials,
    .capabilities,
    .mission,
    .values,
    .expertise,
    .team,
    .contact-section {
        padding: 64px 24px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 48px;
    }

    .stats {
        padding: 64px 24px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta {
        padding: 64px 24px;
    }

    .cta-content h2,
    .page-hero h1 {
        font-size: 2rem;
    }

    .cta-content p,
    .page-hero p {
        font-size: 1.125rem;
    }

    .projects-grid,
    .workshops-grid {
        grid-template-columns: 1fr;
    }

    .mission-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .placeholder-image {
        height: 300px;
    }

    .contact-form-wrapper {
        padding: 32px 24px;
    }

    .map-placeholder {
        height: 300px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
