:root {
    --primary: #1441ac;
    --primary-dark: #0f3285;
    --secondary: #2e4867;
    --secondary-dark: #1e3148;
    --accent: #00BDE5;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
    --gradient-hero: linear-gradient(135deg, rgba(20, 65, 172, 0.9) 0%, rgba(46, 72, 103, 0.9) 100%);
    --gradient-dark: linear-gradient(135deg, #1441ac 0%, #2e4867 100%);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Offset for the sticky navbar */
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

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

/* Utilities */
.text-center {
    text-align: center;
}

.pt-20 {
    padding-top: 20px;
}

.mt-4 {
    margin-top: 1.5rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.max-w-600 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Navbar */
.navbar {
    background: var(--white);
    height: 80px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

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

.logo img {
    height: 45px;
    /* Slight adjustment to balance with text */
    width: auto;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
    line-height: 1;
}

.brand-text span {
    color: var(--accent);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.btn-login {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(20, 65, 172, 0.2);
}

.btn-login:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Menu Toggle (Mobile) */
.menu-toggle {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    width: 30px;
    height: 30px;
    z-index: 1001;
    position: relative;
    flex-shrink: 0;
}

.bar {
    width: 100%;
    height: 3px;
    background: var(--secondary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 75vh;
    /* Less height than full screen for better peek */
    min-height: 600px;
    background: url('assets/img/hero-bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary,
.btn-outline,
.btn-white {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 189, 229, 0.4);
}

.btn-primary:hover {
    background-color: #00a4c7;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

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

.btn-white {
    background-color: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}


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

.subtitle {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Pain Point Section */
.headline-large {
    font-size: 3rem;
    color: var(--secondary);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.text-lead-large {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 400;
}

.text-regular {
    color: var(--text-muted);
    font-size: 1rem;
}

.floating-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}


/* Solutions Section (New) */
.section-solutions {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.white-title {
    color: var(--white) !important;
    font-size: 2.2rem;
    margin-bottom: 50px;
    font-weight: 700;
}

.solutions-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
    /* Gaps handled by padding/border */
}

.solution-item {
    flex: 1;
    min-width: 220px;
    padding: 0 25px;
    border-left: 1px dotted rgba(255, 255, 255, 0.3);
    text-align: left;
}

.solution-item:first-child {
    border-left: none;
    padding-left: 0;
}

.solution-item:last-child {
    padding-right: 0;
}

.solution-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.solution-item p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.5;
}

/* Employee Highlight */
.employee-highlight {
    padding: 60px 0 40px;
    background: #fdfdfd;
    border-bottom: 1px solid #f0f0f0;
}

.highlight-badge {
    display: inline-block;
    background: rgba(0, 189, 229, 0.1);
    color: var(--accent);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Ensure the employee title is big enough */
.employee-highlight h3 {
    font-size: 2.5rem;
    /* Matches section-title */
    color: var(--secondary);
    margin: 1rem 0;
    font-weight: 700;
}


/* Split Layout (Mission) */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.feature-list i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 4px;
}

.feature-list h3 {
    margin-bottom: 4px;
}

.feature-list p {
    font-size: 0.95rem;
    color: var(--text-muted);
}


/* Dark Section (Vision) */
.section-dark {
    background: var(--secondary);
    /* Fallback */
    background: var(--gradient-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
}

.section-dark .section-title {
    color: var(--white);
}

.section-dark .section-subtitle {
    opacity: 0.8;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.card-dark {
    background: rgba(255, 255, 255, 0.05);
    /* Glassmorphism light */
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 16px;
    transition: 0.3s;
}

.card-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(0, 189, 229, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.icon-circle i {
    color: var(--accent);
    font-size: 1.5rem;
}

.card-dark h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.card-dark p {
    font-size: 0.95rem;
    opacity: 0.8;
}


/* Pricing / Planes Section */
.section-pricing {
    background: #f4f6f9;
    padding: 100px 0;
}

.pricing-header h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 10px;
    font-weight: 700;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1050px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
    z-index: 1;
    min-height: 500px;
}

.pricing-card.highlight {
    border: 2px solid var(--accent);
    transform: scale(1.08);
    /* More elevated */
    box-shadow: 0 15px 40px rgba(0, 189, 229, 0.15);
    z-index: 2;
    margin: 0 -15px;
    /* Overlap cards */
    min-height: 550px;
    padding: 65px 30px;
    border-radius: 16px;
}

.pricing-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 5px;
}

.pricing-title {
    font-size: 2.2rem;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 5px;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 15px 0 5px 0;
    line-height: 1;
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 25px;
}

.pricing-icon {
    font-size: 4rem;
    margin: 20px 0;
    color: var(--primary);
    background: -webkit-linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-features {
    list-style: none;
    margin: 20px 0 30px 0;
    padding: 0;
    flex-grow: 1;
}

.pricing-features li {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.btn-pricing {
    background-color: var(--accent);
    color: var(--white);
    padding: 12px 0;
    width: 100%;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s;
    box-shadow: 0 4px 15px rgba(0, 189, 229, 0.3);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.btn-pricing:hover {
    background-color: #00a4c7;
    transform: translateY(-2px);
    color: var(--white);
}

.pricing-card.highlight .btn-pricing {
    background-color: #d81b60;
    /* Pinkish-red like the original idea */
    box-shadow: 0 4px 15px rgba(216, 27, 96, 0.3);
}

.pricing-card.highlight .btn-pricing:hover {
    background-color: #ad144b;
}

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

.contact-container {
    background: var(--white);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact-text h2 {
    color: var(--secondary);
    font-size: 2rem;
    margin-bottom: 10px;
}

.contact-text p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.contact-details {
    display: flex;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-weight: 500;
}

.contact-item i {
    color: var(--primary);
}

.btn-white i {
    margin-left: 8px;
    font-size: 0.9rem;
}


/* Footer */
footer {
    background: #0b1e3b;
    /* Darker than secondary */
    color: #a0aec0;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9rem;
}

footer h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--white);
}

.social-icons a {
    margin-right: 15px;
    color: var(--white);
    font-size: 1.2rem;
    transition: 0.3s;
}

.social-icons a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
}


/* Responsive */
@media (max-width: 960px) {
    .split-layout {
        grid-template-columns: 1fr;
    }

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

    .contact-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .contact-details {
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .solutions-grid {
        gap: 30px;
    }

    .solution-item {
        flex: 1 1 45%;
        border-left: none;
        border-top: 1px dotted rgba(255, 255, 255, 0.3);
        padding: 20px 0 0 0;
    }

    .solution-item:first-child,
    .solution-item:nth-child(2) {
        border-top: none;
        padding-top: 0;
    }

    .section-pain-point .image-col {
        order: -1;
        margin-bottom: 30px;
        display: flex;
        justify-content: center;
    }

    .section-pain-point .text-col {
        text-align: center;
    }

    .pricing-grid {
        flex-direction: column;
        gap: 20px;
    }

    .pricing-card.highlight {
        margin: 0;
        transform: none;
    }

    .pricing-card.highlight:hover {
        transform: none;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .logo img {
        height: 35px;
    }

    .brand-text {
        font-size: 1.25rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        transition: 0.3s;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        right: 0;
    }
}

@media (max-width: 600px) {
    .solution-item {
        flex: 1 1 100%;
        border-top: 1px dotted rgba(255, 255, 255, 0.3);
        padding-top: 20px;
    }

    .solution-item:first-child {
        border-top: none;
        padding-top: 0;
    }
}

/* Form Styles */
.contact-form-wrapper {
    flex: 1;
    max-width: 500px;
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
}

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

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(20, 65, 172, 0.1);
}

textarea.form-control {
    resize: vertical;
}

.w-100 {
    width: 100%;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.d-none {
    display: none !important;
}

#btnSubmitContact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
}

#btnSubmitContact:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.loader {
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.form-alert {
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.alert-success {
    background-color: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}

.alert-danger {
    background-color: #f8d7da;
    color: #842029;
    border: 1px solid #f5c2c7;
}

@media (max-width: 960px) {
    .contact-form-wrapper {
        width: 100%;
        max-width: 100%;
    }
}