/* =================================================
   lankacommodity.css — Lanka Commodity Holdings Sub-Company Layout
   Aberdeen Holdings (Matching Baraka Design & Color Palette)
   ================================================= */

/* --- Subpage Inner Hero Banner --- */
.page-hero {
    position: relative;
    padding: 250px 0 50px;
    color: var(--white-color);
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../assets/aberdeen-holdings-img-58.jpg');
    background-size: cover;
    background-position: center;
    transform: scale(1);
    animation: heroImageZoom 18s ease-in-out infinite alternate;
    z-index: 0;
}

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

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

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

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(270deg, rgb(40 67 120 / 45%) 0%, rgba(1, 79, 110, 0.25) 50%, rgb(0 0 0 / 65%) 100%);
    z-index: 1;
}

/* Breadcrumb Nav */
.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 6px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.breadcrumb-nav a {
    color: var(--white-color);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.breadcrumb-nav a:hover {
    color: var(--secondary-color);
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 60px;
    line-height: 1.1;
    color: var(--white-color);
    margin: 0;
}

/* --- Section 1: Dynamic Split Intro with Floating Stat Spheres --- */
.lankacomm-v3-intro {
    padding: 90px 0;
    background-color: var(--white-color);
}

.lankacomm-v3-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-heading {
    font-size: 45px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark-color);
}

.about-highlight {
    color: var(--primary-color);
}

.about-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 20px;
}

.cta-v3-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary-color);
    background: rgba(27, 191, 221, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.lankacomm-v3-socials {
    display: flex;
    align-items: center;
    gap: 14px;
}

.lankacomm-v3-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 6px 16px rgba(1, 79, 110, 0.2);
}

.lankacomm-v3-socials a:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-4px);
    box-shadow: 0 10px 22px rgba(27, 191, 221, 0.35);
}

/* Stat Spheres */
.lankacomm-v3-spheres {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.sphere-card {
    background: linear-gradient(135deg, #070c16 0%, #014f6e 70%, #050912 100%);
    border-radius: 28px;
    padding: 40px 30px;
    text-align: center;
    color: var(--white-color);
    box-shadow: 0 20px 45px rgba(1, 79, 110, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.12);
    flex: 1;
    transition: transform 0.4s ease;
}

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

.sphere-icon {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 14px;
}

.sphere-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 4px;
}

.sphere-label {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* --- Section 2: Core Services Grid --- */
.lankacomm-v3-services {
    padding: 80px 0 90px 0;
    background-color: var(--light-color);
}

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

.service-v3-card {
    background: var(--white-color);
    border: 1px solid var(--gray-light);
    border-radius: 22px;
    padding: 35px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.service-v3-card:hover {
    transform: translateY(-6px);
    border-color: var(--secondary-color);
    box-shadow: 0 18px 40px rgba(27, 191, 221, 0.16);
}

.service-v3-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(27, 191, 221, 0.12);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    border: 1px solid rgba(27, 191, 221, 0.25);
    transition: var(--transition-smooth);
}

.service-v3-card:hover .service-v3-icon {
    background: var(--secondary-color);
    color: var(--dark-color);
    transform: scale(1.06);
}

.service-v3-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-v3-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--gray-color);
    line-height: 1.8;
    margin: 0;
}

/* --- Section 3: Accreditations & Technical Approvals Glassmorphic Section --- */
.lankacomm-v3-accreditations {
    position: relative;
    padding: 80px 0 90px;
    background-color: #070c16;
    overflow: hidden;
}

.cert-ambient-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(27, 191, 221, 0.15) 0%, rgba(1, 79, 110, 0.05) 50%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.cert-bg-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
    z-index: 1;
}

.cert-ring-1 {
    width: 450px;
    height: 450px;
    top: -100px;
    left: -100px;
}

.cert-ring-2 {
    width: 600px;
    height: 600px;
    bottom: -150px;
    right: -100px;
}

.lankacomm-v3-accreditations .about-highlight {
    color: var(--secondary-color);
}

.accreditations-v3-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 40px;
    align-items: stretch;
    margin-top: 40px;
}

.cert-stack-block,
.awards-bento-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px;
    padding: 40px 35px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.block-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.block-header-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: rgba(27, 191, 221, 0.15);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    border: 1px solid rgba(27, 191, 221, 0.3);
}

.block-header-icon.gold-icon {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    border-color: rgba(245, 158, 11, 0.3);
}

.block-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 4px;
}

.block-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.cert-pill-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 20px 22px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.15s ease-out;
    position: relative;
}

.cert-pill-card:last-child {
    margin-bottom: 0;
}

.cert-pill-card:hover {
    background: rgba(27, 191, 221, 0.12);
    border-color: rgba(27, 191, 221, 0.4);
    transform: translateX(6px);
    box-shadow: 0 10px 25px rgba(27, 191, 221, 0.15);
}

.cert-pill-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--secondary-color);
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.cert-pill-info {
    flex: 1;
}

.cert-pill-info h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 3px;
}

.cert-pill-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.cert-status-badge {
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    color: var(--secondary-color);
    background: rgba(27, 191, 221, 0.15);
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid rgba(27, 191, 221, 0.3);
}

.awards-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.bento-award-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 22px 18px;
    text-align: left;
    transition: all 0.15s ease-out;
    display: flex;
    flex-direction: column;
}

.bento-award-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.5);
    background: rgba(245, 158, 11, 0.08);
    box-shadow: 0 12px 30px rgba(245, 158, 11, 0.15);
}

.bento-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid #f59e0b;
    color: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 12px;
}

.bento-count {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #f59e0b;
    margin-bottom: 6px;
}

.bento-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 6px;
}

.bento-sub {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* --- Section 4: Global Feature Showcase --- */
.lankacomm-v3-global-section {
    padding: 90px 0 0px;
    background-color: var(--white-color);
}

.global-showcase-card {
    background: var(--light-color);
    border-radius: 30px;
    padding: 50px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.global-card-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

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

.global-feature-item {
    display: flex;
    gap: 14px;
}

.gf-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(27, 191, 221, 0.12);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    border: 1px solid rgba(27, 191, 221, 0.25);
}

.global-feature-item h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0 0 4px;
}

.global-feature-item p {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--gray-color);
    line-height: 1.5;
    margin: 0;
}

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

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

.global-floating-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(8, 12, 20, 0.85);
    backdrop-filter: blur(10px);
    padding: 14px 20px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white-color);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.global-floating-badge i {
    color: var(--secondary-color);
    font-size: 16px;
}

@media (max-width: 991px) {

    .lankacomm-v3-grid,
    .global-card-grid,
    .accreditations-v3-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {

    .services-v3-grid,
    .awards-bento-grid,
    .global-features-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 40px;
    }
}