
:root {
    --primary-color: #0f1c2e;
    --secondary-color: #f59e0b;
    --accent-color: #f59e0b;
    --text-color: #0f1c2e;
    --light-bg: #F5F5F7;
    --white: #FFFFFF;
    --grey: #6b7280;
    --border-radius: 8px;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

ul {
    list-style: none;
}

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

.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded {
    border-radius: var(--border-radius);
}

.shadow {
    box-shadow: var(--shadow);
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

header .logo h1 {
    font-size: 1.5rem;
    margin: 0;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    font-weight: 500;
    font-size: 0.95rem;
}

nav a:hover {
    color: var(--accent-color);
}

.btn-nav {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: var(--border-radius);
}

.btn-nav:hover {
    background-color: var(--secondary-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 180px 0 120px;
    text-align: center;
    background-image: url('assets/extracted/page13_X92.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 28, 46, 0.85); /* Dark overlay based on #0f1c2e */
    z-index: 1;
}

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

.hero h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #ddd;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, background-color 0.3s;
}

.btn-primary:hover {
    background-color: #d97706; /* Darker shade of #f59e0b */
    transform: translateY(-2px);
}

.full-width {
    width: 100%;
}

/* Sections */
.section {
    padding: 80px 0;
}

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

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--accent-color);
    margin: 15px auto 0;
}

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

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

.bg-dark h2 {
    color: var(--white);
}

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

.bg-primary h2 {
    color: var(--white);
}

/* Grid & Layout */
.row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center; /* Center vertically */
}

.col-md-5 {
    flex: 5;
    min-width: 300px;
}

.col-md-6 {
    flex: 1;
    min-width: 300px;
}

.col-md-7 {
    flex: 7;
    min-width: 300px;
}

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

/* Cards */
.card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s;
    height: 100%;
}

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

.card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Lists */
.check-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.check-list li::before {
    content: '\f00d'; /* Times */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
    top: 4px;
}

.check-list.success li::before {
    content: '\f00c'; /* Check */
    color: #28a745;
}

.highlight {
    font-weight: 500;
    color: var(--secondary-color);
    margin-top: 20px;
    border-left: 4px solid var(--accent-color);
    padding-left: 15px;
}

/* Process Steps */
.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    counter-reset: step;
}

.step {
    flex: 1;
    min-width: 180px;
    text-align: center;
    position: relative;
    padding: 0 10px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--white); /* Changed to white for contrast on dark bg */
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step p.small {
    font-size: 0.9rem;
    opacity: 0.8;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: rgba(255,255,255,0.2);
    z-index: 0;
}

/* Tags */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.tag {
    background-color: var(--light-bg);
    color: var(--primary-color);
    border: 1px solid #ddd;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
}

.dark-tags .tag {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
}

/* Benefits */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    padding: 20px;
    border-left: 3px solid var(--accent-color);
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.benefit-item h3 i {
    color: var(--accent-color);
    margin-right: 10px;
}

/* Team Section */
.team-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.team-member {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 3px solid var(--primary-color);
    overflow: hidden;
    background-color: var(--light-bg);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Focus on faces */
}

.team-member h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.team-member .role {
    color: var(--accent-color);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.lead {
    font-size: 1.2rem;
    color: var(--grey);
}

.mb-5 {
    margin-bottom: 3rem;
}

/* Partner Logos */
.partner-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.partner-item {
    background: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    color: var(--primary-color);
    box-shadow: var(--shadow);
    border: 1px solid #eee;
}

/* Form */
#contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.light-form {
    background: var(--white);
    color: var(--text-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(26, 34, 47, 0.1);
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-info i {
    width: 30px;
    color: var(--accent-color);
}

/* Legal Content */
.legal-content h2 {
    margin-top: 40px;
    font-size: 1.5rem;
}

.legal-content h3 {
    margin-top: 25px;
    font-size: 1.2rem;
}

.legal-content p {
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: #111;
    color: #aaa;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.copyright {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        display: none; /* Mobile menu logic in JS */
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    nav ul.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .step:not(:last-child)::after {
        display: none;
    }

    .reverse-mobile {
        flex-direction: column-reverse;
    }
}
