:root {
    --brand-orange: #F1885B;
    --brand-orange-light: #f7a988;
    --brand-orange-dark: #d66c3c;
    --brand-black: #1A1A18;
    --bg-color: #fafafa;
    --surface-color: #ffffff;
    --surface-light: #f3f4f6;
    --text-main: #1e1e1e;
    --text-muted: #52525b;
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.08);
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    --container-max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
}

p {
    text-align: justify;
}

body {
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

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

/* Typography */
.section-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--brand-black);
}

.section-title .highlight {
    color: var(--brand-orange);
}

.section-header-center h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--brand-black), var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--brand-orange);
}

.large-text {
    font-size: 1.35rem;
    color: var(--text-main);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-medium);
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.btn-primary {
    background: var(--brand-orange);
    color: #fff;
    box-shadow: 0 4px 15px rgba(241, 136, 91, 0.4);
}

.btn-primary:hover {
    background: var(--brand-orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(241, 136, 91, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 2px solid var(--text-muted);
}

.btn-secondary:hover {
    border-color: var(--text-main);
    background: rgba(0, 0, 0, 0.03);
}

.btn-nav {
    padding: 0.6rem 1.4rem;
    background: rgba(241, 136, 91, 0.1);
    color: var(--brand-orange);
    border: 1px solid rgba(241, 136, 91, 0.3);
}

.btn-nav:hover {
    background: var(--brand-orange);
    color: #fff;
}

.w-100 {
    width: 100%;
    justify-content: center;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    padding: 1rem 0;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px; /* Increased logo size */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
    transition: height var(--transition-medium);
}

.navbar.scrolled .logo img {
    height: 55px; /* Slightly smaller on scroll */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a:not(.btn) {
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    position: relative;
    padding-bottom: 5px;
    color: var(--text-main);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--brand-orange);
    transition: width var(--transition-fast);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background: var(--text-main);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    background-image: url('assets/hero-bg-light.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(250, 250, 250, 0.7) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 1.1rem;
    background: rgba(241, 136, 91, 0.08);
    border: 1px solid rgba(241, 136, 91, 0.25);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 1.8rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(241, 136, 91, 0.08);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge i {
    font-size: 1.1rem;
    color: var(--brand-orange);
}

.hero-badge .badge-highlight {
    color: var(--brand-orange);
    font-weight: 700;
    transition: color var(--transition-fast);
}

.hero-badge .badge-highlight:hover {
    color: var(--brand-orange-dark);
    text-decoration: underline;
}

.hero-title {
    font-size: 4.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.hero-title .highlight {
    color: var(--brand-orange);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
    text-align: center;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: fadeIn 2s ease 1s forwards;
    opacity: 0;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-muted);
    border-radius: 15px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--brand-orange);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Redesigned About Section */
.about-section {
    background-color: var(--bg-color);
}

.about-intro-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 5rem;
}

.about-highlights {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
    padding-top: 1.8rem;
    border-top: 1px solid var(--glass-border);
}

.highlight-item .h-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--brand-orange);
    line-height: 1.2;
}

.highlight-item .h-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.2rem;
}

.about-intro-right p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-divider {
    height: 4px;
    width: 60px;
    background: var(--brand-orange);
    margin: 2rem 0;
    border-radius: 2px;
}

.vision-mission-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 6rem;
    align-items: stretch;
}

.card {
    background: var(--surface-color);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium), border-color var(--transition-medium);
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: rgba(241, 136, 91, 0.3);
}

.card-icon-large {
    font-size: 2.2rem;
    color: var(--brand-orange);
    display: inline-flex;
    padding: 0.7rem;
    background: rgba(241, 136, 91, 0.08);
    border-radius: 14px;
}

.vision-header, .mission-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.vision-header h3, .mission-header h3 {
    font-size: 2rem;
    color: var(--brand-black);
    margin-bottom: 0;
}

.vision-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.vision-pillars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
}

.v-pillar {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1.2rem;
    background: var(--bg-color);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

.v-pillar:hover {
    border-color: rgba(241, 136, 91, 0.3);
    background: var(--surface-light);
}

.v-pillar i {
    font-size: 1.4rem;
    color: var(--brand-orange);
    flex-shrink: 0;
}

.v-pillar strong {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.2;
}

.v-pillar span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.mission-grid {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    margin-top: auto;
}

.m-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    font-size: 0.98rem;
    color: var(--text-main);
    font-weight: 500;
    line-height: 1.5;
}

.m-item span {
    text-align: left;
}

.m-item i {
    color: var(--brand-orange);
    font-size: 1.4rem;
    margin-top: 1px;
    flex-shrink: 0;
}

/* Core Principles Grid */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.principle-card {
    background: var(--surface-color);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: all var(--transition-medium);
}

.principle-card:hover {
    border-color: rgba(241, 136, 91, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(241, 136, 91, 0.08), 0 8px 20px rgba(0,0,0,0.04);
}

.p-icon {
    font-size: 2.2rem;
    color: var(--brand-orange);
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(241, 136, 91, 0.12) 0%, rgba(241, 136, 91, 0.04) 100%);
    border-radius: 50%;
    transition: transform var(--transition-medium), background var(--transition-medium);
}

.principle-card:hover .p-icon {
    transform: scale(1.08);
    background: rgba(241, 136, 91, 0.18);
}

.principle-card h4 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--text-main);
}

.principle-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: center;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--brand-black);
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    text-align: center;
}

/* Careers Section */
.careers-section {
    background-color: var(--surface-light);
    position: relative;
}

.careers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(241, 136, 91, 0.5), transparent);
}

.careers-content {
    background: var(--surface-color);
    padding: 4rem 4rem 5rem 4rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.careers-why h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: var(--text-muted);
    background: var(--bg-color);
    padding: 1.2rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    transition: all var(--transition-fast);
}

.feature-list li:hover {
    background: var(--surface-light);
    transform: translateX(10px);
    border-color: rgba(241, 136, 91, 0.2);
}

.feature-list .check-icon {
    color: var(--brand-orange);
    font-size: 1.8rem;
}

.careers-notice {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(241, 136, 91, 0.05);
    border-left: 4px solid var(--brand-orange);
    border-radius: 0 8px 8px 0;
    color: var(--brand-orange-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.careers-notice i {
    font-size: 1.5rem;
}

/* News Section */
.news-section {
    background-color: var(--bg-color);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.news-card {
    display: flex;
    flex-direction: column;
    background: var(--surface-color);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-light));
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.news-card:hover {
    transform: translateY(-6px);
    border-color: rgba(241, 136, 91, 0.3);
    box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}

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

.news-source {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-orange-dark);
    background: rgba(241, 136, 91, 0.08);
    padding: 0.3rem 0.8rem;
    border-radius: 6px;
    margin-bottom: 1.2rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    align-self: flex-start;
}

.news-card h4 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    line-height: 1.4;
}

.news-card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
    flex-grow: 1;
    line-height: 1.6;
}

.read-more {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brand-orange);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition-fast);
}

.read-more i {
    transition: transform var(--transition-fast);
}

.news-card:hover .read-more i {
    transform: translateX(6px);
}

/* Contact Section */
.contact-section {
    background-color: var(--surface-light);
}

.contact-card {
    display: grid;
    grid-template-columns: 1.25fr auto 1.6fr 0.85fr;
    gap: 2rem;
    align-items: center;
    background: var(--surface-color);
    border-radius: 20px;
    padding: 3rem 2.8rem;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    max-width: 100%;
    margin: 0 auto;
}

.contact-divider {
    width: 1px;
    height: 100px;
    background: var(--glass-border);
}

.contact-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: var(--brand-black);
}

.contact-intro p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.contact-item {
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    align-items: flex-start;
}

.contact-item .icon {
    color: var(--brand-orange);
    background: rgba(241, 136, 91, 0.1);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    white-space: nowrap;
}

.contact-item span {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    display: block;
}

.contact-item a {
    color: var(--brand-orange);
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-item a:hover {
    color: var(--brand-orange-dark);
}

/* Footer */
.footer {
    background: var(--surface-color);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo img {
    display: block;
    height: 80px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
}

.footer-tagline {
    color: var(--text-muted);
    max-width: 300px;
    margin-top: 1rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
}

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

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--text-muted);
}

.footer-links ul li a:hover {
    color: var(--brand-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scroll {
    0% {
        top: 8px;
        opacity: 1;
    }
    100% {
        top: 25px;
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-intro-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .vision-mission-wrapper {
        grid-template-columns: 1fr;
    }
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-title {
        font-size: 3.5rem;
    }
    .contact-card {
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 3rem 2rem;
        gap: 2rem;
    }
    .contact-divider {
        display: block;
        width: 100%;
        height: 1px;
        background: var(--glass-border);
    }
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.8rem;
    }
    .contact-item strong {
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-color);
        flex-direction: column;
        justify-content: center;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .careers-content {
        padding: 2.5rem 2rem 3rem 2rem;
    }

    .card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 2.2rem 1.2rem;
        gap: 1.8rem;
    }

    .careers-content {
        padding: 2rem 1.2rem 2.5rem 1.2rem;
    }

    .card {
        padding: 1.5rem;
    }

    .section {
        padding: 60px 0;
    }
}
