:root {
    --primary: #FFD600; /* Vivid Yellow */
    --primary-dark: #e6c200;
    --accent: #1A1A1A; /* Deep Black/Grey */
    --bg-body: #FFFFFF;
    --bg-section: #F8F9FA;
    --text-main: #2D3436;
    --text-light: #636E72;
    --border: #EFEFEF;
    --card-shadow: 0 10px 30px rgba(0,0,0,0.04);
    --card-hover: 0 20px 40px rgba(0,0,0,0.08);
    --radius: 16px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.7;
    color: var(--text-main);
    background-color: var(--bg-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.02em;
}

.container {
    width: 88%;
    max-width: 1140px;
    margin: 0 auto;
}

/* Header */
.main-header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    margin-right: 15px; /* Increased spacing */
}

.logo span {
    color: var(--primary);
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    margin-bottom: -20px;
}

.lang-btn {
    background-color: transparent;
    color: var(--text-main);
    padding: 8px 16px;
    font-size: 0.95rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    font-family: inherit;
}

.lang-btn:hover {
    border-color: var(--accent);
    background-color: var(--bg-section);
}

.lang-btn .arrow {
    font-size: 0.7rem;
    opacity: 0.6;
}

.lang-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: #fff;
    min-width: 160px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 12px;
    z-index: 1001;
    overflow: hidden;
    margin-top: 0;
    border: 1px solid var(--border);
}

.lang-content a {
    color: var(--text-main);
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    transition: background 0.2s;
    font-weight: 500;
}

.lang-content a:hover {
    background-color: var(--bg-section);
    color: var(--accent);
}

.lang-content a.active {
    background-color: var(--accent);
    color: var(--primary);
}

.lang-dropdown:hover .lang-content {
    display: block;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Section */
.hero {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

/* Abstract BG shape */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: var(--bg-section);
    border-radius: 40% 0 0 40%;
    z-index: -1;
    transform: rotate(-5deg);
}

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

.hero-title {
    font-size: 3.8rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-image img {
    width: 100%;
    max-width: 450px; /* Limit max width */
    display: block;
    margin: 0 auto; /* Center if smaller than container */
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.4s ease;
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Sections */
section {
    padding: 7rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

/* Areas */
.areas {
    background-color: #fff;
}

.grid-areas {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
}

.area-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.area-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-hover);
    border-color: transparent;
}

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

.area-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
}

.area-card ul {
    list-style: none;
}

.area-card li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed var(--border);
    padding-bottom: 0.5rem;
}

.area-card li:last-child {
    border-bottom: none;
}

.area-card li strong {
    color: var(--accent);
    font-weight: 600;
}

.lost-items {
    display: block !important;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    background: var(--bg-section);
    padding: 1rem !important;
    border-radius: 8px;
    border: none !important;
    font-style: normal !important;
}

.lost-items em {
    font-style: normal;
}

/* Process Grid */
.process {
    background-color: var(--bg-section);
}

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

.process-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--card-hover);
}

.step-indicator {
    background-color: var(--primary);
    color: var(--accent);
    width: 50px;
    height: 50px;
    border-radius: 12px; /* Soft square */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.1);
}

.process-card p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.5;
}

/* Connective line effect for desktop (optional visual cue) */
.process-card::after {
    content: '→';
    position: absolute;
    right: 1rem;
    top: 2.5rem;
    font-size: 1.5rem;
    color: var(--border);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s;
}

.process-card:hover::after {
    opacity: 1;
    transform: translateX(0);
    color: var(--primary);
}

/* Security */
.security {
    background: var(--accent);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.security .section-title {
    color: #fff;
}

.security-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.security-item {
    flex: 1;
    min-width: 300px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: var(--radius);
    text-align: center;
    transition: background 0.3s;
}

.security-item:hover {
    background: rgba(255,255,255,0.1);
}

.security-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Footer */
.main-footer {
    background-color: #0f0f0f;
    color: #888;
    padding: 6rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.footer-logo-img {
    height: 30px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
    /* filter removed to show original logo colors */
}

.footer-brand h4 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
}

.footer-brand p {
    max-width: 320px;
    font-size: 0.95rem;
}

.footer-col h5 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-col li {
    margin-bottom: 1rem;
}

.footer-col a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }

    .hero::before {
        width: 100%;
        height: 50%;
        top: 0;
        right: 0;
        border-radius: 0 0 50% 50%;
        transform: none;
    }

    .hero-image img {
        transform: none;
    }
    
    /* Removed timeline specific mobile styles */
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .area-card {
        padding: 1.5rem;
    }
}
