/* 
  Style for PT Katalis Talenta Indonesia
  Color Palette:
  Primary Orange: #FF8C00
  Dark Blue: #0B2C4D
  Light Blue Bg: #E6EEF4 / #F5F7FA
  White: #FFFFFF
  Text Gray: #4A5568
*/

:root {
    --primary: #FF8C00;
    --primary-hover: #E07B00;
    --dark-blue: #0B2C4D;
    --dark-blue-hover: #071F36;
    --light-bg: #F8F9FA;
    --text-main: #333333;
    --text-muted: #6C757D;
    --white: #FFFFFF;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #FAFCFF;
    /* Base fallback */
    position: relative;
    z-index: 0;
}

@property --bg-pos {
    syntax: "<length>";
    inherits: false;
    initial-value: 0px;
}

body::before {
    content: '';
    position: fixed;
    inset: -50vh -50vw;
    width: 200vw;
    height: 200vh;
    background: repeating-radial-gradient(circle at 50% 50%,
            rgba(0, 0, 0, 0) calc(0px + var(--bg-pos)),
            rgba(0, 0, 0, 0) calc(80px + var(--bg-pos)),
            rgba(11, 44, 77, 0.04) calc(80px + var(--bg-pos)),
            rgba(11, 44, 77, 0.04) calc(83px + var(--bg-pos)));
    filter: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='w'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.003' numOctaves='2' result='n'/%3E%3CfeDisplacementMap in='SourceGraphic' in2='n' scale='150' xChannelSelector='R' yChannelSelector='G'/%3E%3C/filter%3E%3C/svg%3E#w");
    animation: moveTopo 30s linear infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes moveTopo {
    0% {
        --bg-pos: 0px;
    }

    100% {
        --bg-pos: 83px;
    }
}

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

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

/* Typography */
h1,
h2,
h3,
h4 {
    color: var(--dark-blue);
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

h1 span {
    color: var(--primary);
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.text-normal {
    font-weight: 600;
}

p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 20px;
}

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

.mt-3 {
    margin-top: 1rem;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(255, 140, 0, 0.3);
}

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

.btn-dark:hover {
    background-color: var(--dark-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(11, 44, 77, 0.3);
}

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

.btn-outline-dark:hover {
    background-color: var(--dark-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(11, 44, 77, 0.3);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
    border-radius: 12px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-nav-promo {
    background: var(--primary);
    color: white !important;
    border: none;
    border-radius: 50px;
    padding: 10px 24px !important;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-nav-promo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.4);
    background: var(--primary-hover);
}

.btn-nav-promo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

/* --- Components --- */

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    padding: 15px 0;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

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

/* Base style for logo component matching image */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.3rem;
    position: relative;
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--dark-blue);
    transform: rotate(45deg);
    opacity: 0.1;
    z-index: 0;
}

.logo-text {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
}

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

.nav-links a i {
    font-size: 0.7rem;
    margin-left: 4px;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 250px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    z-index: 1001;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid #E5E7EB;
    padding: 0;
    margin-top: 15px;
    /* Add gap */
}

/* Invisible block to bridge hover gap */
.dropdown::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 16px;
    bottom: -16px;
    left: 0;
}

.dropdown-content a {
    color: #111827;
    padding: 15px 10px;
    margin: 0 15px;
    text-decoration: none;
    display: block;
    text-align: center;
    border-bottom: 1px solid #E5E7EB;
    font-weight: 600;
    font-size: 1.1rem;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover,
.dropdown-content a.active {
    color: var(--primary);
    background-color: #fcfcfc;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: dropFadeIn 0.3s ease;
}

@keyframes dropFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, 10px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 120px 0 60px;
    background-color: transparent;
    overflow: hidden;
}

/* Ambient Background Glows */
.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    animation: floatGrad 12s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(11, 44, 77, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    animation: floatGrad2 15s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

/* Modern Components */
.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, #FF512F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-badge {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 140, 0, 0.1);
    border-radius: 50px;
    border: 1px solid rgba(255, 140, 0, 0.2);
    margin-bottom: 0;
    box-shadow: 0 4px 10px rgba(255, 140, 0, 0.05);
}

.btn-glow {
    background: linear-gradient(135deg, var(--primary) 0%, #FF6B00 100%);
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
    border: none;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(255, 140, 0, 0.4);
}

.btn-pill {
    border-radius: 50px;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1.2;
    min-width: 550px;
}

.hero-images {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

/* Glassmorphism Card */
.glass-card {
    position: absolute;
    bottom: 240px;
    left: -100px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 15px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    z-index: 15;
    animation: floatItem 6s ease-in-out infinite;
}

.glass-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00C853 0%, #64DD17 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 200, 83, 0.3);
}

.glass-text strong {
    display: block;
    font-size: 1rem;
    color: var(--dark-blue);
    line-height: 1.2;
    font-weight: 800;
}

.glass-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

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

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

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

/* Glassmorphism Stat Cards */
.stat-card-glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 15px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 140px;
}

.stat-card-glass:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

/* 4-Image Asymmetrical Collage */
.hero-collage {
    position: relative;
    width: 550px;
    height: 550px;
    transform: scale(0.9);
    transform-origin: right center;
}

.hero-collage img {
    position: absolute;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 4px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hero-collage img:hover {
    transform: translateY(-15px) scale(1.05);
    z-index: 10 !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2) !important;
}

.col-img-1 {
    top: 0;
    left: 0;
    width: 290px;
    height: 270px;
    border-radius: 60px 20px 20px 20px;
    z-index: 2;
}

.col-img-2 {
    top: 30px;
    right: 0;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    z-index: 1;
}

.col-img-3 {
    bottom: 30px;
    left: 20px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    z-index: 3;
}

.col-img-4 {
    bottom: 0;
    right: 10px;
    width: 260px;
    height: 280px;
    border-radius: 20px 20px 80px 20px;
    z-index: 2;
}

.shadow-float {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

/* Clients */
.clients {
    padding: 40px 0;
    background-color: transparent;
}

.clients h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--dark-blue);
}

.clients-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 10px 0;
}

.clients-track {
    display: flex;
    gap: 70px;
    align-items: center;
    animation: marquee 50s linear infinite;
    width: max-content;
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    flex-shrink: 0;
}

/* Default standard logo sizes */
.client-logo img {
    height: 100px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

/* Specific enlarged logos: 1.png and 25.png to 30.png */
.logo-1 img,
.logo-25 img,
.logo-26 img,
.logo-27 img,
.logo-28 img,
.logo-29 img,
.logo-30 img {
    height: 110px;
    max-width: 260px;
}

.text-green {
    color: #008000;
}

.text-red {
    color: #cc0000;
}

.text-teal {
    color: #008080;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Why Choose Us */
.bg-light {
    background-color: transparent;
}

.why-choose-us {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background-color: transparent;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    animation: floatGrad 12s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

.why-choose-us::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(11, 44, 77, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    animation: floatGrad2 15s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

@keyframes floatGrad {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

@keyframes floatGrad2 {
    0% {
        transform: translate(0, 0) scale(1.2);
    }

    100% {
        transform: translate(-50px, -50px) scale(1);
    }
}

.why-choose-us .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 140, 0, 0.2);
}

.feature-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.feature-card h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.feature-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
    margin-top: 10px;
}

/* Products */
.products {
    padding: 60px 0;
    background-color: transparent;
}

.text-subtitle {
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 5px;
}

.products h2 {
    color: var(--dark-blue);
    font-size: 2rem;
    margin-bottom: 40px;
}

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

.product-wrapper {
    display: grid;
    gap: 20px;
}

.top-row {
    grid-template-columns: repeat(2, 1fr);
}

.bottom-row {
    grid-template-columns: repeat(3, 1fr);
}

.product-card {
    background-color: var(--dark-blue);
    border-radius: var(--radius-md);
    padding: 30px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    transition: var(--transition);
}

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

.product-card:hover::after {
    transform: scale(1.5);
}

.product-card h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.product-card p {
    color: #CBD5E1;
    font-size: 0.85rem;
    margin-bottom: 25px;
    line-height: 1.5;
}

.product-card .btn {
    align-self: flex-end;
    margin-top: auto;
    position: relative;
    z-index: 1;
    font-size: 0.8rem;
    padding: 6px 12px;
    background-color: var(--primary);
    color: white;
    border-radius: 4px;
}

/* LMS Promo */
.lms-promo {
    padding: 100px 0;
    overflow: hidden;
    position: relative;
}

.lms-card {
    position: relative;
    background: linear-gradient(135deg, var(--dark-blue) 0%, #153c61 100%);
    border-radius: 30px;
    padding: 35px 45px;
    box-shadow: var(--shadow-lg), 0 20px 50px rgba(11, 44, 77, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    z-index: 1;
}

/* Glowing ambient circles inside card */
.lms-circle-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.15;
    z-index: -1;
}

.lms-glow-1 {
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: var(--primary);
}

.lms-glow-2 {
    bottom: -80px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: #00c853;
}

.lms-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Image side */
.lms-image-container {
    flex: 1.4;
    display: flex;
    justify-content: center;
    align-items: stretch;
    position: relative;
}

.lms-image-wrapper {
    position: relative;
    width: 100%;
    min-height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.12);
}

/* Office background layer — sits behind the people photo */
.lms-bg-holder {
    position: absolute;
    inset: 0;
    background-image: url('assets/images/office_bg.png');
    background-size: cover;
    background-position: center;
    border-radius: 18px;
    filter: blur(4px);
    transform: scale(1.05);
    z-index: 0;
}

.lms-main-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
    object-fit: contain;
    object-position: center bottom;
    transform: scale(1.12);
    transform-origin: bottom center;
    display: block;
    border-radius: 18px;
    z-index: 1;
}

.lms-main-img:hover {
    transform: scale(1.12);
}

/* Floating Glass Badges */
@keyframes floatBadge1 {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@keyframes floatBadge2 {
    0% { transform: translateY(0px); }
    50% { transform: translateY(10px); }
    100% { transform: translateY(0px); }
}

.lms-badge-float {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 12px 18px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.badge-students {
    top: 15%;
    left: -35px;
    animation: floatBadge1 6s ease-in-out infinite;
}

.badge-course {
    bottom: 15%;
    right: -25px;
    animation: floatBadge2 7s ease-in-out infinite;
}

.lms-badge-float .badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
}

.badge-students .badge-icon {
    background: linear-gradient(135deg, #FF8C00 0%, #FF512F 100%);
}

.badge-course .badge-icon {
    background: linear-gradient(135deg, #00C853 0%, #64DD17 100%);
}

.lms-badge-float .badge-content {
    display: flex;
    flex-direction: column;
}

.lms-badge-float .badge-title {
    color: var(--dark-blue);
    font-weight: 800;
    font-size: 1.05rem;
    line-height: 1.2;
}

.lms-badge-float .badge-desc {
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Text side */
.lms-text {
    flex: 1;
}

.lms-label {
    color: var(--primary);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.lms-label span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
}

.lms-text h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.3rem);
    line-height: 1.35;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 800;
}

.lms-text em {
    font-style: italic;
    font-weight: 800;
    color: var(--primary);
}

.lms-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    font-weight: 500;
}

.lms-text .btn {
    padding: 15px 34px;
    font-size: 1.05rem;
    border-radius: 50px;
    font-weight: 700;
}

/* Responsive adjustments for lms-promo */
@media (max-width: 991px) {
    .lms-card {
        padding: 50px 40px;
    }
    
    .lms-wrapper {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    
    .lms-image-container {
        width: 100%;
        max-width: 440px;
    }
    
    .badge-students {
        left: -20px;
    }
    
    .badge-course {
        right: -15px;
    }
    
    .lms-label {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .lms-card {
        padding: 40px 20px;
        border-radius: 20px;
    }
    
    .lms-badge-float {
        padding: 8px 12px;
        border-radius: 12px;
        gap: 8px;
    }
    
    .lms-badge-float .badge-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .lms-badge-float .badge-title {
        font-size: 0.9rem;
    }
    
    .lms-badge-float .badge-desc {
        font-size: 0.65rem;
    }
    
    .badge-students {
        left: -10px;
    }
    
    .badge-course {
        right: -10px;
    }
}

/* Portfolio */
.portfolio {
    padding: 60px 0;
    background-color: transparent;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.portfolio-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.portfolio-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

/* Portfolio Flex Layout Precision */
.portfolio-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.portfolio-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.portfolio-content h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.portfolio-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    flex: 1;
    /* Pushes button to bottom */
}

.read-more {
    margin-top: auto;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 0.8rem;
    display: inline-block;
}

.portfolio-btn-wrapper {
    text-align: center;
    margin-top: 40px;
}

.portfolio-btn-wrapper .btn {
    background-color: var(--dark-blue);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
}

/* Testimonials Marquee */
.testimonials-section {
    padding: 60px 0;
    background-color: transparent;
    overflow: hidden;
}

.testimonials-section h2 {
    text-align: center;
    color: var(--dark-blue);
    margin-bottom: 40px;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollTestimonials 30s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 15px));
    }
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    width: 400px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.testi-content {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    flex: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #E5E7EB;
    padding-top: 15px;
}

.testi-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testi-author-info h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--dark-blue);
}

.testi-author-info p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

/* Bottom CTA */
.bottom-cta {
    padding: 60px 0;
    background-color: transparent;
}

.cta-card {
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: none;
}

.cta-card h3 {
    font-size: 1.3rem;
    margin: 0;
    color: var(--dark-blue);
    flex: 1;
    font-weight: 600;
}

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

/* Footer */
.footer {
    background-color: var(--dark-blue);
    color: var(--white);
    padding: 80px 0 20px;
}

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

.footer-products-cols {
    display: flex;
    gap: 40px;
}

.footer-products-cols ul {
    flex: 1;
}

.footer-brand .logo-box {
    margin-bottom: 15px;
}

.footer-brand .logo-text h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0;
}

.footer-brand .logo-text p {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: 1px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 50%;
    color: var(--dark-blue);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

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

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

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

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

/* Advanced Framer-Motion style Interactivity */
.fade-up {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

.delay-4 {
    transition-delay: 0.6s;
}

/* Rotating visual interest */
.icon-spin-hover:hover i {
    animation: spin 1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--primary);
    width: 0%;
    z-index: 2000;
    transition: width 0.1s ease-out;
    box-shadow: 0 2px 10px rgba(255, 140, 0, 0.4);
}

/* === PELATIHAN PAGE STYLES === */

.page-hero {
    position: relative;
    min-height: 75vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* Offset for fixed navbar */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    text-align: left;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(11, 44, 77, 0.9) 0%, rgba(11, 44, 77, 0.4) 60%, transparent 100%);
    z-index: 1;
}

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

.page-hero-content h1 {
    color: var(--white);
    font-size: 3rem;
    text-transform: uppercase;
}

.page-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.page-section {
    padding: 80px 0;
}

.page-content-wrapper {
    background: var(--light-bg);
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.title-highlight {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: -15px;
    right: -15px;
    height: 12px;
    background-color: #FFE0B2;
    z-index: -1;
}

.training-methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.training-method-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 250px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.training-method-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.training-method-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.training-method-card:hover img {
    transform: scale(1.1);
}

.method-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 15px;
    text-align: center;
    color: var(--white);
}

.method-overlay h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin: 0;
}

.training-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

.training-list-item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark-blue);
    cursor: pointer;
    transition: var(--transition);
}

.training-list-item:hover {
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bottom-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 50px;
    }

    .lms-wrapper {
        flex-direction: column;
    }

    .cta-card {
        flex-direction: column;
        text-align: center;
    }

    /* Pelatihan page updates */
    .training-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-list-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

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

    .social-links {
        justify-content: center;
    }

    .top-row,
    .bottom-row {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .image-collage {
        transform: scale(0.8);
    }

    /* Pelatihan page updates */
    .training-methods-grid {
        grid-template-columns: 1fr;
    }

    .page-hero-content h1 {
        font-size: 2.2rem;
    }
}

/* Enhanced Animations */
.hover-lift {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(255, 140, 0, 0.4);
    border-color: var(--primary) !important;
}

.training-list-item {
    position: relative;
    overflow: hidden;
}

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

.training-list-item:hover::before {
    transform: scaleY(1);
}

.training-list-item:hover i {
    transform: translateY(3px);
    color: var(--primary);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-pulse {
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 140, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 140, 0, 0);
    }
}

.portfolio-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.training-method-card .method-overlay {
    transition: padding 0.3s ease;
}

.training-method-card:hover .method-overlay {
    padding-bottom: 25px;
    /* Slide text up slightly on hover */
}

.portfolio-content .read-more {
    display: inline-block;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .read-more {
    transform: translateX(5px);
}

/* Accordion Specific Base Styles */
details.accordion-item {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition);
}

details.accordion-item summary {
    padding: 15px 25px;
    font-weight: 600;
    color: var(--dark-blue);
    cursor: pointer;
    list-style: none;
    /* Hide default arrow */
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

details.accordion-item summary::-webkit-details-marker {
    display: none;
}

details.accordion-item summary::after {
    content: '\f078';
    /* fa-chevron-down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

details.accordion-item[open] summary::after {
    transform: rotate(180deg);
    color: var(--primary);
}

details.accordion-item[open] summary {
    color: var(--primary);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

details.accordion-item .accordion-content {
    padding: 20px 25px;
    color: var(--text-muted);
    animation: dropFadeIn 0.3s ease;
}

/* Tree list item modifier */
.tree-list-title {
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    margin-top: 30px;
    font-size: 1.1rem;
}

.tree-list-title i {
    margin-right: 10px;
    font-size: 0.8rem;
}

/* --- AESTHETIC UPGRADE --- */
/* Global Details */
h1,
h2,
h3,
h4 {
    letter-spacing: -0.5px;
}

/* Enhanced Hero Overlay */
.page-hero-overlay {
    background: linear-gradient(135deg, rgba(11, 44, 77, 0.95) 0%, rgba(11, 44, 77, 0.5) 100%);
    backdrop-filter: blur(2px);
}

.hero-bg-pattern {
    opacity: 0.1;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(255, 140, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(11, 44, 77, 0.1) 0%, transparent 50%);
}

/* Glassmorphism Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Button Shine Sweep Effect */
.btn-primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, var(--primary) 0%, #FF6B00 100%);
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3);
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    z-index: -1;
    animation: shine 6s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

/* Enhanced Cards */
.feature-card,
.training-method-card,
.portfolio-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-shine:hover,
.hover-lift:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 140, 0, 0.1);
}

.method-overlay {
    background: rgba(11, 44, 77, 0.85);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.training-method-card:hover .method-overlay {
    background: rgba(255, 140, 0, 0.95);
}

/* Floating WhatsApp Button */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white !important;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: bounceIn 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) 2s both;
}

.wa-float:hover {
    transform: scale(1.1) rotate(10deg);
    color: white;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.6);
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
    }

    60% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* --- PRECISION LAYOUT UTILITIES --- */
.pt-30 {
    padding-top: 30px;
}

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

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-50 {
    margin-bottom: 50px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-800 {
    max-width: 800px;
}

.max-w-900 {
    max-width: 900px;
}

.max-w-1000 {
    max-width: 1000px;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.text-left {
    text-align: left;
}

.text-justify {
    text-align: justify;
}

.lh-wide {
    line-height: 1.7;
}

.text-body {
    font-weight: 500;
    color: #333;
}

/* Tree Structure styling for Technical Work */
.tree-list-wrapper {
    position: relative;
    padding-left: 20px;
    margin-bottom: 40px;
}

.tree-list-wrapper::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 40px;
    bottom: 20px;
    width: 2px;
    background: rgba(255, 140, 0, 0.2);
    border-left: 2px dashed rgba(255, 140, 0, 0.5);
}

.tree-list-title {
    position: relative;
    z-index: 2;
    background: var(--light-bg);
    display: inline-block;
    padding-right: 15px;
}

/* Floating WA Button */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-wa:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    color: white;
}

/* Professional Team Card Styling */
.team-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px 24px 16px 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(11, 44, 77, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

/* Logo Katalis abu-abu terang di belakang foto */
.team-card::before {
    content: '';
    position: absolute;
    top: 0%;
    right: 0%;
    width: 85%;
    height: 85%;
    background-image: url('assets/images/Katalis_logo_2.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top right;
    /* Ubah orange → abu-abu terang */
    filter: grayscale(100%) opacity(0.10);
    z-index: 0;
    pointer-events: none;
}

.team-card:hover {
    box-shadow: 0 16px 48px rgba(11, 44, 77, 0.12),
        0 4px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.team-card img {
    width: 100%;
    height: 520px;
    display: block;

    object-fit: cover;
    object-position: center top;

    transform: scale(1.02);
    transition: transform .5s ease;

    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;

    /* Drop shadow alami mengikuti siluet orang */
    filter: drop-shadow(0 10px 20px rgba(11, 44, 77, 0.10)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.06));

    /* Smooth hover */
    transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1),
        filter 0.4s ease;
    transform-origin: bottom center;
}

.team-card:hover img {
    transform: scale(1.02);
    filter: drop-shadow(0 18px 30px rgba(11, 44, 77, 0.15)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.09));
}

.team-card .team-info {
    position: relative;
    z-index: 2;
    bottom: auto;
    left: auto;
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 18px 22px;
    border-radius: 0;
    text-align: center;
    margin-top: 0;
}

.team-card .team-info h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.team-card .team-info p {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.9;
    color: white;
    margin: 0;
}


/* ============================================================
   GLOBAL PAGE LOADER
   ============================================================ */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo {
    width: 80px;
    height: auto;
    animation: loaderPulse 1.4s ease-in-out infinite;
}

@keyframes loaderPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.08);
        opacity: 0.75;
    }
}

.loader-bar-track {
    width: 160px;
    height: 3px;
    background: rgba(11, 44, 77, 0.1);
    border-radius: 99px;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #FF8C00, #FF3D00);
    border-radius: 99px;
    animation: loaderBar 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loaderBar {
    0% {
        width: 0%;
        opacity: 1;
    }

    70% {
        width: 85%;
        opacity: 1;
    }

    100% {
        width: 100%;
        opacity: 0;
    }
}

/* ============================================================
   PAGE TRANSITION OVERLAY (link clicks)
   ============================================================ */
#page-transition {
    position: fixed;
    inset: 0;
    z-index: 99998;
    background: var(--dark-blue);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
    pointer-events: none;
}

#page-transition.slide-in {
    transform: translateY(0%);
}

/* ============================================================
   FADE-UP SCROLL ANIMATIONS  (global)
   ============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s cubic-bezier(0.25, 0.8, 0.25, 1),
        transform 0.65s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays */
.delay-1 {
    transition-delay: 0.10s;
}

.delay-2 {
    transition-delay: 0.20s;
}

.delay-3 {
    transition-delay: 0.30s;
}

.delay-4 {
    transition-delay: 0.40s;
}

/* ============================================================
   HOVER-LIFT  (global)
   ============================================================ */
.hover-lift {
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1),
        box-shadow 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* ============================================================
   YOUTUBE LAZY FACADE
   ============================================================ */
.yt-facade {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
    aspect-ratio: 16 / 9;
}

.yt-facade img.yt-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: brightness(0.75);
}

.yt-facade:hover img.yt-thumb {
    transform: scale(1.03);
    filter: brightness(0.6);
}

.yt-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.yt-play-btn i {
    font-size: 1.6rem;
    color: #FF0000;
    margin-left: 5px;
}

.yt-facade:hover .yt-play-btn {
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.yt-facade iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}
/* =============================================
   CTA SECTION (Global)
============================================= */
.article-cta-box {
    background: linear-gradient(135deg, var(--dark-blue) 0%, #0d3560 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 1040px;
    margin: 0 auto 60px;
}
.article-cta-box::before {
    content: "";
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,140,0,0.15) 0%, transparent 70%);
    top: -100px; right: -50px;
    pointer-events: none;
}
.article-cta-box::after {
    content: "";
    position: absolute;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(255,140,0,0.1) 0%, transparent 70%);
    bottom: -80px; left: -30px;
    pointer-events: none;
}
.cta-question {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: block;
}
.article-cta-box h3 {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
    line-height: 1.3;
}
.article-cta-box p {
    color: rgba(255,255,255,0.7);
    font-size: 1rem;
    margin-bottom: 30px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}
.article-cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-btn-primary {
    background: var(--primary);
    color: white;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 8px 20px rgba(255,140,0,0.3);
}
.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255,140,0,0.5);
}
.cta-btn-outline {
    background: transparent;
    color: white;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s;
}
.cta-btn-outline:hover {
    background: white;
    color: var(--dark-blue);
    transform: translateY(-2px);
}

