@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary: #26a7df;
    --primary-dark: #1c90c0;
    --primary-soft: #f0f8fb;
    --secondary: #0f172a;
    --accent: #313e90;
    
    --bg-white: #ffffff;
    --bg-soft: #f9f9f9;
    --bg-dark: #0d0220;
    
    --text-dark: #18181b;
    --text-muted: #71717a;
    --text-light-muted: #a1a1aa;
    --text-white: #ffffff;

    --border-light: #f0f0f0;
    --border-main: #e4e4e7;
    --border-dark: #d4d4d8;

    --radius-full: 9999px;
    --radius-xl: 1rem;
    --radius-lg: 0.5rem;
    --radius-md: 0.375rem;
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-card: 0 4px 20px rgba(0,0,0,0.04);
    --shadow-hover: 0 10px 40px rgba(38, 167, 223, 0.12);
    --shadow-img: 0 20px 50px rgba(0,0,0,0.15);
    
    --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-muted);
    line-height: 1.6;
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #9a9abe;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1550px; /* Widened for desktop */
    margin: 0 auto;
    padding: 0 1.25rem;
}

@media (min-width: 640px) {
    .container { padding: 0 2rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 4rem; }
}

/* Typography Utilities */
.text-primary { color: var(--primary); }
.text-white { color: var(--text-white); }
.text-center { text-align: center; }

/* Header Utilities */
.section-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
    .section-title { font-size: 2.125rem; }
}

@media (min-width: 1024px) {
    .section-title { font-size: 2.5rem; }
}

.section-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: -0.011em;
    color: var(--text-muted);
}

/* Base Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 7px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    white-space: nowrap;
}

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

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

.btn-white {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 1px solid var(--border-main);
}

.btn-white:hover {
    border-color: var(--text-dark);
}

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

.btn-dark:hover {
    background: black;
}

/* Nav Bar */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    width: 100%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
}

nav {
    display: flex;
    align-items: center;
    height: 72px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

.logo-icon {
    width: 27px;
    height: 27px;
    border-radius: 7px;
    overflow: hidden;
    position: relative;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;
}

.logo-text {
    width: 88px;
    height: 27px;
    margin-left: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .nav-links { display: flex; }
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #3f3f46;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-links a:hover {
    color: var(--text-dark);
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    gap: 0.75rem;
}

.lang-selector {
    display: none;
    align-items: center;
    gap: 0.375rem;
    height: 36px;
    padding: 0 0.625rem;
    border-radius: 0.375rem;
    border: 1px solid var(--border-main);
    background: var(--bg-white);
    cursor: pointer;
}

@media (min-width: 1024px) {
    .lang-selector { display: inline-flex; }
}

.lang-selector:hover {
    border-color: var(--border-dark);
}

.lang-selector span.lang-code {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-dark);
}

.btn-header {
    display: none;
    align-items: center;
    gap: 0.375rem;
    background: var(--primary);
    color: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
}

@media (min-width: 1024px) {
    .btn-header { display: inline-flex; }
}

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

.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    gap: 5px;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .mobile-toggle { display: none; }
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 9999px;
    transition: var(--transition);
}

.main-content {
    padding-top: 72px;
}

/* Sections */
.section-light {
    width: 100%;
    background-color: var(--bg-white);
}

.section-soft {
    width: 100%;
    background-color: var(--bg-soft);
}

.section-dark {
    width: 100%;
    background-color: var(--bg-dark);
}

.section-padding {
    padding: 3rem 0;
}

@media (min-width: 1024px) {
    .section-padding { padding: 4.5rem 0; }
}

/* Hero */
.hero-wrapper {
    min-height: calc(100svh - 72px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .hero-grid {
        flex-direction: row;
        gap: 3.5rem;
    }
}

.hero-content {
    flex: 1;
    min-width: 0;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-content { text-align: left; }
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2.375rem;
    line-height: 1.08;
    letter-spacing: -0.025em;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
    .hero-title { font-size: 2.875rem; }
}

@media (min-width: 1024px) {
    .hero-title { font-size: 3.25rem; }
}

.hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    letter-spacing: -0.011em;
    color: var(--text-muted);
    max-width: 420px;
    margin: 0 auto 2rem;
}

@media (min-width: 1024px) {
    .hero-desc { margin: 0 0 2rem; }
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    max-width: 100%;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .hero-actions { margin: 0; }
}

.hero-image-wrapper {
    width: 100%;
    max-width: 460px;
    flex-shrink: 0;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .hero-image-wrapper { max-width: 520px; }
}

@media (min-width: 1024px) {
    .hero-image-wrapper {
        width: 540px;
        max-width: 100%;
        margin: 0;
    }
}

.hero-image-aspect {
    position: relative;
    width: 100%;
    padding-bottom: 75%;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-img);
}

@media (min-width: 1024px) {
    .hero-image-aspect {
        padding-bottom: 65%;
    }
}

.hero-image-aspect img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* User Avatars */
.avatar-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

@media (min-width: 1024px) {
    .avatar-group { justify-content: flex-start; }
}

.avatars {
    display: flex;
}

.avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
    box-shadow: var(--shadow-sm);
    object-fit: cover;
}

.avatars img:first-child {
    margin-left: 0;
}

/* Split Showcase */
.split-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .split-grid {
        flex-direction: row;
        gap: 5rem;
    }
}

.split-content {
    flex: 1;
    width: 100%;
    max-width: 32rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.split-image {
    flex: 1;
    width: 100%;
    max-width: 40rem;
    margin: 0 auto;
}

.split-image-aspect {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-img);
}

@media (max-width: 639px) {
    .split-image-aspect { padding-bottom: 75%; }
}

.split-image-aspect img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Interactive List */
.interactive-item {
    position: relative;
    text-align: left;
    padding: 0.75rem 0 0.75rem 1.5rem;
    cursor: pointer;
    background: transparent;
    border: none;
    transition: var(--transition);
    opacity: 0.4;
}

.interactive-item:hover {
    opacity: 0.7;
}

.interactive-item.active {
    opacity: 1;
}

.interactive-indicator {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 9999px;
    background: var(--primary);
    transform: scaleY(0);
    opacity: 0;
    transition: var(--transition);
}

.interactive-item.active .interactive-indicator {
    transform: scaleY(1);
    opacity: 1;
}

.interactive-item h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 0.5rem;
}

@media (min-width: 1024px) {
    .interactive-item h3 { font-size: 1.5rem; }
}

.interactive-item p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: -0.011em;
    color: var(--text-muted);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.card {
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    border-radius: 0.5rem;
    border: 1px solid var(--border-main);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: box-shadow 0.3s;
}

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

.card-img-wrapper {
    background: var(--bg-white);
    padding: 0.375rem;
    width: 100%;
}

.card-img-aspect {
    position: relative;
    width: 100%;
    padding-bottom: 100%;
    border-radius: 0.125rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.card-img-aspect img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s;
}

.card:hover .card-img-aspect img {
    transform: scale(1.05);
}

.card-content {
    padding: 1rem 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.card-content h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.card-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    line-height: 1.65;
    color: var(--text-muted);
}

/* Feature Icons Grid */
.icon-features {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.icon-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 0.75rem;
    background: rgba(38, 167, 223, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.icon-feature h4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-dark);
    margin-bottom: 0.125rem;
}

/* CTA Box */
.cta-box {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: var(--bg-dark);
    padding: 2rem;
}

@media (min-width: 640px) {
    .cta-box { padding: 3rem; }
}

@media (min-width: 1024px) {
    .cta-box { padding: 4rem; }
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: rgba(38, 167, 223, 0.2);
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: rgba(38, 167, 223, 0.1);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 1024px) {
    .cta-content {
        flex-direction: row;
        text-align: left;
        gap: 4rem;
    }
}

.cta-text {
    flex: 1;
}

.cta-text h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.75rem;
    color: var(--text-white);
    line-height: 1.1;
    margin-bottom: 1rem;
}

/* Trusted By Section */
.trusted-by {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.trusted-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light-muted);
    margin-bottom: 1.5rem;
}

.logo-cloud {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.5rem;
    opacity: 0.6;
}

.logo-cloud i {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.logo-cloud i:hover {
    opacity: 1;
    color: var(--primary);
}

@media (min-width: 1024px) {
    .cta-text h3 { font-size: 2.5rem; }
}

.cta-text p {
    color: rgba(255,255,255,0.6);
}

.cta-btn-primary {
    background: var(--accent);
    color: var(--text-dark);
}

.cta-btn-primary:hover {
    background: #e5a72a;
}

.cta-btn-secondary {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--text-white);
}

.cta-btn-secondary:hover {
    border-color: transparent;
    background: rgba(255,255,255,0.2);
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

@media (min-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem 3rem;
    }
}

.faq-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid var(--border-light);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-main);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    background: transparent;
    border: none;
    text-align: left;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-question span {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-dark);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Footer */
footer {
    background: #fafafa;
    border-top: 1px solid var(--border-main);
}

.footer-top {
    padding: 3rem 0 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border-bottom: 1px solid var(--border-main);
}

@media (min-width: 1024px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-brand {
    max-width: 24rem;
}

.footer-brand p {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-top: 1rem;
}

.footer-newsletter {
    width: 100%;
}

@media (min-width: 1024px) {
    .footer-newsletter {
        width: auto;
        min-width: 380px;
    }
}

.footer-newsletter h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.footer-newsletter p {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.footer-form {
    display: flex;
    gap: 0.5rem;
}

.footer-input {
    flex: 1;
    min-width: 0;
    background: white;
    border: 1px solid var(--border-main);
    border-radius: 0.5rem;
    padding: 0.625rem 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: var(--text-dark);
    outline: none;
    transition: var(--transition);
}

.footer-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px rgba(119, 51, 239, 0.2);
}

.footer-links-grid {
    padding: 2.5rem 0 3.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 640px) {
    .footer-links-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .footer-links-grid { grid-template-columns: repeat(5, 1fr); }
}

.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.footer-col nav {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-col a {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

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

.footer-bottom {
    border-top: 1px solid var(--border-main);
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-bottom p {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: var(--text-light-muted);
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
}

.footer-legal a {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: var(--text-light-muted);
}

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

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 0.5rem;
    background: white;
    border: 1px solid var(--border-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light-muted);
    transition: var(--transition);
}

.social-icon:hover {
    color: var(--primary);
    border-color: rgba(119, 51, 239, 0.3);
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.status-dot {
    position: relative;
    display: flex;
    width: 6px;
    height: 6px;
}

.status-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #10b981;
    opacity: 0.6;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.status-dot::after {
    content: '';
    position: relative;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    background: #10b981;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Exact Weego Header CSS Replication */
body { margin: 0; font-family: 'Inter', sans-serif; background: #ffffff; }

.weego-h-nav {
    background-color: #ffffff;
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
}

.weego-h-container {
    margin-left: auto; margin-right: auto;
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1550px; /* Widened for desktop */
    align-items: center;
    height: 72px;
    padding-left: 20px; padding-right: 20px;
    box-sizing: border-box;
}
@media (min-width: 640px) { .weego-h-container { padding-left: 32px; padding-right: 32px; } }
@media (min-width: 1024px) { .weego-h-container { padding-left: 48px; padding-right: 48px; } }

.weego-h-left { 
    flex: 1 1 0%;
    display: flex;
    align-items: center;
    gap: 40px;
}

.weego-h-logo {
    display: flex; align-items: center; gap: 0px; flex-shrink: 0; cursor: pointer; text-decoration: none;
}
.weego-h-logo-icon {
    position: relative; width: 27px; height: 27px; border-radius: 7px; overflow: hidden; flex-shrink: 0;
    background-color: #18181b; display: flex; align-items: center; justify-content: center;
    color: #ffffff; font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 15px; line-height: 1;
}
.weego-h-logo-text {
    font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 21px; color: #18181b;
    letter-spacing: -0.6px; margin-left: 6px; line-height: 1;
}

.weego-h-links { display: none; align-items: center; gap: 32px; }
@media (min-width: 1024px) { .weego-h-links { display: flex; } }
@media (max-width: 1023px) {
    .weego-h-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 24px;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        border-top: 1px solid #f0f0f0;
        z-index: 40;
        gap: 16px;
        align-items: flex-start;
        height: calc(100vh - 72px);
        overflow-y: auto;
    }
    .weego-h-links.active .weego-dropdown {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }
    .weego-h-links.active .weego-dropdown-btn {
        width: 100%;
        justify-content: space-between;
        height: auto;
        padding: 12px 0;
        font-size: 16px;
        border-bottom: 1px solid #f4f4f5;
    }
    .weego-h-links.active .weego-megamenu {
        position: static;
        width: 100%;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 16px 0;
        display: none;
    }
    .weego-dropdown.open .weego-megamenu {
        display: grid;
    }
    .mega-solutions, .mega-resources, .mega-company {
        width: 100% !important;
        grid-template-columns: 1fr !important;
    }
    .mega-card-main {
        height: 180px !important;
    }
    .weego-h-mobile.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .weego-h-mobile.active span:nth-child(2) {
        opacity: 0;
    }
    .weego-h-mobile.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    .weego-h-mobile span {
        transition: all 0.3s ease;
    }
}

.weego-dropdown { position: relative; display: flex; align-items: center; }
.weego-dropdown-btn {
    display: inline-flex; align-items: center; gap: 4px;
    font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500; line-height: 1;
    color: #3f3f46; cursor: pointer; text-decoration: none; transition: color 0.2s ease;
    background: transparent; border: none; padding: 0; height: 72px;
}
.weego-dropdown-btn:hover, .weego-dropdown:hover .weego-dropdown-btn { color: #18181b; }
.weego-dropdown-btn svg { transition: transform 0.3s ease; }
.weego-dropdown:hover .weego-dropdown-btn svg { transform: rotate(180deg); }

.weego-megamenu {
    position: absolute; top: 100%; left: -16px; margin-top: -8px;
    background-color: #ffffff; border-radius: 12px; border: 1px solid #e4e4e7;
    box-shadow: 0 12px 32px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.04);
    opacity: 0; pointer-events: none; transition: all 0.2s ease; transform: translateY(-4px) scale(0.99);
    z-index: 50; padding: 24px;
}
.weego-dropdown:hover .weego-megamenu { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }

/* Specific Mega Menu Layouts */
.mega-solutions { width: 720px; display: grid; grid-template-columns: 260px 1fr; gap: 32px; }
.mega-resources { width: 680px; display: grid; grid-template-columns: 240px 1fr; gap: 32px; }
.mega-company { width: 620px; display: grid; grid-template-columns: 240px 1fr; gap: 32px; }

.mega-col { display: flex; flex-direction: column; gap: 24px; }
.mega-header { font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: #a1a1aa; margin-bottom: 12px; }

.mega-card-main {
    position: relative; border-radius: 12px; overflow: hidden; height: 230px;
    background: linear-gradient(135deg, #18181b, #313e90); text-decoration: none; display: block;
}
.mega-card-main-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: transform 0.5s; }
.mega-card-main:hover .mega-card-main-img { transform: scale(1.05); }
.mega-card-pill { position: absolute; top: 16px; left: 16px; background: #26a7df; color: white; padding: 4px 10px; border-radius: 12px; font-family: 'Inter', sans-serif; font-size: 10px; font-weight: 700; z-index: 10; }
.mega-card-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 16px; z-index: 10; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); }
.mega-card-title { font-family: 'Poppins', sans-serif; font-size: 16px; font-weight: 700; color: white; margin-bottom: 4px; }
.mega-card-desc { font-family: 'Inter', sans-serif; font-size: 11px; color: rgba(255,255,255,0.8); line-height: 1.4; margin-bottom: 8px; }
.mega-card-link { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 600; color: white; }

.mega-simple-link { display: block; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 500; color: #71717a; text-decoration: none; margin-bottom: 12px; transition: color 0.15s; }
.mega-simple-link:hover { color: #26a7df; }

.mega-prod-item { display: flex; align-items: flex-start; gap: 16px; padding: 10px; border-radius: 8px; text-decoration: none; transition: background 0.15s; margin-bottom: 4px; }
.mega-prod-item:hover { background: #f4f4f5; }
.mega-prod-icon { width: 36px; height: 36px; border-radius: 8px; background: #f4f4f5; display: flex; align-items: center; justify-content: center; color: #26a7df; flex-shrink: 0; font-size: 14px; transition: background 0.2s; }
.mega-prod-item:hover .mega-prod-icon { background: white; box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.mega-prod-text { display: flex; flex-direction: column; gap: 4px; }
.mega-prod-title { font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600; color: #18181b; }
.mega-prod-desc { font-family: 'Inter', sans-serif; font-size: 12px; color: #71717a; line-height: 1.4; }

.mega-quick { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mega-quick-card { position: relative; border-radius: 8px; overflow: hidden; height: 80px; text-decoration: none; display: block; }
.mega-quick-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.mega-quick-card:hover img { transform: scale(1.05); }
.mega-quick-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); }
.mega-quick-card span { position: absolute; bottom: 10px; left: 12px; z-index: 1; color: white; font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; }

.weego-h-right { 
    flex: 1 1 0%;
    display: flex; 
    align-items: center; 
    justify-content: flex-end;
    gap: 16px; 
}

.weego-lang-desktop { display: none; position: relative; }
@media (min-width: 1024px) { .weego-lang-desktop { display: block; } }
.weego-lang-btn {
    display: inline-flex; align-items: center; gap: 6px; height: 36px; padding-left: 12px; padding-right: 12px; border-radius: 20px;
    border: 1px solid #e4e4e7; background-color: #ffffff; transition: all 0.2s ease; cursor: pointer;
}
.weego-lang-btn:hover { border-color: #d4d4d8; }
.weego-lang-btn span.txt { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; color: #18181b; }

.weego-btn-primary {
    display: none; align-items: center; gap: 6px; background-color: #26a7df; padding: 10px 20px; border-radius: 8px;
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: 13px; color: #ffffff; text-decoration: none; transition: background-color 0.2s;
}
@media (min-width: 1024px) { .weego-btn-primary { display: inline-flex; } }
.weego-btn-primary:hover { background-color: #1c90c0; }

.weego-h-mobile {
    display: none; flex-direction: column; justify-content: center; align-items: center; width: 40px; height: 40px; gap: 5px; background: transparent; border: none; padding: 0;
}
@media (max-width: 1023px) { .weego-h-mobile { display: flex; } }
.weego-h-mobile span { display: block; width: 22px; height: 2px; background-color: #18181b; border-radius: 9999px; }
/* --- Corporate Modern Design Extension --- */

:root {
    --corporate-blue: #1e3a8a;
    --corporate-blue-light: #3b82f6;
    --corporate-cyan: #06b6d4;
    --corporate-dark: #0f172a;
    --corporate-glass: rgba(255, 255, 255, 0.1);
}

.bg-corporate { background-color: var(--corporate-blue); color: white; }
.bg-corporate-soft { background-color: #f8fafc; }

/* Slide Layouts */
.grid-3x2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.challenge-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--corporate-blue-light);
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

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

.vertical-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}

.vertical-card-header {
    background: linear-gradient(135deg, var(--corporate-blue), var(--corporate-blue-light));
    color: white;
    padding: 2rem;
    text-align: center;
}

.vertical-card-body {
    padding: 2rem;
}

.vertical-list {
    list-style: none;
    padding: 0;
}

.vertical-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.vertical-list li i {
    color: var(--corporate-cyan);
}

/* Safety Section */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.safety-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-main);
}

/* Sidebar Styling */
.sidebar-box {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-main);
    overflow: hidden;
}

.sidebar-header {
    background: var(--corporate-blue);
    color: white;
    padding: 1.5rem;
}

.sidebar-content {
    padding: 1.5rem;
}

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

.location-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-main);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.location-tag {
    background: #f1f5f9;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 600;
}

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

.leader-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    display: flex;
    flex-direction: column;
}

.leader-header {
    background: var(--corporate-blue);
    color: white;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.leader-img {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.leader-body {
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.model-card {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-main);
    overflow: hidden;
    transition: var(--transition);
}

.model-card:hover {
    border-color: var(--corporate-blue-light);
    transform: translateY(-10px);
}

.model-header {
    padding: 2rem;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-main);
}

.model-body {
    padding: 2rem;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(to right, #1e3a8a, #3b82f6);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.btn-cta {
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.btn-cta-white { background: white; color: var(--corporate-blue); }
.btn-cta-white:hover { transform: scale(1.05); }

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


/* Solutions Page Specific Styles */
.solutions-hero {
    background: radial-gradient(circle at 80% 20%, rgba(38, 167, 223, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 20% 80%, rgba(49, 62, 144, 0.05) 0%, transparent 40%);
    position: relative;
    overflow: hidden;
}

.solutions-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.05;
    z-index: -1;
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.solution-vertical-card {
    border-radius: 1.5rem;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.solution-vertical-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.vertical-image-box {
    position: relative;
    padding-bottom: 65%;
    overflow: hidden;
}

.vertical-image-box img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-vertical-card:hover .vertical-image-box img {
    transform: scale(1.1);
}

.vertical-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.process-step {
    position: relative;
    padding: 2rem;
    border-radius: 1.25rem;
    background: #fff;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 2rem;
    width: 2.5rem;
    height: 2.5rem;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.125rem;
    box-shadow: 0 4px 12px rgba(38, 167, 223, 0.3);
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }


/* ==========================================================================
   HOMEPAGE (index.php) STYLES
   ========================================================================== */
.solutions-container {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 2rem;
}
.hero-title-main {
    font-size: 4.5rem;
    line-height: 1;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    color: var(--secondary);
}
.section-header-modern {
    margin-bottom: 4rem;
    max-width: 48rem;
}
.service-card-modern {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}
.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.text-primary-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #313e90 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   FOOTER (footer.php) STYLES
   ========================================================================== */
.weego-footer {
    width: 100%;
    background-color: #fafafa;
    border-top: 1px solid #e4e4e7;
}
.weego-footer-container {
    max-width: 1550px; /* Widened for desktop */
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
@media (min-width: 1024px) {
    .weego-footer-container { padding-left: 3rem; padding-right: 3rem; }
}

.weego-footer-main {
    padding-top: 4rem;
    padding-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
@media (min-width: 768px) {
    .weego-footer-main { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .weego-footer-main { grid-template-columns: 2.5fr 1fr 1fr 1fr 1.2fr; gap: 2rem; }
}

.weego-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.weego-footer-brand-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #71717a;
    max-width: 300px;
    margin: 0;
}

.weego-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.weego-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #52525b;
    line-height: 1.5;
}
.weego-contact-item i {
    color: #26a7df;
    margin-top: 0.2rem;
}

.weego-footer-col-title {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #18181b;
    margin-bottom: 1.25rem;
    margin-top: 0;
}
.weego-footer-link {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #71717a;
    text-decoration: none;
    transition: color 0.2s;
    margin-bottom: 0.75rem;
    display: block;
}
.weego-footer-link:hover {
    color: #26a7df;
}

.weego-footer-bottom {
    border-top: 1px solid #e4e4e7;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}
@media (min-width: 768px) {
    .weego-footer-bottom { flex-direction: row; gap: 1rem; }
}
.weego-footer-copy {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #a1a1aa;
    margin: 0;
}
.weego-footer-legal {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.weego-footer-legal a {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #a1a1aa;
    text-decoration: none;
    transition: color 0.2s;
}
.weego-footer-legal a:hover {
    color: #26a7df;
}
.weego-footer-social {
    display: flex;
    gap: 0.5rem;
}
.weego-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: #ffffff;
    border: 1px solid #e4e4e7;
    color: #71717a;
    transition: all 0.2s;
}
.weego-social-icon:hover {
    color: #26a7df;
    border-color: rgba(38,167,223,0.3);
    background-color: rgba(38,167,223,0.02);
}

/* ==========================================================================
   BLOG (blog.php) STYLES
   ========================================================================== */
:root {
    --blog-navy: #0f172a;
    --blog-cyan: #26a7df;
    --blog-bg: #ffffff;
    --blog-soft: #f8fafc;
}

.blog-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

.blog-hero {
    padding: 8rem 0 6rem;
    background: #fff;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}
.blog-hero-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--blog-cyan);
    margin-bottom: 1.5rem;
}
.blog-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--blog-navy);
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}
.blog-hero-intro {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.featured-post {
    margin: -4rem auto 6rem;
    background: #fff;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    position: relative;
    z-index: 10;
}
.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.featured-content {
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.post-category {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blog-cyan);
    margin-bottom: 1rem;
    display: block;
}
.featured-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--blog-navy);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.post-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 8rem;
}
.blog-card {
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid #e2e8f0;
}
.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border-color: var(--blog-cyan);
}
.card-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
}
.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.blog-card:hover .card-image {
    transform: scale(1.05);
}
.card-content {
    padding: 2.5rem;
}
.card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--blog-navy);
    margin-bottom: 1rem;
    line-height: 1.3;
}
.read-more {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--blog-cyan);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}
.read-more:hover {
    gap: 0.75rem;
}

@media (max-width: 1024px) {
    .featured-post {
        grid-template-columns: 1fr;
        margin-top: 2rem;
    }
    .featured-content {
        padding: 3rem 2rem;
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-hero-title {
        font-size: 3rem;
    }
}

/* ==========================================================================
   LEARN (learn.php) STYLES
   ========================================================================== */
:root {
    --learn-navy: #0f172a;
    --learn-cyan: #26a7df;
    --learn-soft: #f8fafc;
    --learn-border: #e2e8f0;
}

.learn-container {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 2rem;
}

.learn-hero {
    padding: 10rem 0 6rem;
    background: #fff;
    text-align: center;
    border-bottom: 1px solid var(--learn-border);
}
.learn-hero-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--learn-cyan);
    margin-bottom: 1.5rem;
}
.learn-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--learn-navy);
    margin-bottom: 2rem;
    letter-spacing: -0.04em;
}
.learn-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: #64748b;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.learn-section {
    padding: 8rem 0;
    overflow: hidden;
}
.learn-section:nth-child(even) {
    background: var(--learn-soft);
}
.learn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.learn-content {
    position: relative;
}
.learn-content-tag {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--learn-cyan);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    display: block;
}
.learn-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--learn-navy);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.learn-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.8;
}
.learn-image-wrapper {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}
.learn-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.learn-section:hover .learn-image {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .learn-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .learn-section:nth-child(even) .learn-grid {
        direction: ltr;
    }
    .learn-image {
        height: 400px;
    }
    .learn-hero-title {
        font-size: 3rem;
    }
    .learn-hero-desc {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .learn-hero-title {
        font-size: 2.5rem;
    }
    .learn-title {
        font-size: 2rem;
    }
}

/* ==========================================================================
   HOW IT WORKS (how-it-works.php) STYLES
   ========================================================================== */
:root {
    --hiw-navy: #0f172a;
    --hiw-cyan: #26a7df;
    --hiw-soft: #f8fafc;
    --hiw-border: #e2e8f0;
}

.hiw-container {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hiw-hero {
    padding: 8rem 0 6rem;
    background: #fff;
    text-align: center;
}
.hiw-hero-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--hiw-cyan);
    margin-bottom: 1.5rem;
}
.hiw-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--hiw-navy);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}
.hiw-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.hiw-step {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}
.hiw-step:nth-child(even) {
    background: var(--hiw-soft);
}
.hiw-step-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.hiw-step-content {
    position: relative;
}
.hiw-step-num {
    font-family: 'Poppins', sans-serif;
    font-size: 8rem;
    font-weight: 900;
    color: var(--hiw-cyan);
    opacity: 0.1;
    position: absolute;
    top: -4rem;
    left: -2rem;
    line-height: 1;
    z-index: 0;
}
.hiw-step-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--hiw-cyan);
    margin-bottom: 1rem;
    display: block;
    position: relative;
    z-index: 1;
}
.hiw-step-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--hiw-navy);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    line-height: 1.2;
}
.hiw-step-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}
.hiw-step-image-wrapper {
    position: relative;
}
.hiw-step-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.hiw-step-accent {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--hiw-cyan);
    border-radius: 2rem;
    top: 2rem;
    left: 2rem;
    z-index: -1;
    opacity: 0.2;
}

@media (max-width: 1024px) {
    .hiw-step-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .hiw-step:nth-child(even) .hiw-step-grid {
        direction: ltr;
    }
    .hiw-step-image {
        height: 400px;
    }
    .hiw-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hiw-hero {
        padding: 4rem 0;
    }
    .hiw-step {
        padding: 4rem 0;
    }
    .hiw-step-num {
        font-size: 5rem;
        top: -2rem;
    }
    .hiw-step-title {
        font-size: 2rem;
    }
}

/* ==========================================================================
   CAREERS (careers.php) STYLES
   ========================================================================== */
:root {
    --career-navy: #0f172a;
    --career-cyan: #26a7df;
    --career-soft: #f8fafc;
}

.career-container {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 2rem;
}

.career-hero {
    padding: 4rem 0;
    background: #fff;
    display: flex;
    align-items: center;
}
.career-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
}
.career-hero-image-wrapper {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.career-hero-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.career-hero-content {
    padding-left: 1rem;
}
.career-hero-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--career-cyan);
    margin-bottom: 1rem;
}
.career-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--career-navy);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}
.career-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.why-join {
    padding: 5rem 0;
    background: var(--career-soft);
}
.why-join-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--career-navy);
    margin-bottom: 3rem;
    text-align: center;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.why-card {
    background: #fff;
    padding: 2rem;
    border-radius: 1.25rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.why-card:hover {
    border-color: var(--career-cyan);
    transform: translateY(-5px);
}
.why-icon {
    width: 40px;
    height: 40px;
    background: rgba(38, 167, 223, 0.1);
    color: var(--career-cyan);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}
.why-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--career-navy);
    margin-bottom: 0.75rem;
}
.why-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.5;
}

.career-cta {
    padding: 5rem 0;
    background: #fff;
    text-align: center;
}
.cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .career-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .career-hero-content {
        padding-left: 0;
    }
    .why-grid {
        grid-template-columns: 1fr;
    }
    .career-hero-title {
        font-size: 2.75rem;
    }
}

/* ==========================================================================
   SAFETY (safety.php) STYLES
   ========================================================================== */
.safety-split {
    display: flex;
    gap: 6rem;
    align-items: flex-start;
    padding: 8rem 0;
}
.safety-sidebar {
    flex: 1;
    position: sticky;
    top: 8rem; /* Sticks below the header */
    height: calc(100vh - 12rem);
    min-height: 600px;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}
.safety-sidebar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.safety-list {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.safety-item {
    background: #fff;
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    gap: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.safety-item:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: rgba(38, 167, 223, 0.2);
}
.safety-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.safety-item-content h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}
.safety-item-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.fortress-section {
    background: #0f172a;
    padding: 8rem 0;
    color: white;
    position: relative;
}
.fortress-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}
.fortress-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.fortress-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.fortress-list li:last-child {
    border-bottom: none;
}
.fortress-list i {
    color: #38bdf8;
}

@media (max-width: 992px) {
    .safety-split {
        flex-direction: column;
    }
    .safety-sidebar {
        position: relative;
        top: 0;
        height: 400px;
        width: 100%;
    }
    .fortress-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .safety-item {
        padding: 1.5rem;
        flex-direction: column;
        gap: 1rem;
    }
    h1 {
        font-size: 2.5rem !important;
    }
    .fortress-section {
        padding: 4rem 0;
    }
    .safety-split {
        padding: 4rem 0;
        gap: 3rem;
    }
}

/* ==========================================================================
   LEGAL PAGES (privacy.php & terms.php) STYLES
   ========================================================================== */
.legal-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-content {
    padding: 8rem 0;
    background: #fff;
    text-align: center;
}

.legal-card {
    background: #f8fafc;
    border-radius: 2rem;
    padding: 4rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px rgba(0,0,0,0.02);
}

.legal-statement {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #0f172a;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 4rem 0;
    }
    .legal-statement {
        font-size: 1.25rem;
    }
    .legal-card {
        padding: 2rem;
    }
}

/* ==========================================================================
   INDUSTRIAL SOLUTIONS (industrial.php) STYLES
   ========================================================================== */
:root {
    --ind-charcoal: #1e293b;
    --ind-accent: #26a7df;
    --ind-safety: #facc15;
    --ind-border: rgba(255,255,255,0.1);
}

.ind-container {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 2rem;
}

.ind-hero {
    position: relative;
    height: 70vh;
    min-height: 600px;
    background: var(--ind-charcoal);
    display: flex;
    align-items: center;
    overflow: hidden;
}
.ind-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: grayscale(100%) contrast(1.2);
}
.ind-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--ind-charcoal) 30%, transparent 100%);
    z-index: 1;
}
.ind-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.ind-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ind-safety);
    margin-bottom: 2rem;
}
.ind-hero-tag::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--ind-safety);
}
.ind-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.ind-divider {
    height: 1px;
    background: linear-gradient(90deg, var(--ind-accent), transparent);
    margin: 4rem 0;
}

.ind-features {
    padding: 8rem 0;
    background: #fff;
}
.ind-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid #e2e8f0;
    border-radius: 2rem;
    overflow: hidden;
}
.ind-feature-item {
    padding: 4rem;
    border-right: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.ind-feature-item:nth-child(3n) {
    border-right: none;
}
.ind-feature-item:nth-last-child(-n+3) {
    border-bottom: none;
}
.ind-feature-item:hover {
    background: #f8fafc;
}
.ind-feature-icon {
    font-size: 2rem;
    color: var(--ind-accent);
    margin-bottom: 2rem;
}
.ind-feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ind-charcoal);
    margin-bottom: 1rem;
}
.ind-feature-desc {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
}

.ind-industries {
    padding: 10rem 0;
    background: #f8fafc;
    position: relative;
}
.ind-industries-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--ind-charcoal);
    margin-bottom: 4rem;
    text-align: center;
}
.ind-industry-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.ind-industry-pill {
    padding: 1.5rem 3rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 100px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ind-charcoal);
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
.ind-industry-pill:hover {
    border-color: var(--ind-accent);
    color: var(--ind-accent);
    transform: translateY(-5px);
}

.ind-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--ind-charcoal);
    color: #fff;
}
.ind-split-content {
    padding: 8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ind-split-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .ind-feature-grid {
        grid-template-columns: 1fr 1fr;
    }
    .ind-feature-item:nth-child(2n) {
        border-right: none;
    }
    .ind-feature-item:nth-child(3n) {
        border-right: 1px solid #e2e8f0;
    }
    .ind-split {
        grid-template-columns: 1fr;
    }
    .ind-split-content {
        padding: 4rem 2rem;
    }
    .ind-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .ind-feature-grid {
        grid-template-columns: 1fr;
    }
    .ind-feature-item {
        border-right: none !important;
        padding: 3rem 2rem;
    }
    .ind-hero {
        height: auto;
        padding: 8rem 0;
    }
}

/* ==========================================================================
   CORPORATE MOBILITY (corporate.php) STYLES
   ========================================================================== */
:root {
    --corporate-navy: #0f172a;
    --corporate-accent: #26a7df;
    --corporate-soft: #f1f5f9;
    --corporate-text: #334155;
}

.corp-container {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.corp-hero {
    padding: 8rem 0 10rem;
    background: #fff;
    overflow: hidden;
}
.corp-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}
.corp-hero-content {
    z-index: 2;
}
.corp-hero-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--corporate-accent);
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: rgba(38, 167, 223, 0.1);
    border-radius: 4px;
}
.corp-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--corporate-navy);
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}
.corp-hero-image-wrapper {
    position: relative;
}
.corp-hero-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 1.5rem;
    box-shadow: 40px 40px 80px rgba(0,0,0,0.1);
    transform: rotate(2deg);
    z-index: 1;
}
.corp-hero-accent-box {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    width: 200px;
    height: 200px;
    background: var(--corporate-accent);
    border-radius: 1rem;
    z-index: 0;
    opacity: 0.1;
}

.corp-intro {
    padding: 6rem 0;
    background: var(--corporate-soft);
}
.corp-intro-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.corp-intro-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--corporate-text);
    font-weight: 400;
}

.corp-offerings {
    padding: 10rem 0;
    background: #fff;
}
.corp-section-header {
    margin-bottom: 6rem;
}
.corp-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--corporate-navy);
    margin-bottom: 1rem;
}
.corp-offering-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}
.corp-card {
    background: #fff;
    padding: 0;
    border-radius: 1.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.corp-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 1.25rem;
    margin-bottom: 2rem;
}
.corp-card-icon {
    width: 50px;
    height: 50px;
    background: var(--corporate-accent);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}
.corp-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--corporate-navy);
    margin-bottom: 1rem;
}
.corp-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--corporate-text);
    line-height: 1.6;
}
.corp-card:hover {
    transform: translateY(-10px);
}

.corp-why {
    padding: 10rem 0;
    background: var(--corporate-navy);
    color: #fff;
    border-radius: 4rem 4rem 0 0;
}
.corp-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}
.why-feature {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
}
.why-feature:last-child {
    margin-bottom: 0;
}
.why-num {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--corporate-accent);
    opacity: 0.5;
}
.why-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.why-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .corp-hero-grid, .corp-offering-grid, .corp-why-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .corp-hero-title {
        font-size: 3.5rem;
    }
    .corp-hero-image {
        height: 400px;
        transform: none;
    }
}

@media (max-width: 768px) {
    .corp-hero-title {
        font-size: 2.75rem;
    }
    .corp-section-title {
        font-size: 2.25rem;
    }
}

/* ==========================================================================
   EVENT TRANSPORTATION (events.php) STYLES
   ========================================================================== */
:root {
    --event-navy: #0f172a;
    --event-gold: #c4b07c;
    --event-soft: #fcfcfc;
}

.event-container {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 2rem;
}

.event-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--event-navy);
    overflow: hidden;
}
.event-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.5;
    filter: brightness(0.6) saturate(1.2);
}
.event-hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}
.event-hero-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    color: #aeb1b6;
    margin-bottom: 2rem;
}
.event-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: -0.03em;
}

.event-intro {
    padding: 5rem 0;
    background: #aeb1b6;
    text-align: center;
    color: var(--event-navy);
}
.event-intro-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.event-mosaic {
    padding: 10rem 0;
    background: #fff;
}
.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0,0,0,0.08);
}
.mosaic-item {
    position: relative;
    height: 400px;
    overflow: hidden;
}
.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.mosaic-item:hover img {
    transform: scale(1.1);
}
.mosaic-content {
    padding: 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}
.mosaic-icon {
    width: 48px;
    height: 48px;
    background: #aeb1b6;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 2rem;
}
.mosaic-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--event-navy);
    margin-bottom: 1.5rem;
}
.mosaic-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
}

.event-coordination {
    padding: 8rem 0;
    background: var(--event-soft);
    text-align: center;
}
.coord-card {
    background: #fff;
    padding: 5rem;
    border-radius: 3rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .mosaic-grid {
        grid-template-columns: 1fr;
    }
    .mosaic-item {
        height: 300px;
    }
    .mosaic-content {
        padding: 3rem 2rem;
    }
    .event-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .event-hero-title {
        font-size: 2.5rem;
    }
    .event-intro-text {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   CAB SERVICES (cab_services.php) STYLES
   ========================================================================== */
.service-card {
    background: white;
    border: 1px solid rgba(0,0,0,0.05);
    padding: 2.5rem;
    border-radius: 1.25rem;
    transition: all 0.3s ease;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: var(--primary-soft);
}
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #313e90 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 992px) {
    .solutions-container > div {
        flex-direction: column;
        gap: 2rem !important;
    }
    .solutions-container > div > div {
        min-width: 100% !important;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem !important;
    }
    .solutions-container {
        padding: 0 1.5rem;
    }
    section {
        padding-top: 5rem !important;
        padding-bottom: 5rem !important;
    }
    .service-card {
        padding: 1.5rem;
    }
    .solutions-container > div > div[style*="flex: 0.8"] > div {
        padding: 1.5rem !important;
    }
}

/* ==========================================================================
   TRANSPORT SAAS (transport_saas.php) STYLES
   ========================================================================== */
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.text-primary {
    color: var(--primary) !important;
}

/* ==========================================================================
   COMMERCIAL MODELS (commercial.php) STYLES
   ========================================================================== */
.hero-split {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 8rem 0 6rem;
}
.hero-content {
    flex: 1.2;
}
.hero-image-wrapper {
    flex: 1;
    position: relative;
}
.hero-image {
    width: 100%;
    height: 500px;
    border-radius: 2rem;
    object-fit: cover;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}
.hero-blob {
    position: absolute;
    top: -2rem;
    right: -2rem;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    border-radius: 2rem;
    z-index: 1;
    transform: rotate(3deg);
}

.enterprise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    padding-bottom: 8rem;
}

.enterprise-card {
    background: #ffffff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.enterprise-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.card-photo-header {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.card-photo-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.enterprise-card:hover .card-photo-header img {
    transform: scale(1.05);
}

.card-title-band {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
}

.card-body {
    padding: 2.5rem 2rem;
    flex: 1;
    background: #ffffff;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-item-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.feature-item-text h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.25rem;
}

.feature-item-text p {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.metric-pill-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 0 6rem;
}

.metric-pill {
    background: white;
    padding: 1rem 2rem;
    border-radius: 4rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(0,0,0,0.02);
}

.metric-pill i {
    color: #38bdf8;
    font-size: 1.25rem;
}

.metric-pill h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

@media (max-width: 992px) {
    .hero-split {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
        gap: 2rem;
    }
    .hero-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .enterprise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-bottom: 4rem;
    }
    .hero-image {
        height: 250px;
    }
    .card-body {
        padding: 1.5rem;
    }
    .metric-pill-container {
        padding: 2rem 0 3rem;
        gap: 1rem;
    }
    h1 {
        font-size: 2.5rem !important;
    }
}

/* ==========================================================================
   ABOUT LAYOUT (about.php) STYLES
   ========================================================================== */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border-radius: 2rem;
    padding: 4rem;
}
.editorial-profile {
    display: flex;
    gap: 0;
    background: #fff;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    margin-bottom: 4rem;
}
.editorial-profile.reverse {
    flex-direction: row-reverse;
}
.profile-image {
    flex: 1;
    min-width: 400px;
    position: relative;
}
.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}
.profile-content {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.giant-stat {
    font-size: 8rem;
    font-weight: 900;
    line-height: 1;
    color: var(--primary);
    opacity: 0.1;
    position: absolute;
    top: -2rem;
    left: -1rem;
    z-index: 0;
    letter-spacing: -0.05em;
}

@media (max-width: 992px) {
    .glass-card-wrapper {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        padding: 2rem;
        margin-top: -6rem;
        max-width: 100% !important;
    }
    .mission-bg-image {
        height: 400px !important;
    }
}

@media (max-width: 768px) {
    .editorial-profile, .editorial-profile.reverse {
        flex-direction: column;
    }
    .profile-image {
        min-width: 100%;
        height: 300px;
    }
    .profile-image img {
        position: relative;
    }
    .profile-content {
        padding: 2.5rem 1.5rem;
    }
    .glass-card {
        padding: 2rem;
    }
    .glass-card h2 {
        font-size: 2rem !important;
    }
}

/* ==========================================================================
   CONTACT LAYOUT (contact.php) STYLES
   ========================================================================== */
.contact-hero {
    position: relative;
    height: 65vh;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.contact-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.4);
}
.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 2rem;
    margin-top: -5rem;
}

.executive-hub {
    position: relative;
    z-index: 10;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.1);
    margin: -8rem auto 4rem;
    max-width: 1200px;
    width: 90%;
    overflow: hidden;
}

.hub-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.hub-service-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(0,0,0,0.05);
}
.hub-service-card:last-child {
    border-right: none;
}
.hub-service-photo {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 1rem;
    margin-bottom: 1.5rem;
}
.hub-service-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.5rem;
}
.hub-service-desc {
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

.hub-action-bar {
    background: #f8fafc;
    padding: 2rem 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.hub-action-btn {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #0f172a;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    flex: 1;
    min-width: 250px;
    justify-content: center;
}
.hub-action-btn:hover {
    border-color: #38bdf8;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(56,189,248,0.1);
}
.hub-action-btn i {
    color: #38bdf8;
    font-size: 1.25rem;
}

.hub-form-split {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
}
.hub-contact-info {
    background: #0f172a;
    color: white;
    padding: 4rem;
}
.hub-form-area {
    padding: 4rem;
    background: white;
}

.clean-input {
    background: #f8fafc;
    border: 1px solid transparent;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #0f172a;
    width: 100%;
    transition: all 0.3s ease;
}
.clean-input:focus {
    outline: none;
    background: white;
    border-color: #38bdf8;
    box-shadow: 0 0 0 4px rgba(56,189,248,0.1);
}
.clean-label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 0.5rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 992px) {
    .hub-form-split {
        grid-template-columns: 1fr;
    }
    .hub-contact-info, .hub-form-area {
        padding: 2.5rem;
    }
    .executive-hub {
        margin-top: -4rem;
    }
    .hub-service-card {
        border-right: none;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: auto;
        min-height: 400px;
        padding: 6rem 0 8rem;
    }
    .executive-hub {
        margin-top: -6rem;
        width: 95%;
    }
    .hub-services {
        grid-template-columns: 1fr;
    }
    .hub-service-card {
        padding: 1.5rem;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    .hub-action-bar {
        padding: 1.5rem;
        flex-direction: column;
    }
    .hub-action-btn {
        min-width: 100%;
    }
    .hub-contact-info, .hub-form-area {
        padding: 1.5rem;
    }
    .contact-hero-content h1 {
        font-size: 2.5rem !important;
    }
}

/* ==========================================================================
   CHALLENGES LAYOUT (challenges.php) STYLES
   ========================================================================== */
.editorial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    padding: 4rem 0;
}
.editorial-card {
    background: #fff;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
}
.editorial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}
.editorial-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.editorial-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.editorial-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}
.dark-stats-banner {
    background: var(--secondary);
    border-radius: 2rem;
    padding: 4rem;
    color: white;
    margin-top: -4rem;
    position: relative;
    z-index: 10;
    box-shadow: 0 40px 80px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .dark-stats-banner {
        padding: 2rem;
    }
}

/* ==========================================================================
   GLOBAL PRESENCE (global.php) STYLES
   ========================================================================== */
.atlas-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}
.atlas-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.atlas-card {
    position: relative;
    background: #ffffff;
    padding: 1rem;
    border-radius: 0;
    height: 500px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
}
.atlas-card:hover {
    transform: translateY(-5px);
}
.atlas-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1) contrast(1.1);
}
.atlas-data-box {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: #ffffff;
    padding: 2rem;
    width: 85%;
    max-width: 380px;
    box-shadow: 20px -20px 0px rgba(0,0,0,0.02);
}
.atlas-card-dark .atlas-data-box {
    background: #0f172a;
    color: white;
}
.atlas-city-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    margin: 0 0 0.5rem;
    color: #0f172a;
    letter-spacing: -0.02em;
}
.atlas-card-dark .atlas-city-name {
    color: white;
}
.atlas-region {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.atlas-card-dark .atlas-region {
    color: #94a3b8;
}
.atlas-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.atlas-tag {
    background: #f1f5f9;
    color: #334155;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid #e2e8f0;
}
.atlas-card-dark .atlas-tag {
    background: rgba(255,255,255,0.1);
    color: #e2e8f0;
    border-color: rgba(255,255,255,0.1);
}
.atlas-section-title {
    font-size: 3rem;
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    letter-spacing: -0.03em;
}
.atlas-section-title::after {
    content: '';
    flex: 1;
    height: 2px;
    background: #e2e8f0;
}

@media (max-width: 768px) {
    .atlas-grid-2, .atlas-grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .atlas-card {
        height: 350px;
    }
    .atlas-section-title {
        font-size: 2rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .atlas-section-title::after {
        display: none;
    }
    .atlas-data-box {
        width: 90%;
        padding: 1.25rem;
    }
    .atlas-city-name {
        font-size: 1.25rem;
    }
}

/* ==========================================================================
   SOLUTIONS LAYOUT (solutions.php) STYLES
   ========================================================================== */
.card:hover img {
    transform: scale(1.05);
}
.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

@media (max-width: 992px) {
    .solutions-container > div {
        flex-direction: column;
        gap: 2rem !important;
    }
    .features-grid {
        grid-template-columns: 1fr !important;
    }
    img[alt="Logo"] {
        max-width: 200px !important;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .solutions-container {
        padding: 0 1.5rem;
    }
    .section-light, .section-soft {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
    .card > div:nth-child(1) {
        height: 180px !important;
    }
    .card > div:nth-child(2) {
        padding: 1.5rem !important;
    }
    .card h3 {
        font-size: 1.25rem !important;
    }
    .card ul {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   WHY US LAYOUT (why_us.php) STYLES
   ========================================================================== */
.photo-section {
    padding: 8rem 0;
    background: #fff;
}
.photo-section.alt-bg {
    background: #f8fafc;
}
.split-row {
    display: flex;
    gap: 6rem;
    align-items: center;
    flex-wrap: wrap;
}
.split-row.reverse {
    flex-direction: row-reverse;
}
.split-content {
    flex: 1;
    min-width: 360px;
}
.split-image-container {
    flex: 1;
    min-width: 360px;
    position: relative;
}
.large-photo {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 2rem;
    box-shadow: 0 40px 80px rgba(0,0,0,0.1);
}
.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.feature-item {
    display: flex;
    gap: 1.5rem;
}
.feature-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 1rem;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    justify-content: center;
    font-size: 1.75rem;
}

@media (max-width: 992px) {
    .split-row {
        flex-direction: column !important;
        gap: 3rem;
    }
    .split-image-container, .split-content {
        min-width: 100% !important;
    }
}

@media (max-width: 768px) {
    .photo-section {
        padding: 4rem 0 !important;
    }
    .large-photo {
        height: 300px !important;
    }
    .split-image-container > div {
        bottom: -15px !important;
        right: -15px !important;
        padding: 1.5rem !important;
    }
    .feature-item {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .hub-contact-info, .hub-form-area {
        padding: 2.5rem;
    }
}

/* ==========================================================================
   EMPLOYEE TRANSPORT (employee_transport.php) STYLES
   ========================================================================== */
.employee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

/* ==========================================================================
   FAQ (faq.php) STYLES
   ========================================================================== */
:root {
    --faq-navy: #0f172a;
    --faq-cyan: #26a7df;
    --faq-soft: #f8fafc;
    --faq-border: #e2e8f0;
}

.faq-container {
    max-width: 1550px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-hero {
    padding: 8rem 0 6rem;
    background: #fff;
    text-align: center;
    border-bottom: 1px solid var(--faq-border);
}
.faq-hero-tag {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--faq-cyan);
    margin-bottom: 1.5rem;
}
.faq-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--faq-navy);
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}
.faq-hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    padding: 8rem 0;
    background: var(--faq-soft);
}
.faq-card {
    background: #fff;
    border-radius: 2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid var(--faq-border);
    transition: all 0.3s ease;
}
.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    border-color: var(--faq-cyan);
}
.faq-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
}
.faq-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.faq-content {
    padding: 3rem;
    flex: 1;
}
.faq-question {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--faq-navy);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}
.faq-answer {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
}

.faq-support {
    padding: 8rem 0;
    background: #fff;
    text-align: center;
}
.support-card {
    background: var(--faq-navy);
    padding: 5rem;
    border-radius: 3rem;
    color: #fff;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.support-card::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--faq-cyan);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(50px);
}

@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .faq-content {
        padding: 2rem;
    }
    .faq-hero-title {
        font-size: 2.5rem;
    }
}

/* ==========================================================================
   MOBILE ALIGNMENT OVERRIDES (Fixes for all pages)
   ========================================================================== */
@media (max-width: 768px) {
    /* Global Section Padding Fixes */
    section[style*="padding-top: 10rem"],
    section[style*="padding-top: 9rem"] {
        padding-top: 5rem !important;
        padding-bottom: 4rem !important;
    }
    
    section[style*="padding: 9rem 0"], 
    section[style*="padding: 8rem 0"],
    section[style*="padding: 7rem 0"],
    section[style*="padding: 6rem 0"] {
        padding: 4rem 0 !important;
    }

    /* Typography Scaling */
    h1[style*="font-size: 5rem"], 
    h1[style*="font-size: 4.5rem"],
    .hero-title-main,
    .faq-hero-title {
        font-size: 2.5rem !important;
        line-height: 1.2 !important;
    }

    h2[style*="font-size: 3.5rem"],
    h2[style*="font-size: 3rem"],
    h2[style*="font-size: 2.5rem"],
    .atlas-section-title {
        font-size: 1.875rem !important;
        line-height: 1.3 !important;
    }

    p[style*="font-size: 1.5rem"],
    p[style*="font-size: 1.25rem"],
    .hero-desc {
        font-size: 1.05rem !important;
        line-height: 1.6 !important;
    }

    /* Alignment & Layout Fixes */
    .solutions-container {
        padding: 0 1.5rem !important;
    }

    /* Stack flex items and center them */
    div[style*="display: flex"][style*="flex-wrap: wrap"] {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 2.5rem !important;
    }

    /* Center text in hero and headers */
    div[style*="flex: 1.2"], 
    div[style*="flex: 1"],
    div[style*="max-width: 900px"],
    div[style*="max-width: 800px"],
    .section-header-modern {
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
    }

    /* Fix gaps and margins */
    div[style*="gap: 6rem"],
    div[style*="gap: 4rem"] {
        gap: 2rem !important;
    }

    div[style*="margin-bottom: 5rem"],
    div[style*="margin-bottom: 4rem"] {
        margin-bottom: 2.5rem !important;
    }

    /* Button and Action centering */
    div[style*="display: flex"][style*="gap: 1rem"],
    div[style*="display: flex"][style*="gap: 1.5rem"],
    .hero-actions {
        justify-content: center !important;
        width: 100% !important;
    }

    /* Image Adjustments */
    div[style*="position: relative"] img[style*="width: 100%"] {
        border-radius: 1.5rem !important;
    }

    /* Grid Fixes */
    div[style*="display: grid"][style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Specific Component Fixes */
    .dark-stats-banner div[style*="border-right"] {
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
        padding-bottom: 1.5rem !important;
        margin-bottom: 1rem !important;
    }

    .editorial-grid {
        grid-template-columns: 1fr !important;
    }

    /* About Page leadership profiles */
    .editorial-profile {
        flex-direction: column !important;
        text-align: center !important;
    }

    .editorial-profile.reverse {
        flex-direction: column !important;
    }

    .profile-image {
        width: 100% !important;
        height: auto !important;
        min-height: auto !important;
    }

    .profile-content {
        padding: 2rem 1rem !important;
    }

    /* Why Us / Solutions Lists */
    .feature-list, .icon-features {
        text-align: left !important;
    }

    .feature-item {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    /* Stats Section in Global Presence */
    section[style*="background: #ffffff"] .solutions-container > div {
        flex-direction: column !important;
        gap: 2.5rem !important;
    }

    h4[style*="font-size: 3.5rem"] {
        font-size: 2.5rem !important;
    }

    /* Container Padding & Width Overrides */
    div[style*="padding: 3rem 4rem"],
    div[style*="padding: 6rem 4rem"],
    div[style*="padding: 5rem 4rem"],
    div[style*="padding: 3rem 5rem"],
    section[style*="padding: 10rem 0"] {
        padding: 4rem 1.25rem !important;
    }

    /* Alignment Polish */
    .hero-content, .hero-split, .metric-pill-container, .hiw-hero, .hiw-container, .legal-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    /* Width & Sticky Fixes */
    div[style*="min-width: 360px"],
    div[style*="min-width: 320px"],
    div[style*="min-width: 300px"] {
        min-width: 100% !important;
        width: 100% !important;
        flex: 1 1 100% !important;
    }

    div[style*="position: sticky"] {
        position: relative !important;
        top: auto !important;
    }

    /* How It Works Specific Mobile Fixes */
    .hiw-step-grid[style*="direction: rtl"] {
        direction: ltr !important;
    }
    .hiw-step-content[style*="direction: ltr"] {
        text-align: center !important;
    }
    .hiw-step-image-wrapper[style*="direction: ltr"] {
        width: 100% !important;
    }
    .hiw-step-accent {
        display: none !important;
    }
    .hiw-hero-title {
        font-size: 2.5rem !important;
    }
    h2[style*="font-size: 3.5rem"] {
        font-size: 2.25rem !important;
    }
    .hiw-step-num {
        font-size: 3.5rem !important;
        opacity: 0.1 !important;
        top: -1rem !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    /* Corporate, Industrial, and Events Mobile Fixes */
    .corp-card[style*="grid-column: span 2"] {
        grid-column: span 1 !important;
    }
    .corp-card div[style*="display: flex"] {
        flex-direction: column !important;
        text-align: center !important;
        padding: 2rem 1.5rem !important;
        gap: 1.5rem !important;
    }
    .corp-card div[style*="display: flex"] img {
        width: 100% !important;
        height: 200px !important;
        margin-bottom: 0 !important;
    }

    .ind-split {
        display: flex !important;
        flex-direction: column !important;
        padding: 4rem 1.25rem !important;
    }
    .ind-split img {
        width: 100% !important;
        height: auto !important;
        border-radius: 1.5rem !important;
        margin-top: 2rem !important;
    }
    .ind-split div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    .ind-feature-grid, .mosaic-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    .ind-industry-list {
        justify-content: center !important;
        flex-wrap: wrap !important;
        gap: 1rem !important;
    }
    .mosaic-content {
        padding: 3rem 1.5rem !important;
        text-align: center !important;
    }
    .mosaic-icon {
        margin: 0 auto 1.5rem !important;
    }
    .ind-hero-content, .event-hero-content {
        text-align: center !important;
        width: 100% !important;
        padding: 0 1.5rem !important;
    }
    .ind-hero-title, .event-hero-title {
        font-size: 2.25rem !important;
    }

    /* Extra Padding & Hero Fixes */
    div[style*="padding: 6rem"], 
    div[style*="padding: 5rem"],
    section[style*="padding: 8rem 0"] {
        padding: 3.5rem 1.25rem !important;
    }

    section[style*="height: 60vh"],
    section[style*="height: 35vh"] {
        height: auto !important;
        min-height: 350px !important;
        padding: 5rem 1.25rem !important;
    }

    /* Width & Flex Grid Overrides */
    div[style*="min-width: 400px"],
    div[style*="min-width: 380px"] {
        min-width: 100% !important;
        width: 100% !important;
        flex: 1 1 100% !important;
    }

    .features-grid {
        grid-template-columns: 1fr !important;
    }
    .features-grid ul[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* Learn & How It Works Patterns */
    .learn-grid[style*="direction: rtl"],
    .hiw-step-grid[style*="direction: rtl"] {
        direction: ltr !important;
    }
    .learn-content[style*="direction: ltr"],
    .hiw-step-content[style*="direction: ltr"] {
        text-align: center !important;
    }
    .learn-image-wrapper[style*="direction: ltr"],
    .hiw-step-image-wrapper[style*="direction: ltr"] {
        width: 100% !important;
    }
    .learn-hero-title, .hiw-hero-title {
        font-size: 2.5rem !important;
    }

    /* Safety Page Specific */
    .safety-sidebar div[style*="padding: 4rem 3rem 3rem"] {
        padding: 2rem 1.5rem !important;
    }
    .fortress-grid div[style*="padding: 4rem"] {
        padding: 2.5rem 1.5rem !important;
    }

    /* Contact Page Specific */
    .contact-hero-content {
        padding: 0 1.25rem !important;
        text-align: center !important;
    }
    .contact-hero-content h1 {
        font-size: 2.25rem !important;
    }
    .executive-hub {
        padding: 0 1.25rem !important;
        margin-top: -3rem !important;
    }
    .hub-services {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }
    .hub-service-card {
        width: 100% !important;
    }
    .hub-action-bar {
        flex-direction: column !important;
        gap: 1rem !important;
        padding: 1.5rem !important;
    }
    .hub-action-btn {
        width: 100% !important;
        justify-content: flex-start !important;
        padding: 1.25rem !important;
    }
    .hub-form-split {
        flex-direction: column !important;
        padding: 3rem 1.25rem !important;
    }
    .hub-contact-info {
        padding-right: 0 !important;
        margin-bottom: 3rem !important;
        text-align: center !important;
    }
    .hub-contact-info div[style*="padding-left: 3.5rem"] {
        padding-left: 0 !important;
    }
    .hub-form-area div[style*="display: grid"] {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }
    .hub-form-area form {
        gap: 1.25rem !important;
    }
}
