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

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #0b1121;
    color: #ffffff;';'
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(11, 17, 33, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    padding-bottom: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    font-size: 26px;
    font-weight: 700;
    color: #22c55e;
    line-height: 1;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    color: #94a3b8;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 0;
}

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

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

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

.btn-cta {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-cta:hover {
    background: linear-gradient(135deg, #22c55e, #15803d);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

.btn-cta svg {
    transition: transform 0.3s ease;
}

.btn-cta:hover svg {
    transform: translateX(3px);
}

/* Hero */
.hero {
    padding-top: 140px;
    padding-bottom: 100px;
    min-height: auto;
    display: flex;
    align-items: center;
    background: #0b1121;
}

.hero > .container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-label {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1px;
    color: #ffffff;
}

.hero-title .highlight {
    color: #22c55e;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: #94a3b8;
    max-width: 500px;
    font-weight: 400;
}

.hero-actions {
    display: inline-flex;
    gap: 14px;
    margin-top: 8px;
    flex-wrap: wrap;
}

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

.hero-photo {
    width: 100%;
    max-width: 520px;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-ghost {
    background: transparent;
    color: #e2e8f0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
}

.btn-ghost:hover {
    border-color: rgba(34, 197, 94, 0.7);
    background: rgba(34, 197, 94, 0.08);
    color: #ffffff;
}

.btn-ghost:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.22);
}

/* Simple but nice primary button */
.btn-primary {
    background: rgba(34, 197, 94, 0.95);
    color: #0b1121;
    border: 1px solid rgba(34, 197, 94, 0.5);
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
}

.btn-primary:hover {
    background: rgba(34, 197, 94, 1);
    transform: translateY(-1px);
}

.btn-primary:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.22);
}

/* Sections */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -1.5px;
}

.section-desc {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* About */
.about-section {
    background: linear-gradient(180deg, #0b1121, #0d1525);
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-text .section-tag {
    margin-bottom: 12px;
    display: inline-block;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.credentials-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.credential-badge {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 10px;
}

.contact-detail-item svg {
    color: #22c55e;
    flex-shrink: 0;
}

.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 7/5;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

.about-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), transparent);
    border-radius: 24px;
    pointer-events: none;
}

.about-experience-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(11, 17, 33, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 20px 28px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.exp-number {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #22c55e, #4ade80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.exp-text {
    font-size: 12px;
    font-weight: 600;
    color: #e2e8f0;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.bio-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bio-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 36px 28px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.bio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #22c55e, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bio-card:hover::before {
    opacity: 1;
}

.bio-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(34, 197, 94, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.bio-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.bio-card p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 12px;
}

.highlight-text {
    color: #fbbf24 !important;
    font-weight: 600 !important;
    margin-top: 16px !important;
}

.org-links {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.org-link {
    color: #22c55e;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.org-link:hover {
    color: #4ade80;
    padding-left: 6px;
}

/* Gallery */
.gallery-section {
    background: #0b1121;
}

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

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/2;
    cursor: pointer;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 17, 33, 0.9) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

/* Offerings */
.offerings-section {
    background: linear-gradient(180deg, #0b1121, #0d1525);
}

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

.offering-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.offering-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #22c55e, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.offering-card:hover::before {
    opacity: 1;
}

.offering-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(34, 197, 94, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.offering-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    margin: 0 auto 20px;
}

.offering-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.offering-card p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.7;
}

/* Contact */
.contact-section {
    background: #0b1121;
}

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

.contact-info .section-tag {
    margin-bottom: 12px;
    display: inline-block;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.contact-info .section-desc {
    text-align: left;
    margin: 0;
}

.contact-details {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    flex-shrink: 0;
}

.contact-item strong {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    display: block;
    margin-bottom: 4px;
    letter-spacing: -0.2px;
}

.contact-item p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
}

.social-links {
    margin-top: 32px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #e2e8f0;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.social-btn:hover {
    background: #22c55e;
    border-color: #22c55e;
    color: #ffffff;
    transform: translateY(-2px);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #22c55e, transparent);
}

.form-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.form-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #ffffff;
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder {
    color: #64748b;
}

.form-input:focus {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.05);
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

.form-input option {
    background: #1e293b;
    color: #ffffff;
}

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

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 15px;
    margin-top: 8px;
    font-weight: 700;
}

.btn-full svg {
    transition: transform 0.3s ease;
}

.btn-full:hover svg {
    transform: translateX(4px) translateY(-2px);
}

/* Footer */
.footer {
    background-color: #070c15;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.2px;
}

.footer-brand p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    margin: 16px 0;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.footer-social {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-social:hover {
    background: #22c55e;
    border-color: #22c55e;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.footer-links a {
    display: block;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #22c55e;
    padding-left: 8px;
}

.footer-links p {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 2px;
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-bottom p {
    color: #475569;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .bio-content {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .offerings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .hero > .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .hero-title {
        font-size: 44px;
        letter-spacing: -1px;
    }
    .hero-image {
        order: -1;
    }
    .hero-photo {
        max-width: 420px;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .about-split {
        grid-template-columns: 1fr;
    }
    .about-image {
        order: -1;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    .hero-title {
        font-size: 36px;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .offerings-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .hero-photo {
        max-width: 340px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .container {
        padding: 0 24px;
    }
    .hero {
        padding-top: 100px;
    }
    .section {
        padding: 70px 0;
    }
    .contact-form-wrapper {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }
    .section-title {
        font-size: 26px;
    }
    .stats-section {
        gap: 20px;
    }
    .stat-item {
        flex: 1 1 40%;
    }
    .about-experience-badge {
        padding: 14px 20px;
    }
    .exp-number {
        font-size: 28px;
    }
    .credentials-list {
        gap: 6px;
    }
    .credential-badge {
        font-size: 10px;
        padding: 3px 10px;
    }
}
