/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Noto Sans Khmer', 'Noto Sans Lao', 'Noto Sans Myanmar', 'Myanmar Text', 'Padauk', sans-serif;
    line-height: 1.6;
    color: #4c4a55;
    background-color: #e0d5c0;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(224, 213, 192, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

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

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #4c4a55;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-link:hover {
    color: #cc5500;
}

.nav-link.cta-button {
    background: #cc5500;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link.cta-button:hover {
    background: #b84800;
    transform: translateY(-2px);
}

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

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, #e0d5c0 0%, #f0e8d8 100%);
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #4c4a55;
}

.ai-text {
    color: #cc5500;
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #4c4a55;
    opacity: 0.9;
}

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

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: #b84800;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204, 85, 0, 0.3);
}

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

.btn-secondary:hover {
    background: #4c4a55;
    color: white;
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-graphic {
    position: relative;
    width: 300px;
    height: 300px;
}

.neural-network {
    position: relative;
    width: 100%;
    height: 100%;
    animation: float 6s ease-in-out infinite;
}

.node {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #cc5500;
    border-radius: 50%;
    opacity: 0.8;
    animation: pulse 2s ease-in-out infinite;
}

.node:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.node:nth-child(2) {
    top: 20%;
    right: 20%;
    animation-delay: 0.5s;
}

.node:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation-delay: 1s;
}

.node:nth-child(4) {
    bottom: 20%;
    right: 30%;
    animation-delay: 1.5s;
}

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, #cc5500, transparent);
    animation: flow 3s ease-in-out infinite;
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

@keyframes flow {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

/* Trust Bar */
.trust-bar {
    padding: 3rem 0;
    background: rgba(76, 74, 85, 0.05);
    text-align: center;
}

.trust-text {
    font-size: 0.9rem;
    color: #4c4a55;
    opacity: 0.7;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-logo {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4c4a55;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.trust-logo:hover {
    opacity: 1;
}

/* How We Help Section */
.how-we-help {
    padding: 6rem 0;
    background: #e0d5c0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #4c4a55;
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #4c4a55;
    opacity: 0.8;
}

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

.pillar {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(76, 74, 85, 0.1);
}

.pillar:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(76, 74, 85, 0.15);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #cc5500, #ff6b1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
}

.pillar-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #4c4a55;
}

.pillar-description {
    margin-bottom: 2rem;
    color: #4c4a55;
    opacity: 0.8;
    line-height: 1.6;
}

.pillar-link {
    color: #cc5500;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.pillar-link:hover {
    gap: 1rem;
}

/* Differentiators */
.differentiators {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f0e8d8 0%, #e0d5c0 100%);
}

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

.diff-item {
    text-align: center;
    padding: 2rem 1rem;
}

.diff-icon {
    width: 60px;
    height: 60px;
    background: #cc5500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.diff-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #4c4a55;
}

.diff-item p {
    color: #4c4a55;
    opacity: 0.8;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #4c4a55;
    color: white;
    text-align: center;
}

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

.contact p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.contact .btn-primary {
    background: #cc5500;
}

.contact .btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.contact .btn-secondary:hover {
    background: white;
    color: #4c4a55;
}

/* Footer */
.footer {
    background: #4c4a55;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #cc5500;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Awards Page Styles */
.awards-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #e0d5c0 0%, #f0e8d8 100%);
    text-align: center;
}

.awards-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #4c4a55;
    margin-bottom: 1rem;
}

.awards-hero p {
    font-size: 1.2rem;
    color: #4c4a55;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.awards-overview {
    padding: 4rem 0;
    background: white;
}

.awards-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(204, 85, 0, 0.05);
    border-radius: 16px;
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #cc5500;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #4c4a55;
    opacity: 0.8;
}

.awards-grid-section {
    padding: 4rem 0;
    background: rgba(76, 74, 85, 0.03);
}

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

.award-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(76, 74, 85, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(76, 74, 85, 0.15);
}

.award-card.featured {
    border-color: #cc5500;
    background: linear-gradient(135deg, rgba(204, 85, 0, 0.02), rgba(240, 232, 216, 0.3));
}

.award-image {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.award-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #cc5500, #ff6b1a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.award-year {
    background: #4c4a55;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.award-category {
    margin-bottom: 1rem;
}

.category-tag {
    background: rgba(204, 85, 0, 0.1);
    color: #cc5500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.award-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #4c4a55;
    margin-bottom: 1rem;
}

.award-description {
    color: #4c4a55;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.award-impact {
    margin-bottom: 1.5rem;
}

.impact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(76, 74, 85, 0.1);
}

.impact-item:last-child {
    border-bottom: none;
}

.impact-label {
    font-weight: 500;
    color: #4c4a55;
}

.impact-value {
    color: #cc5500;
    font-weight: 600;
}

.award-significance {
    background: rgba(204, 85, 0, 0.05);
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #4c4a55;
    opacity: 0.9;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
    text-decoration: none;
}

.whatsapp-float i {
    margin-top: 16px;
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(224, 213, 192, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        backdrop-filter: blur(10px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .ai-graphic {
        width: 250px;
        height: 250px;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .diff-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .trust-logos {
        gap: 1.5rem;
    }
    
    .contact-cta {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pillar {
        padding: 2rem 1.5rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
    }
    
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .award-card {
        margin-bottom: 2rem;
    }
    
    .awards-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .award-image {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .awards-hero h1 {
        font-size: 2rem;
    }
}

/* Platform Logos */
.platform-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem 0;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.logo-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.logo-item svg {
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.logo-item:hover svg {
    transform: scale(1.1);
}

.logo-item p {
    font-weight: 600;
    color: #4c4a55;
    margin: 0;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .platform-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .logo-item {
        padding: 1rem;
    }
    
    .logo-item svg {
        width: 40px;
        height: 40px;
    }
}

/* Awards List Styling */
.awards-list-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.awards-list {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.award-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #e67e22;
}

.award-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.award-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e67e22, #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.award-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.award-result {
    font-size: 0.9rem;
    color: #e67e22;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .award-item {
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .award-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .award-content h3 {
        font-size: 1rem;
    }
    
    .award-result {
        font-size: 0.8rem;
    }
}