:root {
    --primary: #f58634; /* Gold/Amber */
    --primary-dark: #003380;
    --primary-light: #F3F3F4;
    --secondary: #56555b; /* Navy Blue */
    --secondary-light: #FFF8E6;
    --text-main: #1A202C;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --bg-dark: #0F172A;
    
    --font-sans: 'Inter', sans-serif;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    
    --radius: 0.5rem;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-light);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-white { color: white; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-blue-100 { color: #DBEAFE; }
.text-slate-400 { color: #94A3B8; }

.section {
    padding: 5rem 0;
}

.bg-light { background-color: var(--bg-light); }
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
}

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

.col-1 { flex: 0 0 8.33%; padding: 0 1rem; }
.col-5 { flex: 0 0 41.66%; padding: 0 1rem; }
.col-6 { flex: 0 0 50%; padding: 0 1rem; }
.col-7 { flex: 0 0 58.33%; padding: 0 1rem; }

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

@media (max-width: 992px) {
    .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .col-5, .col-6, .col-7 { flex: 0 0 100%; margin-bottom: 2rem; }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .section { padding: 3rem 0; }
}

/* Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    gap: 0.5rem;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
}
.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-outline-light {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
}
.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-block { width: 100%; }

.section-subtitle {
    display: block;
    text-transform: uppercase;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.25rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Navbar */
#navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1.5rem 0;
}

#navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
}
#navbar.scrolled .logo { color: var(--primary); }
.logo-highlight { color: #E5E7EB; }
#navbar.scrolled .logo-highlight { color: var(--secondary); }

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #E5E7EB;
    font-weight: 500;
    font-size: 0.95rem;
}
#navbar.scrolled .nav-links a { color: var(--text-main); }
.nav-links a:hover { color: var(--secondary); }

.menu-toggle { display: none; background: none; border: none; color: white; cursor: pointer; }
#navbar.scrolled .menu-toggle { color: var(--text-main); }
.mobile-only { display: none !important; }

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background: white;
        flex-direction: column;
        padding: 5rem 2rem;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
    }
    .nav-links.active { right: 0; }
    .nav-links a { color: var(--text-main); font-size: 1.25rem; }
    .menu-toggle { display: block; z-index: 1001; }
    .desktop-only { display: none !important; }
    .mobile-only { display: inline-flex !important; }
    #navbar .logo { color: white; z-index: 1001; }
    #navbar.scrolled .logo { color: var(--text-main); }
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: white;
    padding-top: 4rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-bg .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.4), transparent);
    mix-blend-mode: multiply;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text-wrapper {
    /*max-width: 800px;*/
    text-align: left;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.text-gradient {
    background: linear-gradient(to right, #BFDBFE, #FFFFFF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: #E2E8F0;
    margin-bottom: 2.5rem;
    /*max-width: 600px;*/
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; }
}

/* About */
.check-list {
    list-style: none;
    margin-top: 2rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--text-main);
}

.image-card {
    position: relative;
    padding: 2rem;
}

.abstract-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    aspect-ratio: 1;
    background: white;
    padding: 1rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.grid-item {
    border-radius: 0.5rem;
    width: 100%;
    height: 100%;
    text-align: center;
    align-items: center;
    display: flex;
    padding: 1rem;
}
.bg-primary-light { background: rgba(0, 71, 171, 0.1); }
.bg-secondary-light { background: rgba(242, 169, 0, 0.2); }
.bg-slate { background: #E2E8F0; }

.blob {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    filter: blur(40px);
}
.blob-1 { width: 200px; height: 200px; background: rgba(0, 71, 171, 0.1); top: 0; left: 0; }
.blob-2 { width: 200px; height: 200px; background: rgba(242, 169, 0, 0.1); bottom: 0; right: 0; }

/* Services */
.service-card {
    background: var(--primary-light);
    padding: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    position: relative;
    height: 100%;
}

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleY(1);
}

.card-header {
    padding: 1.5rem;
    padding-bottom: 0.5rem;
}

.icon-box {
    width: 3rem;
    height: 3rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.service-card:hover .icon-box {
    background: var(--primary);
    color: white;
}

.service-card h3 { font-size: 1.25rem; margin-bottom: 0; }

.card-body {
    padding: 1.5rem;
    padding-top: 0.5rem;
}

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

.card-body li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-body li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50%;
    opacity: 0.6;
}

/* Values */
.decorative-circles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.1;
}
.decorative-circles::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    border: 30px solid white;
    border-radius: 50%;
}
.decorative-circles::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    border: 20px solid white;
    border-radius: 50%;
}

.edge-list { list-style: none; }
.edge-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #DBEAFE;
    font-weight: 500;
}
.edge-list .dot {
    width: 8px;
    height: 8px;
    background: var(--primary-light);
    border-radius: 50%;
}

.value-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 1rem;
    transition: background 0.3s;
}
.value-card:hover { background: rgba(255, 255, 255, 0.15); }
.value-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; color: #DBEAFE; margin: 0; }
.icon-lg { width: 2.5rem; height: 2.5rem; margin-bottom: 1rem; display: block; }

/* Team */
.team-card {
    background: var(--primary-light);
    padding: 2rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid #E2E8F0;
    transition: box-shadow 0.3s;
}
.team-card:hover { box-shadow: var(--shadow); }

.avatar {
    width: 6rem;
    height: 6rem;
    background: white;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    box-shadow: var(--shadow);
    border: 2px solid rgba(0, 71, 171, 0.1);
}

.team-card h3 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.role { color: var(--primary); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.75rem; }
.badge-sm {
    display: inline-block;
    background: #E2E8F0;
    color: #475569;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}
.bio { font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; }

/* Contact / Footer */
.footer-section {
    background: var(--bg-dark);
    color: white;
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.contact-item h4 { margin-bottom: 0.25rem; font-size: 1rem; }
.contact-item p { margin: 0; color: var(--text-light); font-size: 0.9rem; }

.contact-form-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    color: var(--text-main);
}
.contact-form-card h3 { margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media(max-width:576px) { .form-row { grid-template-columns: 1fr; } }

label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

input, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #CBD5E1;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
}
input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--text-muted);
}
.footer-links a { color: var(--text-muted); }
.footer-links a:hover { color: white; }
