/*
Theme Name: Luxtech
Version: 1.0
*/

@import url(https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap);
@import url(https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css);
@import "mobile-fixes.css";
@import "header.css";


:root {
    --primary-orange: #f39200;
    --dark-bg: #0a0e14;
    --card-bg: #161b22;
    --accent-orange: #ff8c00;
    --text-white: #ffffff;
    --primary: #2563EB;
    --primarys: rgb(255, 255, 255);
    /* Bright Blue */
    --primary-dark: #1E40AF;
    --secondary: #F59E0B;
    /* Diodus Orange */
    /* Deep Navy */
    --card-dark: #111827;
    --text-main: #111827;
    --text-light: #6B7280;
    --text-white-muted: #9CA3AF;
    --border: #E5E7EB;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --footer-bg: #0F172A;
    --transition: all 0.3s ease;
}



body {
    background-color: var(--dark-bg);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    margin: 0;
    overflow-x: hidden;
}

/* Micro-animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

.about-partners__cert-img {
    width: 100px;
    height: 120px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.sssss {
    width: 36px;
    height: 36px;
    background: #dde7ff;
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.logosss {
    width: 65px;
    height: 65px;
    /* background: var(--primarys); */
    /* color: white; */
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* Hover Effects */
.btn-primary {
    background: var(--primary-orange);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(243, 146, 0, 0.3);
}

.card {
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    overflow: hidden;
}

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

.card:hover .card-overlay {
    background: rgba(0, 0, 0, 0.7);
}



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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background: #fff;
    line-height: 1.5;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

button,
input,
select,
textarea {
    font-family: inherit;
    outline: none;
}

/* --- UTILITY CLASSES --- */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    gap: 10px;
    transition: var(--transition);
}

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

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

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

.btn-orange:hover {
    background: #d97706;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    border-color: var(--text-main);
}

.section-padding {
    padding: 70px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.hero-scroll {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 40px;
}

.section-desc--right {
    text-align: right;
    font-size: 14px;
    line-height: 1.6;
    max-width: 360px;
}

.section-light {
    background: #F9FAFB;
}

.industry-desc {
    font-size: 13px;
    margin-top: 5px;
    opacity: 0.8;
}

.diodus-desc {
    color: var(--text-light);
    line-height: 1.6;
}

.map-card-title {
    font-size: 24px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.map-card-icon {
    background: var(--primary);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.map-card-desc {
    color: var(--text-white-muted);
    margin-bottom: 40px;
    max-width: 400px;
}

.dot--one {
    top: 30%;
    left: 40%;
}

.dot--two {
    top: 50%;
    left: 60%;
}

.dot--three {
    top: 40%;
    left: 70%;
}

.dot--four {
    top: 60%;
    left: 30%;
}

.nav-chevron {
    width: 12px;
    height: 12px;
    margin-left: 6px;
    color: #64748b;
    opacity: 1;
    transform: translateY(1px);
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
    vertical-align: middle;
}

.has-dropdown.is-open .nav-chevron {
    color: var(--primary-blue);
    transform: translateY(1px) rotate(180deg);
}

.section-header {
    margin-bottom: 60px;
}

.section-label {
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
}

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

.center-text .section-desc {
    margin: 0 auto;
}

/* --- HEADER --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

header .container {
    display: block;

    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    color: var(--dark-bg);
    text-decoration: none;
}

.logo:hover {
    color: var(--primary);
}

.logo-box {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    font-size: 14px;
    font-weight: 500;
}

.nav-menu li {
    position: relative;
    list-style: none;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-main);
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 230px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1100;
}

.nav-dropdown li {
    list-style: none;
}

.nav-dropdown a {
    display: block;
    padding: 8px 18px;
    font-size: 13px;
    color: #0f172a;
    text-decoration: none;
}

.nav-dropdown a:hover {
    background: #f1f5f9;
    color: var(--primary);
}

.has-dropdown.is-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(135deg, rgba(11, 17, 32, 0.95), rgba(11, 17, 32, 0.8)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 180px 15px 80px 15px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge span {
    color: var(--primary);
    font-size: 20px;
    line-height: 0;
}

.hero h1 {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--primary);
    display: block;
}

.hero p {
    font-size: 20px;
    color: var(--text-white-muted);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 100px;
}

.search-box {
    background: white;
    border-radius: var(--radius-sm);
    width: 200px;
}

.stats-row {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 40px;
    gap: 40px;
}

.stat-item h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
}

.stat-item p {
    font-size: 14px;
    color: var(--text-white-muted);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-indicator {
    width: 40px;
    height: 60px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    width: 4px;
    height: 8px;
    background: white;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* --- SOLUTIONS GRID --- */
/* --- SOLUTIONS (BEM) --- */
.solutions {
    padding: 96px 0;
    background: #FAFAFA;
}

.solutions__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 64px;
}

.solutions__label {
    color: var(--primary);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.solutions__title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.1;
    color: #0A1628;
}

.solutions__desc {
    color: #6B7280;
    max-width: 360px;
    font-size: 14px;
    line-height: 1.7;
    text-align: right;
}

.solutions__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.solutions__item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    min-height: 280px;
    background: #fff;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.solutions__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
}

.solutions__item--tall {
    grid-row: span 2;
    min-height: 400px;
}

.solutions__media {
    position: absolute;
    inset: 0;
}

.solutions__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.solutions__item:hover .solutions__image {
    transform: scale(1.1);
}

.solutions__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.95), rgba(10, 22, 40, 0.55), transparent);
}

.solutions__content {
    position: absolute;
    inset: 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
}

.solutions__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.solutions__item:hover .solutions__icon {
    transform: scale(1.08);
}

.solutions__name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.solutions__text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.6;
}

.solutions__link {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.solutions__item:hover .solutions__link {
    opacity: 1;
}

/* --- CONTACTS PAGE (BEM) --- */
.contact-hero {
    position: relative;
    padding: 96px 0;
    background: #0A1628;
    color: white;
    text-align: center;
    overflow: hidden;
}

.contact-hero__bg {
    position: absolute;
    inset: 0;
}

.contact-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.contact-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10, 22, 40, 1), rgba(10, 22, 40, 0.8), rgba(10, 22, 40, 1));
}

.contact-hero__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}


.contact-hero__breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.contact-hero__breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
}

.contact-hero__crumb-sep {
    font-size: 10px;
    opacity: 0.8;
}

.contact-hero__crumb-current {
    color: #ffffff;
    font-weight: 600;
}

.contact-hero__label {
    display: block;
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.contact-hero__title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-hero__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    max-width: 680px;
    margin: 0 auto;
}

.contact-page {
    padding: 80px 0;
    background: #fff;
}

.contact-page__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-form-card {
    background: #FAFAFA;
    border-radius: 24px;
    padding: 36px 40px;
}

.contact-form-card__title {
    font-size: 24px;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 8px;
}

.contact-form-card__subtitle {
    color: #6B7280;
    margin-bottom: 28px;
}

.contact-form {
    display: grid;
    gap: 20px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form__field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form__label {
    font-size: 13px;
    font-weight: 600;
    color: #0A1628;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
    height: 48px;
    border-radius: 14px;
    border: 1px solid #E5E7EB;
    background: transparent;
    padding: 0 14px;
    font-size: 14px;
    color: #0A1628;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form__textarea {
    height: auto;
    min-height: 120px;
    padding: 12px 14px;
    resize: none;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.contact-form__submit {
    height: 56px;
    border: none;
    border-radius: 14px;
    background: var(--primary);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.contact-form__submit:hover {
    background: #1D4ED8;
    transform: translateY(-1px);
}

.contact-form__note {
    text-align: center;
    font-size: 13px;
    color: #6B7280;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info__title {
    font-size: 24px;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 8px;
}

.contact-info__text {
    color: #6B7280;
}

.contact-office {
    border-radius: 20px;
    padding: 20px 22px;
    background: #FAFAFA;
    display: flex;
    gap: 16px;
}

.contact-office--primary {
    background: #0A1628;
    color: white;
}

.contact-office__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
}

.contact-office__icon--light {
    background: #fff;
    color: var(--primary);
}

.contact-office__name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-office__name--dark {
    color: #0A1628;
}

.contact-office__badge {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    border-radius: 999px;
    background: var(--primary);
    font-size: 11px;
    color: white;
    font-weight: 600;
}

.contact-office__row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 8px;
}

.contact-office__row--dark {
    color: #6B7280;
}

.contact-urgent {
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    border-radius: 20px;
    padding: 20px 22px;
    color: white;
}

.contact-urgent__title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-urgent__text {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 14px;
}

.contact-urgent__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    color: white;
}

.leadership {
    padding: 80px 0;
    background: #fff;
}

.leadership__header {
    text-align: center;
    margin-bottom: 48px;
}

.leadership__label {
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.leadership__title {
    font-size: 36px;
    font-weight: 800;
    color: #0A1628;
}

.leadership__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 980px;
    margin: 0 auto;
}

.leadership__card {
    background: #FAFAFA;
    border-radius: 20px;
    overflow: hidden;
}

.leadership__photo {
    height: 70%;
    overflow: hidden;
}

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

.leadership__content {
    padding: 28px;
}

.leadership__name {
    font-size: 22px;
    font-weight: 700;
    color: #0A1628;
    margin-bottom: 6px;
}

.leadership__role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 14px;
}

.leadership__bio {
    color: #6B7280;
    line-height: 1.6;
}

.contact-map {
    height: 360px;
    position: relative;
    background: #e5e7eb;
    overflow: hidden;
}

.contact-map__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.contact-map__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.contact-map__content {
    text-align: center;
    color: #6B7280;
}

.contact-map__icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-map__title {
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-map__subtitle {
    font-size: 13px;
    color: #9CA3AF;
}

/* --- INDUSTRIES SLIDER --- */
.industries-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 40px;
    scroll-snap-type: x mandatory;
}

.industries-scroll::-webkit-scrollbar {
    height: 6px;
}

.industries-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.industries-scroll::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 10px;
}

.industry-card {
    min-width: 300px;
    height: 450px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
    pointer-events: none;
}

.industry-card img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.industry-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: white;
    z-index: 2;
}

.project-count {
    color: white;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
}

/* --- PROCESS --- */
.process-section {
    background: var(--dark-bg);
    color: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    position: relative;
    margin-top: 60px;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.step-item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--dark-bg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
    color: var(--primary);
    position: relative;
}

.step-num {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-item h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 13px;
    color: var(--text-white-muted);
    line-height: 1.6;
}

/* --- PORTFOLIO --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    height: 600px;
}

.portfolio-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.project-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex: 1;
}

.project-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    color: white;
}

.tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.tag {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.project-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.location {
    font-size: 14px;
    opacity: 0.8;
}

.location i {
    margin-right: 6px;
}

/* --- DIODUS --- */
.diodus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.diodus-brand {
    color: var(--text-main);
    font-weight: 800;
    font-size: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.diodus-brand span {
    width: 32px;
    height: 32px;
    background: var(--secondary);
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 40px 0;
}

.feature h4 {
    font-size: 16px;
    margin-bottom: 8px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.feature h4 i {
    color: var(--secondary);
}

.feature p {
    font-size: 13px;
    color: var(--text-light);
}

.diodus-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
}

.diodus-img-lg {
    grid-column: 1 / -1;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.diodus-img-sm {
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.stats-pill {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px 40px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 40px;
    width: 90%;
    justify-content: space-around;
}

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

.pill-item b {
    display: block;
    font-size: 20px;
    font-weight: 800;
}

.pill-item span {
    font-size: 12px;
    color: var(--text-light);
}

/* --- GLOBAL PRESENCE --- */
.clients-section {
    text-align: center;
    background: #fafafa;
}

.logo-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.client-logo {
    width: 100px;
    height: 60px;
    background: white;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #d1d5db;
    border: 1px solid #f3f4f6;
}

.map-card {
    background: var(--dark-bg);
    border-radius: var(--radius-lg);
    padding: 60px;
    color: white;
    text-align: left;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Radar Effect */
.map-visual {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-circle {
    position: absolute;
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 50%;
}

.c1 {
    width: 100px;
    height: 100px;
}

.c2 {
    width: 200px;
    height: 200px;
}

.c3 {
    width: 300px;
    height: 300px;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
    }

    50% {
        opacity: 0.8;
    }

    100% {
        opacity: 1;
        box-shadow: 0 0 0 8px rgba(37, 99, 235, 0);
    }
}

.dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    animation: pulse 2.5s infinite;
}

.region-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.region-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: var(--radius-sm);
}

.region-box h4 {
    color: var(--primary);
    font-size: 24px;
    font-weight: 700;
}

.region-box p {
    font-size: 13px;
    color: var(--text-white-muted);
}

/* --- CONTACT FORM --- */
.contact-area {
    background: var(--dark-bg);
    color: white;
    padding-bottom: 0;
    padding-top: 100px;
    padding-bottom: 80px;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.check-list {
    margin-top: 30px;
}

.check-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: center;
}

.check-item i {
    color: var(--primary);
    background: rgba(37, 99, 235, 0.2);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.form-card {
    background: white;
    padding: 36px;
    border-radius: var(--radius-md);
    color: var(--text-main);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* New form group styles */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: white;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    font-size: 14px;
    transition: var(--transition);
    color: white;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-control:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 100px;
    font-family: inherit;
}

/* Custom Dropdown Styles */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-toggle {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    font-size: 14px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    font-weight: 500;
    color: white;
}

.dropdown-toggle:hover {
    border-color: var(--primary);
}

.dropdown-toggle.active {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.2);
}

.dropdown-toggle::after {
    content: '';
    width: 6px;
    height: 6px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.dropdown-toggle.active::after {
    transform: rotate(-135deg);
    border-color: var(--primary);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(20, 30, 50, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(37, 99, 235, 0.3);
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 300px;
    overflow-y: auto;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    font-size: 14px;
}

.dropdown-item:hover {
    background-color: rgba(37, 99, 235, 0.2);
    color: white;
    padding-left: 20px;
}

.dropdown-item.selected {
    background-color: rgba(37, 99, 235, 0.3);
    color: var(--primary);
    font-weight: 500;
}

.dropdown-item.selected::before {
    content: '✓';
    margin-right: 10px;
    font-weight: 700;
    color: var(--primary);
}

.submit-btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    margin-top: 10px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #F9FAFB;
    font-size: 14px;
}

.input-group textarea {
    height: 120px;
    resize: none;
}

.input-group input:focus {
    border-color: var(--primary);
    background: white;
}

.disclaimer {
    font-size: 13px;
    color: #9CA3AF;
    text-align: center;
    margin-top: 16px;
    line-height: 1.4;
}

/* --- CONTACT FORM OVERRIDES --- */
.contact-desc {
    color: rgba(255, 255, 255, 0.7);
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #111827;
}

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

.form-group.form-group-lg {
    margin-bottom: 28px;
}

.dropdown-text {
    flex: 1;
    text-align: left;
}

.dropdown-icon {
    font-size: 12px;
    flex-shrink: 0;
    margin-left: 12px;
}

textarea.form-control.modern {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.btn-icon {
    margin-left: 8px;
}

/* --- FOOTER --- */
footer {
    background-color: var(--footer-bg);
    color: #F3F4F6;
    padding: 60px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: white;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-col ul li a {
    color: #F3F4F6;
    transition: var(--transition);
    text-decoration: none;
    font-size: 14px;
}

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

.footer-col ul li span,
.footer-col ul li {
    color: #F3F4F6;
    font-size: 14px;
}

.footer-logo {
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-desc {
    color: var(--text-white-muted);
    font-size: 14px;
    line-height: 1.6;
    margin: 20px 0;
    max-width: 300px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #F3F4F6;
    transition: var(--transition);
    text-decoration: none;
}

.social-icons a:hover {
    background-color: var(--primary);
    color: white;
}

.footer-squares {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-square {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: #F3F4F6;
    font-size: 14px;
    line-height: 1.6;
}

.contact-item i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-contact-text {
    font-size: 14px;
    color: var(--text-white-muted);
    margin-bottom: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-links {
    display: flex;
    gap: 0;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: var(--transition);
    margin-left: 20px;
}

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

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 48px;
    }

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

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

    .contact-split {
        grid-template-columns: 1fr;
    }

    .map-card {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        display: flex;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        margin-bottom: 60px;
    }

    .process-steps {
        gap: 40px;
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .process-steps::before {
        display: none;
    }

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

    .contact-page__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    header .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .logo {
        font-size: 18px;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        margin-bottom: 36px;
    }

    .hero-grid>div:last-child {
        display: none;
    }

    .hero-blocks {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 16px;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        margin-bottom: 48px;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .search-box {
        width: 100%;
    }

    .stats-row {
        flex-direction: column;
        gap: 20px;
        padding-top: 30px;
        align-items: center;
        justify-content: center;
    }

    .stat-item h3 {
        font-size: 24px;
    }

    .solutions__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .solutions__desc {
        text-align: left;
        max-width: 100%;
    }

    .solutions__grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .solutions__item {
        min-height: 260px;
    }

    .solutions__item--tall {
        min-height: 320px;
    }

    .industries-scroll {
        gap: 16px;
        padding-bottom: 20px;
    }

    .industry-card {
        min-width: 250px;
        height: 350px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .diodus-grid {
        gap: 30px;
    }

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

    .stats-pill {
        width: 100%;
        margin-top: 20px;
    }

    .contact-hero__title {
        font-size: 36px;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .contact-form-card {
        padding: 28px;
    }

    .leadership__title {
        font-size: 28px;
    }

    .logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .map-card {
        gap: 30px;
    }

    .region-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .check-list {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .logo {
        font-size: 16px;
    }

    .hero {
        padding: 100px 0 50px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .hero p {
        font-size: 14px;
        max-width: 100%;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .search-box {
        width: 100%;
    }

    .solutions__item {
        min-height: 240px;
    }

    .solutions__content {
        padding: 20px;
    }

    .solutions__icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }

    .solutions__name {
        font-size: 18px;
    }

    .industry-card {
        min-width: 200px;
        height: 300px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-desc {
        font-size: 14px;
    }

    .process-steps {
        gap: 20px;
    }

    .process-step {
        padding: 24px;
    }

    .process-step h3 {
        font-size: 16px;
    }

    .diodus-brand {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .client-logo {
        width: 60px;
        height: 60px;
        font-size: 13px;
    }

    .map-visual {
        height: 250px;
    }

    .contact-form {
        padding: 20px;
    }

    .form-control {
        padding: 10px 12px;
        font-size: 13px;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
        font-size: 12px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* Projects Section Styles */
.projects-section {

    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
}

.projects-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.projects-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111;
}

.all-projects-btn {
    text-decoration: none;
    color: #111;
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.all-projects-btn:hover {
    background: #f5f5f5;
}

/* Grid Layout */
.projects-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 240px 240px 280px;
    gap: 20px;
}

.project-card {
    position: relative;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
}

.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
}

.large {
    grid-row: 1 / 3;
}

.card-content {
    position: relative;
    z-index: 2;
    padding: 24px;
    width: 100%;
}

.tags {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.tags span {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    backdrop-filter: blur(4px);
}

.category {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 8px;
}

.category-healthcare {
    color: #60a5fa;
}

.category-residential {
    color: #3b82f6;
}

.project-card h3 {
    font-size: 20px;
    margin: 0 0 8px 0;
    font-weight: 600;
}

.large h3 {
    font-size: 28px;
}

.location {
    font-size: 13px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Hover Effect */
.project-card:hover::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 70%);
}

/* Projects Container Styles */
.projects-container {
    padding: 20px;
    max-width: 1440px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 260px) 280px;
    gap: 20px;
}

.card {
    position: relative;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    color: white;
}

.card.large {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.card-overlay {
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 7, 24, 0.9) 0%, transparent 70%);
    box-sizing: border-box;
}

.tags {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.category {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.category.blue {
    color: #3b82f6;
}

.category.light-blue {
    color: #60a5fa;
}

.card h3 {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 700;
}

.card.large h3 {
    font-size: 32px;
}

.location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    opacity: 0.8;
}

.pin {
    width: 14px;
    height: 14px;
}

/* Form on white background styles */
.form-card .form-control {
    background: #F3F4F6;
    border: 2px solid #E5E7EB;
    color: #111827;
}

.form-card .form-control::placeholder {
    color: #9CA3AF;
}

.form-card .form-control:focus {
    background: #FFFFFF;
    border-color: var(--primary);
    color: #111827;
}

.form-card label {
    color: #111827;
}

.form-card .dropdown-toggle {
    background: #F3F4F6;
    border: 2px solid #E5E7EB;
    color: #111827;
}

.form-card .dropdown-menu {
    background: white;
    border: 2px solid #E5E7EB;
}

.form-card .dropdown-item {
    color: #111827;
}

.form-card .dropdown-item:hover {
    background: #F3F4F6;
}

.form-card .dropdown-item.selected {
    background: #E5E7EB;
    color: #111827;
}

/* Modern form inputs */
.form-control.modern {
    background: #FAFBFC;
    border: 1px solid #E0E7FF;
    color: #111827;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.form-control.modern::placeholder {
    color: #A8ADB8;
}

.form-control.modern:focus {
    background: #FFFFFF;
    border-color: #2563EB;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.08);
}

.form-control.modern:hover {
    border-color: #D5DCE8;
}

/* Modern dropdown */
.modern-dropdown {
    background: #FAFBFC;
    border: 1px solid #E0E7FF;
    color: #111827;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
    cursor: pointer;
}

.modern-dropdown:hover {
    border-color: #D5DCE8;
}

.modern-dropdown.active {
    border-color: #2563EB;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.08);
}

/* Modern submit button */
.btn-submit-modern {
    width: 100%;
    padding: 14px 24px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.btn-submit-modern:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-submit-modern:active {
    transform: scale(0.98);
}

/* Portfolio Section Styles (BEM) */
.portfolio {
    padding: 90px 0 80px;
    background: #fff;
}

.portfolio__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
}

.portfolio__label {
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.portfolio__title {
    font-size: 40px;
    font-weight: 800;
    margin: 0;
    color: var(--text-main);
}

.portfolio__action {
    border: 1px solid #d6dbe4;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.2s ease;
    background: #fff;
}

.portfolio__action:hover {
    background: #f8fafc;
    border-color: #cbd5f5;
}

.portfolio__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-auto-rows: 220px;
    gap: 24px;
}

.portfolio__item {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    color: #fff;
    background: #0f172a;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.portfolio__item:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.24);
}

.portfolio__item--large {
    grid-row: span 2;
    min-height: 440px;
}

.portfolio__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 18, 32, 0.9) 0%, rgba(11, 18, 32, 0.2) 60%);
    z-index: 1;
}

.portfolio__overlay {
    position: relative;
    z-index: 2;
    padding: 22px 24px;
    width: 100%;
}

.portfolio__tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.portfolio__tag {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
}

.portfolio__category {
    color: #67a6ff;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 6px;
}

.portfolio__category--alt {
    color: #79d1ff;
}

.portfolio__name {
    font-size: 28px;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.portfolio__item:not(.portfolio__item--large) .portfolio__name {
    font-size: 18px;
}

.portfolio__location {
    font-size: 12px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.portfolio__location-icon {
    font-size: 12px;
}

@media (max-width: 1024px) {
    .portfolio__grid {
        grid-template-columns: 1.4fr 1fr;
    }
}

@media (max-width: 860px) {
    .portfolio__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .portfolio__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .portfolio__item--large,
    .portfolio__item {
        min-height: 280px;
    }
}

/* --- CHARITY SECTION STYLES --- */
:root {
    --primary-red: #E31E24;
    --dark-text: #1A1A1A;
    --gray-text: #757575;
    --light-gray: #F2F2F2;
}

.charity-section {
    padding: 60px 20px;
    font-family: 'Inter', sans-serif;
    background-color: #fff;
}

/* Header Section */
.charity-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.badge-main {
    color: var(--primary-red);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.heart-icon {
    background: var(--primary-red);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 8px;
}

.charity-section .main-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--dark-text);
    margin: 0;
}

.btn-outline {
    background: white;
    border: 1px solid #ddd;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline:hover {
    background: black;
    color: white;
    border: 1px solid white;

}

/* Grid & Cards */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    margin-bottom: 20px;
}

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

.category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-red);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.card-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
}

.card-text {
    color: var(--gray-text);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Progress Bar */
.progress-bar {
    background: var(--light-gray);
    height: 6px;
    border-radius: 10px;
    margin-bottom: 8px;
}

.progress-fill {
    background: var(--dark-text);
    height: 100%;
    border-radius: 10px;
}

.progress-stats {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 900;
    color: #bbb;
    margin-bottom: 25px;
}

.btn-link {
    color: var(--primary-red);
    font-weight: 800;
    font-size: 14px;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0;
}

.btn-link i {
    margin-left: 8px;
}

/* --- FOOTER RESPONSIVE --- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 40px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    .footer-col h4 {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .footer-col ul li a {
        font-size: 13px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        font-size: 12px;
        padding-bottom: 15px;
    }

    .footer-links {
        flex-direction: column;
        gap: 8px;
    }

    .footer-links a {
        margin-left: 0;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    footer {
        padding: 30px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

    .footer-col h4 {
        font-size: 13px;
        margin-bottom: 12px;
    }

    .footer-col ul li a {
        font-size: 12px;
    }

    .footer-desc {
        font-size: 13px;
        max-width: 100%;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icons a {
        width: 32px;
        height: 32px;
    }

    .contact-item {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        font-size: 11px;
        padding-bottom: 10px;
    }

    .footer-links {
        flex-direction: column;
        gap: 6px;
    }

    .footer-links a {
        margin-left: 0;
        font-size: 11px;
    }
}

@media (max-width: 360px) {
    footer {
        padding: 25px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .footer-col h4 {
        font-size: 12px;
        margin-bottom: 10px;
    }

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

    .footer-col ul li a {
        font-size: 11px;
    }

    .footer-desc {
        font-size: 12px;
        margin: 15px 0;
    }

    .social-icons {
        gap: 8px;
    }

    .social-icons a {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .contact-item {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        font-size: 10px;
        padding-bottom: 8px;
    }

    .footer-links {
        flex-direction: column;
        gap: 5px;
    }

    .footer-links a {
        margin-left: 0;
        font-size: 10px;
    }
}

/* --- LUXBRAND (BEM) --- */
.lux-page {
    background: #fff;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

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

.lux-page ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lux-page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lux-page button,
.lux-page input,
.lux-page select,
.lux-page textarea {
    font-family: inherit;
    outline: none;
}

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

.lux-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    gap: 10px;
    transition: var(--transition);
}

.lux-button--primary {
    background: var(--primary);
    color: #fff;
}

.lux-button--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.lux-button--accent {
    background: var(--accent-orange);
    color: #fff;
    padding: 15px 30px;
    border-radius: 6px;
    font-weight: 700;
}

.lux-button--accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.4);
}

.lux-button--light {
    background: #fff;
    color: var(--accent-orange);
    border-radius: 8px;
    font-weight: 700;
    padding: 15px 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.lux-button--light:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.lux-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    transition: padding 0.3s ease;
}

.lux-header.scrolled {
    padding-top: 50px;
}

.lux-header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 20px;
    color: var(--dark-bg);
}

.lux-header__logo:hover {
    color: var(--primary);
}

.lux-header__logo-box {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
}

.lux-header__nav-list {
    display: flex;
    gap: 30px;
    font-size: 14px;
    font-weight: 500;
}

.lux-header__nav-item {
    position: relative;
}

.lux-header__nav-link {
    text-decoration: none;
    color: var(--text-main);
}

.lux-header__nav-link:hover {
    color: var(--primary);
}

.lux-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(11, 17, 32, 0.95), rgba(11, 17, 32, 0.8)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 120px 0 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;

}

.lux-hero__content {
    max-width: 700px;
}

.lux-hero__brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.lux-hero__title {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.lux-hero__accent {
    color: var(--primary);
}

.lux-hero__text {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 30px;
    line-height: 1.6;
}

.lux-hero__actions {
    display: flex;
    gap: 15px;
}

.lux-stats {
    background: #fff;
    padding: 60px 0;
}

.lux-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 30px;
}

.lux-stats__value {
    font-size: 42px;
    margin-bottom: 5px;
}

.lux-stats__label {
    color: #64748b;
    font-size: 14px;
}

.lux-philosophy {
    background: #fcfcfc;
    padding: 80px 0;
}

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

.lux-section__tag {
    color: var(--accent-orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.lux-section__title {
    font-size: 32px;
    margin-bottom: 50px;
}

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

.lux-card {
    background: #fff;
    padding: 40px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    text-align: left;
}

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

.lux-card__icon {
    width: 45px;
    height: 45px;
    background: #fff8f0;
    color: var(--accent-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 20px;
}

.lux-card__text {
    color: #64748b;
    font-size: 14px;
    margin-top: 10px;
}

.lux-collections {
    padding: 80px 0;
}

.lux-collections__header {
    text-align: center;
    margin-bottom: 50px;
}

.lux-collections__tag {
    color: var(--accent-orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.lux-collections__title {
    font-size: 36px;
    color: var(--dark-bg);
}

.lux-collections__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.lux-collections__card {
    height: 450px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    color: #fff;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lux-collections__card:hover {
    transform: scale(0.98);
}

.lux-collections__info {
    transition: transform 0.4s ease;
    z-index: 2;
}

.lux-collections__card:hover .lux-collections__info {
    transform: translateY(-10px);
}

.lux-collections__count {
    color: var(--accent-orange);
    font-size: 13px;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.lux-collections__name {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.lux-collections__desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 80%;
    line-height: 1.5;
}

.lux-collections__card--luminaire {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(11, 17, 32, 0.9)), url('https://images.unsplash.com/photo-1507473885765-e6ed057f782c?q=80&w=800');
}

.lux-collections__card--sculptural {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(11, 17, 32, 0.9)), url('https://images.unsplash.com/photo-1530608129573-049887768560?q=80&w=800');
}

.lux-collections__card--furniture {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(11, 17, 32, 0.9)), url('https://images.unsplash.com/photo-1567016432779-094069958ea5?q=80&w=800');
}

.lux-collections__card--decor {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(11, 17, 32, 0.9)), url('https://images.unsplash.com/photo-1513519245088-0e12902e35ca?q=80&w=800');
}

.lux-designers {
    background-color: #0b1120;
    padding-top: 80px;
}

.lux-designers__content {
    text-align: center;
    padding-bottom: 80px;
}

.lux-designers__title {
    color: #fff;
    margin-bottom: 40px;
}

.lux-designers__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.lux-designers__card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 15px;
    border-radius: 12px;
    color: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.lux-designers__card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--accent-orange);
}

.lux-designers__name {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.lux-designers__country {
    font-size: 13px;
    color: #94a3b8;
}

.lux-cta {
    background: linear-gradient(90deg, #ff8c00 0%, #ffae42 100%);
    padding: 60px 20px;
    text-align: center;
    border-radius: 0;
    color: #fff;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.lux-cta__title {
    font-size: 32px;
    margin-bottom: 15px;
}

.lux-cta__text {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.lux-footer__logo {
    color: #fff;
    font-size: 18px;
}

.lux-footer__icon {
    margin-top: 4px;
}

@media (max-width: 1024px) {
    .lux-header {
        padding-left: 16px;
        padding-right: 16px;
    }

    .lux-header__nav-list {
        gap: 20px;
        font-size: 13px;
    }
}

@media (max-width: 900px) {

    .lux-stats__grid,
    .lux-philosophy__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .lux-hero__title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .lux-header {
        padding: 12px 0;
    }

    .lux-header__nav-list {
        display: none;
    }

    .lux-header__logo {
        font-size: 18px;
    }

    .lux-header__logo-box {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .lux-header__cta {
        padding: 10px 20px;
        font-size: 13px;
    }

    .lux-collections__grid {
        grid-template-columns: 1fr;
    }

    .lux-collections__card {
        height: 350px;
    }

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

    .lux-cta__title {
        font-size: 24px;
    }
}

/* --- ABOUT (BEM) --- */
.about-page {
    background: #fff;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    --about-dark-navy: #0a0e1a;
    --about-light-bg: #f8fafc;
    --about-border: #e2e8f0;
    --about-text-muted: #64748b;
}

.about-hero {
    background: linear-gradient(rgba(10, 14, 26, 0.8), rgba(10, 14, 26, 0.8)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?q=80&w=2000') center/cover;
    padding: 120px 0;
    color: #fff;
}

.about-hero__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.about-hero__breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
}

.about-hero__crumb-sep {
    font-size: 10px;
    opacity: 0.8;
}

.about-hero__crumb-current {
    color: #ffffff;
    font-weight: 600;
}

.about-hero__tag {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
}

.about-hero__title {
    font-size: 56px;
    margin: 16px 0;
    font-weight: 800;
    max-width: 700px;
}

.about-hero__text {
    font-size: 18px;
    opacity: 0.8;
    max-width: 600px;
}

.about-mv {
    padding: 100px 0;
}

.about-mv__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.about-mv__card {
    padding: 50px;
    border-radius: 24px;
    background: var(--about-light-bg);
    transition: transform 0.3s;
}

.about-mv__card--dark {
    background: var(--about-dark-navy);
    color: #fff;
}

.about-mv__icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.about-mv__title {
    font-size: 28px;
    margin-bottom: 16px;
}

.about-mv__text {
    color: inherit;
}

.about-section__header {
    text-align: center;
    margin-bottom: 60px;
}

.about-section__header--spaced {
    margin-top: 80px;
}

.about-section__tag {
    color: var(--primary);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
}

.about-section__title {
    font-size: 32px;
    margin-top: 12px;
}

.about-values {
    padding-bottom: 100px;
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.about-values__card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--about-border);
    transition: 0.3s;
}

.about-values__card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.about-values__icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 12px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.about-values__title {
    font-size: 18px;
    margin-bottom: 8px;
}

.about-values__text {
    color: var(--about-text-muted);
}

.about-history {
    padding: 100px 0;
    background: #fff;
    position: relative;
}

.about-history__line {
    position: absolute;
    left: 50%;
    top: 200px;
    bottom: 100px;
    width: 2px;
    background: var(--about-border);
    transform: translateX(-50%);
}

.about-history__item {
    width: 50%;
    padding: 20px 60px;
    position: relative;
    margin-bottom: 40px;
}

.about-history__item--right {
    margin-left: auto;
}

.about-history__item--left {
    text-align: right;
}

.about-history__dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    top: 40px;
}

.about-history__item--left .about-history__dot {
    right: -6px;
}

.about-history__item--right .about-history__dot {
    left: -6px;
}

.about-history__box {
    background: var(--about-light-bg);
    padding: 30px;
    border-radius: 16px;
    display: inline-block;
    width: 100%;
}

.about-history__year {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 10px;
}

.about-stats {
    background: var(--about-dark-navy);
    color: #fff;
    padding: 100px 0;
}

.about-stats__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-stats__title {
    font-size: 40px;
    margin: 15px 0;
}

.about-stats__tag {
    color: var(--primary);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
}

.about-stats__text {
    color: #cbd5e1;
}

.about-stats__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-stats__item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
}

.about-stats__value {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 5px;
}

.about-partners {
    padding: 92px 0;
    background: #f8fafc;
    text-align: center;
}

.about-partners__tag {
    color: var(--primary);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
}

.about-partners__title {
    margin-top: 12px;
}

.about-partners__lead {
    max-width: 760px;
    margin: 14px auto 0;
    color: #6B7280;
    font-size: 16px;
    line-height: 1.6;
}

.about-partners__cards {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.about-partners-card {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 22px;
    text-align: left;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    text-decoration: none;
    color: inherit;
}

.about-partners-card:hover,
.about-partners-card:focus-visible {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(10, 22, 40, 0.12);
    outline: none;
}

.about-partners-card__head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.about-partners-card__head h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.15;
    color: #0F172A;
    letter-spacing: -0.01em;
}

.about-partners-card__mark {
    min-width: 68px;
    height: 68px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 18px;
}

.about-partners-card__text {
    margin: 0;
    color: #6B7280;
    font-size: 18px;
    line-height: 1.45;
    min-height: 182px;
}

.about-partners-card__chips {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.about-partners-card__chips span {
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.about-partners-card__cta {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
}

.about-partners-card__cta span {
    transition: transform 0.25s ease;
}

.about-partners-card:hover .about-partners-card__cta span,
.about-partners-card:focus-visible .about-partners-card__cta span {
    transform: translateX(4px);
}

.about-partners-card--zeon .about-partners-card__mark {
    background: #F59E0B;
}

.about-partners-card--zeon .about-partners-card__chips span {
    background: rgba(245, 158, 11, 0.12);
    color: #B45309;
}

.about-partners-card--zeon .about-partners-card__cta {
    color: #D97706;
}

.about-partners-card--img .about-partners-card__mark {
    background: #8B5CF6;
}

.about-partners-card--img .about-partners-card__chips span {
    background: rgba(139, 92, 246, 0.14);
    color: #7C3AED;
}

.about-partners-card--img .about-partners-card__cta {
    color: #8B5CF6;
}

.about-partners-card--mdm .about-partners-card__mark {
    background: #10B981;
}

.about-partners-card--mdm .about-partners-card__chips span {
    background: rgba(16, 185, 129, 0.14);
    color: #0F9F70;
}

.about-partners-card--mdm .about-partners-card__cta {
    color: #10B981;
}

/* --- PARTNER DETAIL PAGES --- */
.partner-page-main {
    background: #f8fafc;
}

.partner-hero {
    padding: 72px 0 56px;
    color: #ffffff;
}

.partner-hero--zeon {
    background: linear-gradient(135deg, #0A1628, #1D4ED8);
}

.partner-hero--img {
    background: linear-gradient(135deg, #312E81, #7C3AED);
}

.partner-hero--mdm {
    background: linear-gradient(135deg, #064E3B, #10B981);
}

.partner-hero__crumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    margin-bottom: 20px;
}

.partner-hero__crumbs a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.partner-hero h1 {
    margin: 0;
    font-size: 46px;
    line-height: 1.1;
}

.partner-hero p {
    margin: 14px 0 0;
    max-width: 760px;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.86);
}

.partner-content {
    padding: 56px 0 90px;
}

.partner-content__grid {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 24px;
}

.partner-content h2 {
    margin: 0 0 16px;
    color: #0F172A;
    font-size: 32px;
}

.partner-content p {
    margin: 0 0 16px;
    color: #475569;
    font-size: 18px;
    line-height: 1.7;
}

.partner-content__card {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 14px;
    padding: 24px;
    height: fit-content;
}

.partner-content__card h3 {
    margin: 0 0 14px;
    color: #0F172A;
    font-size: 22px;
}

.partner-content__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.partner-content__chips span {
    background: #EEF2FF;
    color: #1E3A8A;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
}

.partner-content__cta {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #2563EB;
    text-decoration: none;
}


.about-partners__certs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.about-partners__cert {
    border: 1px solid var(--about-border);
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-footer__logo {
    color: #fff;
    font-size: 18px;
}

.about-footer__icon {
    margin-top: 4px;
}

@media (max-width: 1024px) {
    .about-mv__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-values__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-stats__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-hero__title {
        font-size: 42px;
    }

    .about-history__line {
        display: none;
    }

    .about-history__item {
        width: 100%;
        text-align: left;
        padding: 20px 0;
        margin-left: 0;
    }

    .about-history__dot {
        position: static;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0 60px;
    }

    .about-hero__title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .about-hero__text {
        font-size: 16px;
    }

    .about-mv {
        padding: 50px 0;
    }

    .about-mv__card {
        padding: 30px;
    }

    .about-section__header {
        margin-bottom: 40px;
    }

    .about-values__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-values__card {
        padding: 30px 20px;
    }

    .about-stats__grid {
        grid-template-columns: 1fr;
    }

    .about-partners__lead {
        font-size: 16px;
    }

    .about-partners__cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-partners-card {
        padding: 20px;
    }

    .about-partners-card__head h3 {
        font-size: 22px;
    }

    .about-partners-card__mark {
        min-width: 56px;
        height: 56px;
        border-radius: 16px;
        font-size: 16px;
    }

    .about-partners-card__text {
        font-size: 16px;
        min-height: 0;
    }

    .about-partners-card__chips span {
        font-size: 14px;
        padding: 6px 10px;
    }

    .about-partners-card__cta {
        font-size: 18px;
    }

    .partner-hero {
        padding: 56px 0 44px;
    }

    .partner-hero h1 {
        font-size: 34px;
    }

    .partner-hero p {
        font-size: 16px;
    }

    .partner-content {
        padding: 40px 0 70px;
    }

    .partner-content__grid {
        grid-template-columns: 1fr;
    }

    .partner-content h2 {
        font-size: 26px;
    }

    .partner-content p {
        font-size: 16px;
    }

    .about-partners__certs {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 60px 0 40px;
    }

    .about-hero__title {
        font-size: 24px;
    }

    .about-hero__text {
        font-size: 14px;
    }

    .about-mv__card {
        padding: 20px;
    }

    .about-mv__title {
        font-size: 22px;
    }

    .about-values__card {
        padding: 20px 15px;
    }

    .about-stats__value {
        font-size: 28px;
    }

    .about-mv__icon,
    .about-values__icon {
        width: 40px;
        height: 40px;
    }

    .about-section__tag {
        font-size: 11px;
    }
}

/* --- PROJECTS --- */
.projects-page {
    background: #fff;
    color: #0A1628;
    --projects-navy: #0A1628;
    --projects-blue: #2563EB;
    --projects-blue-dark: #1D4ED8;
    --projects-gray: #64748B;
    --projects-gray-light: #94A3B8;
    --projects-bg: #FAFAFA;
}

.projects-hero {
    position: relative;
    padding: 100px 0;
    color: #fff;
    overflow: hidden;
}

.projects-hero__media {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(180deg, rgba(10, 22, 40, 0.9), rgba(10, 22, 40, 0.85)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920&q=80');
    background-size: cover;
    background-position: center;
}

.projects-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.projects-hero__tag {
    color: var(--projects-blue);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.projects-hero__title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.projects-hero__text {
    color: #cbd5e1;
    font-size: 18px;
    max-width: 640px;
    margin: 0 auto;
}

.projects-filter {
    position: sticky;
    top: 80px;
    z-index: 900;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 24px 0;
}

.projects-filter__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.projects-filter__search {
    position: relative;
    min-width: 260px;
    flex: 1 1 280px;
    max-width: 320px;
}

.projects-filter__search input {
    width: 100%;
    height: 44px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 0 16px 0 44px;
    font-size: 14px;
    color: #0A1628;
    background: #fff;
}

.projects-filter__search input::placeholder {
    color: var(--projects-gray-light);
}

.projects-filter__icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--projects-gray-light);
}

.projects-filter__icon svg,
.projects-filter__funnel svg,
.projects-card__location svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.projects-filter__chips {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.projects-filter__funnel {
    color: var(--projects-gray-light);
    display: inline-flex;
    align-items: center;
}

.projects-chip {
    border: none;
    background: #f1f5f9;
    color: var(--projects-gray);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.projects-chip:hover {
    background: #e2e8f0;
}

.projects-chip--active {
    background: var(--projects-navy);
    color: #fff;
}

.projects-grid {
    background: var(--projects-bg);
    padding: 60px 0 80px;
    height: 200vh;
}

.projects-grid__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.projects-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.projects-card--hidden {
    display: none;
}

.projects-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.16);
}

.projects-card__media {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.projects-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.projects-card:hover .projects-card__media img {
    transform: scale(1.08);
}

.projects-card__media::after {
    content: \"\";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.75), transparent 60%);
}

.projects-card__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--projects-blue);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    z-index: 1;
}

.projects-card__badge--health {
    background: #2563EB;
}

.projects-card__tags {
    position: absolute;
    left: 14px;
    bottom: 14px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    z-index: 1;
}

.projects-card__tags span {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 999px;
    backdrop-filter: blur(8px);
}

.projects-card__body {
    padding: 20px 22px 24px;
}

.projects-card__body h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0A1628;
    font-weight: 700;
}

.projects-card__meta {
    display: flex;
    align-items: center;
    color: var(--projects-gray);
    font-size: 13px;
    margin-bottom: 16px;
}

.projects-card__location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.projects-card__stats {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--projects-gray-light);
}

.projects-cta {
    background: var(--projects-navy);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.projects-cta__inner {
    max-width: 560px;
}

.projects-cta h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.projects-cta p {
    color: #cbd5e1;
    font-size: 16px;
    margin-bottom: 28px;
}

.projects-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--projects-blue);
    color: #fff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.projects-cta__button:hover {
    background: var(--projects-blue-dark);
    transform: translateY(-2px);
}

.projects-footer__logo {
    color: #fff;
    font-size: 18px;
}

.projects-footer__icon {
    margin-top: 4px;
}

@media (max-width: 1024px) {
    .projects-grid__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .projects-hero__title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .projects-filter {
        top: 70px;
    }

    .projects-filter__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .projects-filter__search {
        max-width: 100%;
    }

    .projects-grid__list {
        grid-template-columns: 1fr;
    }

    .projects-card__media {
        height: 200px;
    }

    .projects-hero__title {
        font-size: 32px;
    }

    .projects-cta h2 {
        font-size: 26px;
    }
}

/* --- SUPPLY (BEM) --- */
.supply-page {
    background: #fff;
    color: #1e293b;
    line-height: 1.5;
    --supply-primary: #3269ff;
    --supply-dark: #0a0e1a;
    --supply-muted: #64748b;
    --supply-light: #f8fafc;
    --supply-border: #e2e8f0;
}

.supply-hero {
    background: linear-gradient(rgba(10, 14, 26, 0.85), rgba(10, 14, 26, 0.85)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=2000') center/cover;
    padding: 100px 0;
    color: #fff;
}

.supply-hero__breadcrumb {
    font-size: 13px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.6);
}

.supply-hero__breadcrumb span {
    color: #fff;
}

.supply-hero__icon {
    background: var(--supply-primary);
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.supply-hero__title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
}

.supply-hero__tagline {
    color: var(--supply-primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.supply-hero__desc {
    max-width: 550px;
    opacity: 0.8;
    font-size: 16px;
}

.supply-main {
    padding: 80px 0;
}

.supply-main__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
}

.supply-main__label {
    color: var(--supply-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.supply-main__title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
}

.supply-main__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.supply-main__item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-weight: 500;
}

.supply-main__item::before {
    content: '✓';
    width: 24px;
    height: 24px;
    border: 1px solid var(--supply-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--supply-primary);
    font-size: 12px;
}

.supply-sidebox {
    background: var(--supply-light);
    padding: 32px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.supply-sidebox__title {
    margin-bottom: 20px;
    font-size: 18px;
}

.supply-sidebox__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.supply-pill {
    background: #fff;
    border: 1px solid var(--supply-border);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
}

.supply-sidebox__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.supply-sidebox__item {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--supply-muted);
}

.supply-sidebox__item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--supply-primary);
    font-size: 20px;
    line-height: 1;
}

.supply-related {
    padding-bottom: 80px;
}

.supply-related__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.supply-related__label {
    color: var(--supply-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.supply-related__title {
    font-size: 32px;
    font-weight: 700;
}

.supply-related__link {
    padding: 10px 20px;
    border: 1px solid var(--supply-border);
    border-radius: 8px;
    text-decoration: none;
    color: #1e293b;
    font-size: 14px;
    font-weight: 600;
}

.supply-related__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.supply-related__card {
    height: 320px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    text-decoration: none;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.supply-related__card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.supply-related__name {
    position: relative;
    z-index: 1;
    font-size: 24px;
}

.supply-related__card--dubai {
    background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?q=80&w=800');
}

.supply-related__card--singapore {
    background-image: url('https://images.unsplash.com/photo-1525596662741-e94ff9f26de1?q=80&w=800');
}

.supply-cta {
    background: var(--supply-dark);
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.supply-cta__title {
    font-size: 40px;
    margin-bottom: 16px;
}

.supply-cta__text {
    margin-bottom: 32px;
    opacity: 0.7;
}

.supply-cta__button {
    background: var(--supply-primary);
    color: #fff;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.supply-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
}

.supply-footer__bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #1e293b;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.supply-footer__logo {
    color: #fff;
    font-size: 18px;
}

.supply-footer__icon {
    margin-top: 4px;
}

@media (max-width: 1024px) {
    .supply-main__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .supply-related__grid {
        grid-template-columns: 1fr;
    }

    .supply-hero__title {
        font-size: 36px;
    }

    .supply-footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .supply-hero {
        padding: 80px 0 60px;
    }

    .supply-hero__title {
        font-size: 28px;
    }

    .supply-hero__desc {
        font-size: 15px;
    }

    .supply-main {
        padding: 60px 0;
    }

    .supply-main__grid {
        gap: 30px;
    }

    .supply-main__label {
        font-size: 11px;
    }

    .supply-main__title,
    .supply-related__title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .supply-main__item {
        margin-bottom: 16px;
    }

    .supply-sidebox {
        padding: 24px;
        margin-bottom: 20px;
    }

    .supply-sidebox__title {
        font-size: 16px;
    }

    .supply-pill {
        padding: 6px 12px;
        font-size: 12px;
    }

    .supply-related__grid {
        gap: 16px;
    }

    .supply-related__card {
        height: 250px;
        padding: 30px;
    }

    .supply-cta__title {
        font-size: 28px;
    }

    .supply-footer__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .supply-footer__bottom {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .supply-hero {
        padding: 60px 0 40px;
    }

    .supply-hero__title {
        font-size: 22px;
    }

    .supply-hero__desc {
        font-size: 13px;
    }

    .supply-hero__breadcrumb {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .supply-hero__icon {
        width: 48px;
        height: 48px;
    }

    .supply-main__title,
    .supply-related__title {
        font-size: 24px;
    }

    .supply-main__item {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .supply-sidebox {
        padding: 18px;
    }

    .supply-sidebox__title {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .supply-sidebox__pills {
        gap: 8px;
    }

    .supply-pill {
        padding: 5px 10px;
        font-size: 11px;
    }

    .supply-sidebox__item {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .supply-related__card {
        height: 200px;
        padding: 20px;
    }

    .supply-related__name {
        font-size: 18px;
    }
}

/* --- LIGHT PAGE --- */
.light-page {
    background: #ffffff;
}

.light-hero {
    position: relative;
    padding: 140px 0 120px;
    background: #0A1628;
    color: #ffffff;
    overflow: hidden;
}

.light-hero__media {
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1565814329452-e1efa11c5b89?auto=format&fit=crop&q=80");
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.light-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.85) 55%, rgba(10, 22, 40, 0.2) 100%);
}

.light-hero__content {

    position: relative;
    z-index: 1;
    margin: 0 auto;

}

.light-hero__breadcrumbs {
    display: flex;

    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.light-hero__breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
}

.light-hero__crumb-current {
    color: #ffffff;
}

.light-hero__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.light-hero__icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
}

.light-hero h1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 12px;
}

.light-hero__tagline {
    color: var(--primary);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.light-hero__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    max-width: 600px;
}

.light-section__tag {
    display: inline-block;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 16px;
}

.light-challenges {
    padding: 90px 0;
    background: #ffffff;
}

.light-challenges__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.light-challenges h2 {
    font-size: 32px;
    color: var(--text-main);
    margin-bottom: 20px;
}

.light-checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: var(--text-light);
    font-size: 15px;
    margin-top: 20px;
}

.light-checklist li {
    position: relative;
    padding-left: 26px;
}

.light-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--primary);
}

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

.light-card {
    background: #F8FAFC;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.light-card h4 {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-main);
}

.light-card p {
    color: var(--text-light);
    font-size: 14px;
}

.light-partners {
    padding: 80px 0;
    background: #F8FAFC;
}

.light-partners__header {
    text-align: center;
    margin-bottom: 36px;
}

.light-partners h2 {
    font-size: 32px;
    color: var(--text-main);
}

.light-partners__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.light-partners__list span {
    padding: 10px 20px;
    background: #ffffff;
    border-radius: 999px;
    border: 1px solid #E2E8F0;
    font-weight: 600;
    color: var(--text-main);
    font-size: 14px;
}

.light-process {
    padding: 90px 0;
    background: #0A1628;
    color: #ffffff;
}

.light-process__header {
    text-align: center;
    margin-bottom: 50px;
}

.light-process h2 {
    font-size: 32px;
}

.light-process__steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.light-step {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 22px;
    min-height: 140px;
}

.light-step span {
    display: inline-flex;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 14px;
}

.light-step p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.light-related {
    padding: 90px 0;
    background: #ffffff;
}

.light-related__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
}

.light-related h2 {
    font-size: 32px;
    color: var(--text-main);
}

.light-related__button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid #1F2937;
    color: #1F2937;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.light-related__button:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.light-related__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.light-related__card {
    position: relative;
    min-height: 240px;
    border-radius: 22px;
    padding: 24px;
    display: flex;
    align-items: flex-end;
    color: #ffffff;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.light-related__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.1) 0%, rgba(10, 22, 40, 0.85) 100%);
}

.light-related__card h3 {
    position: relative;
    z-index: 1;
    font-size: 20px;
}

.light-related__card--dubai {
    background-image: url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&q=80");
}

.light-related__card--singapore {
    background-image: url("https://images.unsplash.com/photo-1525625293386-3f8f99389edd?auto=format&fit=crop&q=80");
}

.light-related__card--london {
    background-image: url("https://images.unsplash.com/photo-1499092346589-b9b6be3e94b2?auto=format&fit=crop&q=80");
}

.light-cta {
    padding: 80px 0;
    background: #F8FAFC;
    text-align: center;
}

.light-cta h2 {
    font-size: 32px;
    color: var(--text-main);
    margin-bottom: 16px;
}

.light-cta p {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 28px;
}

.light-cta__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.light-cta__button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .light-hero {
        padding: 120px 0 100px;
    }

    .light-hero h1 {
        font-size: 40px;
    }

    .light-challenges__grid {
        grid-template-columns: 1fr;
    }

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

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

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

@media (max-width: 768px) {
    .light-hero {
        padding: 100px 0 80px;
    }

    .light-hero h1 {
        font-size: 34px;
    }

    .light-hero__text {
        font-size: 16px;
    }

    .light-challenges__cards {
        grid-template-columns: 1fr;
    }

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

    .light-related__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .light-related__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .light-hero h1 {
        font-size: 30px;
    }

    .light-hero__tagline {
        font-size: 18px;
    }

    .light-process__steps {
        grid-template-columns: 1fr;
    }
}

/* --- LUXBRAND PAGE --- */
.luxbrand-page {
    background: #ffffff;
}

.luxbrand-hero {
    position: relative;
    padding: 140px 0 110px;
    color: #ffffff;
    overflow: hidden;
    background: #0A1628;
}

.luxbrand-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1618220179428-22790b461013?w=1920&q=80");
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.luxbrand-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.85) 55%, rgba(10, 22, 40, 0.2) 100%);
}

.luxbrand-hero__glow {
    position: absolute;
    top: 80px;
    right: 120px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.3) 0%, rgba(245, 158, 11, 0) 70%);
    filter: blur(10px);
}

.luxbrand-hero__content {
    position: relative;
    z-index: 1;
    max-width: 80rem;
    margin: 0 auto;
    padding-left: 20px;
}

.luxbrand-hero__brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 28px;
}

.luxbrand-hero__badge {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #F59E0B, #F97316);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 24px;
    color: #ffffff;
}

.luxbrand-hero__title {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.luxbrand-hero__accent {
    color: #F59E0B;
}

.luxbrand-hero__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 630px;
}

.luxbrand-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.luxbrand-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.luxbrand-btn--primary {
    background: linear-gradient(135deg, #F59E0B, #F97316);
    color: #ffffff;
}

.luxbrand-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(245, 158, 11, 0.35);
}

.luxbrand-btn--ghost {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.luxbrand-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.08);
}

.luxbrand-btn--light {
    background: #ffffff;
    color: #F59E0B;
}

.luxbrand-btn--light:hover {
    background: #F3F4F6;
}

.luxbrand-stats {
    background: #ffffff;
    border-bottom: 1px solid #E5E7EB;
    padding: 36px 0;
}

.luxbrand-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.luxbrand-stats__value {
    font-size: 30px;
    font-weight: 700;
    color: #0A1628;
}

.luxbrand-stats__label {
    color: #6B7280;
    font-size: 14px;
}

.luxbrand-section__header {
    text-align: center;
    margin-bottom: 40px;
}

.luxbrand-section__header span {
    display: block;
    color: #F59E0B;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.luxbrand-section__header h2 {
    font-size: 32px;
    color: #0A1628;
}

.luxbrand-section__header--light h2 {
    color: #ffffff;
}

.luxbrand-philosophy {
    background: #F8FAFC;
    padding: 80px 0;
}

.luxbrand-philosophy__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.luxbrand-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid #E5E7EB;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
}

.luxbrand-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #FFF7ED;
    color: #F59E0B;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 18px;
}

.luxbrand-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #0A1628;
}

.luxbrand-card p {
    color: #6B7280;
    font-size: 14px;
}

.luxbrand-collections {
    padding: 80px 0;
    background: #ffffff;
}

.luxbrand-collections__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.luxbrand-collections__card {
    position: relative;
    border-radius: 20px;
    padding: 28px;
    min-height: 300px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    background-image: var(--luxbrand-bg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.luxbrand-collections__card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.1) 0%, rgba(10, 22, 40, 0.85) 100%);
}

.luxbrand-collections__card>* {
    position: relative;
    z-index: 1;
}

.luxbrand-collections__meta {
    color: #FBBF24;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.luxbrand-collections__card h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.luxbrand-collections__card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.luxbrand-designers {
    padding: 70px 0;
    background: #0A1628;
    color: #ffffff;
}

.luxbrand-designers__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.luxbrand-designer {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 16px 24px;
    text-align: left;
    min-width: 170px;
}

.luxbrand-designer__name {
    font-weight: 600;
    color: #ffffff;
}

.luxbrand-designer__meta {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-top: 4px;
}

.luxbrand-cta {
    background: linear-gradient(135deg, #F59E0B, #F97316);
    color: #ffffff;
    padding: 70px 0;
    text-align: center;
}

.luxbrand-cta__content {
    max-width: 720px;
}

.luxbrand-cta h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.luxbrand-cta p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .luxbrand-hero {
        padding: 120px 0 90px;
    }

    .luxbrand-hero__title {
        font-size: 40px;
    }

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

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

@media (max-width: 768px) {
    .luxbrand-hero__title {
        font-size: 34px;
    }

    .luxbrand-hero__actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .luxbrand-collections__grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .luxbrand-hero__title {
        font-size: 28px;
    }

    .luxbrand-stats__grid {
        grid-template-columns: 1fr;
    }

    .luxbrand-philosophy__grid {
        grid-template-columns: 1fr;
    }
}

/* --- INDIVIDUAL PRODUCTION PAGE --- */
.individual-page {
    background: #ffffff;
}

.individual-hero {
    position: relative;
    padding: 120px 0 100px;
    background: #0A1628;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.individual-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url(\"https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1920&q=80\");
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.individual-hero::after {
    content: \"\";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.9) 0%, rgba(10, 22, 40, 0.95) 100%);
}

.individual-hero__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.individual-hero__eyebrow {
    display: inline-block;
    font-size: 12px;
    color: #2563EB;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
}

.individual-hero h1 {
    font-size: 44px;
    margin-bottom: 16px;
}

.individual-hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
}

.individual-featured {
    padding: 80px 0;
    background: #ffffff;
}

.individual-featured__highlight {
    position: relative;
    border-radius: 24px;
    padding: 36px;
    background: #111827;
    color: #ffffff;
    margin-bottom: 32px;
    overflow: hidden;
}

.individual-featured__highlight::after {
    content: \"\";
    position: absolute;
    inset: 0;
    background-image: url(\"https://images.unsplash.com/photo-1513506003901-1e6a229e2d15?w=1600&q=80\");
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.individual-featured__badge {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #F59E0B, #F97316);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.individual-featured__body {
    position: relative;
    z-index: 1;
    max-width: 520px;
}

.individual-featured__body h2 {
    font-size: 26px;
    margin-bottom: 12px;
}

.individual-featured__body p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.individual-featured__body a {
    color: #FBBF24;
    font-weight: 600;
    text-decoration: none;
}

.individual-featured__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.individual-card {
    background: #F8FAFC;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
}

.individual-card__image {
    height: 190px;
    background-size: cover;
    background-position: center;
}

.individual-card__content {
    padding: 20px 22px 24px;
}

.individual-card__content span {
    font-size: 12px;
    color: #2563EB;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.individual-card__content h3 {
    margin: 8px 0;
    font-size: 20px;
    color: #0A1628;
}

.individual-card__content p {
    font-size: 14px;
    color: #6B7280;
}

.individual-lines {
    background: #ffffff;
    padding: 80px 0;
}

.individual-section__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 30px;
}

.individual-section__header span {
    display: block;
    color: #2563EB;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.individual-section__header h2 {
    font-size: 30px;
}

.individual-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid #0A1628;
    color: #0A1628;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

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

.individual-line {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.06);
}

.individual-line__image {
    height: 160px;
    background-size: cover;
    background-position: center;
}

.individual-line__body {
    padding: 18px;
}

.individual-line__body span {
    color: #2563EB;
    font-size: 11px;
    font-weight: 600;
}

.individual-line__body h3 {
    margin: 8px 0 12px;
    font-size: 18px;
}

.individual-line__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.individual-line__tags span {
    background: #F3F4F6;
    color: #6B7280;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 999px;
}

.individual-cta {
    background: #0A1628;
    color: #ffffff;
    text-align: center;
    padding: 70px 0;
}

.individual-cta h2 {
    font-size: 30px;
    margin-bottom: 12px;
}

.individual-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .individual-lines__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .individual-featured__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .individual-section__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .individual-hero h1 {
        font-size: 34px;
    }

    .individual-stats__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .individual-lines__grid {
        grid-template-columns: 1fr;
    }
}

/* --- DESIGN PAGE --- */
.design-page {
    background: #ffffff;
}

.design-hero {
    position: relative;
    padding: 120px 0 100px;
    background: #0A1628;
    color: #ffffff;
    overflow: hidden;
}

.design-hero__bg {
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1920&q=80");
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.design-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.85) 55%, rgba(10, 22, 40, 0.2) 100%);
}

.design-hero__content {
    position: relative;
    z-index: 1;
    max-width: 80rem;
    margin: 0 auto;
}

.design-hero__crumbs {
    display: flex;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.design-hero__crumbs a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.design-hero__icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
}

.design-hero h1 {
    font-size: 46px;
    margin-bottom: 14px;
}

.design-hero__subtitle {
    color: #2563EB;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.design-hero__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    max-width: 600px;
}

.design-label {
    display: inline-block;
    color: #2563EB;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
}

.design-scope {
    padding: 80px 0;
    background: #ffffff;
}

.design-scope__grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 40px 20px;
}

@media (max-width: 680px) {
    .design-scope__grid {
        flex-direction: column;
        align-items: center;
    }
}

.design-scope h2 {
    font-size: 32px;
    margin-bottom: 18px;
}

.design-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #6B7280;
}

.design-list li {
    position: relative;
    padding-left: 24px;
}

.design-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid #2563EB;
}

.design-scope__aside {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.design-box {
    background: #F8FAFC;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid #E5E7EB;
}

.design-box h3 {
    margin-bottom: 16px;
    font-size: 18px;
}

.design-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.design-chips span {
    background: #ffffff;
    border: 1px solid #E5E7EB;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    color: #6B7280;
}

.design-deliverables {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #6B7280;
    font-size: 14px;
}

.design-deliverables li {
    position: relative;
    padding-left: 16px;
}

.design-deliverables li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2563EB;
}

.design-related {
    padding: 60px 0;
    background: #F8FAFC;
    text-align: center;
}

.design-related__header h2 {
    font-size: 30px;
}

.design-related__chips {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.design-related__chips a {
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    color: #0A1628;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    background: #ffffff;
}

.design-projects {
    padding: 80px 0;
    background: #ffffff;
}

.design-projects__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 24px;
}

.design-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid #0A1628;
    color: #0A1628;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
}

.design-projects__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.design-project {
    border-radius: 20px;
    min-height: 200px;
    padding: 24px;
    display: flex;
    align-items: flex-end;
    color: #ffffff;
    text-decoration: none;
    background-image: url("https://images.unsplash.com/photo-1512453979798-5ea266f8880c?w=800&q=80");
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.design-project:last-child {
    background-image: url("https://images.unsplash.com/photo-1525625293386-3f8f99389edd?w=800&q=80");
}

.design-project::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.1) 0%, rgba(10, 22, 40, 0.85) 100%);
}

.design-project span {
    position: relative;
    z-index: 1;
    font-size: 18px;
    font-weight: 700;
}

.design-cta {
    padding: 70px 0;
    background: #0A1628;
    text-align: center;
    color: #ffffff;
}

.design-cta h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.design-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .design-scope__grid {
        grid-template-columns: 1fr;
    }

    .design-projects__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .design-hero h1 {
        font-size: 34px;
    }

    .design-projects__header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .design-hero {
        padding: 100px 0 80px;
    }
}

/* --- LOGISTICS PAGE --- */
.logistics-page {
    background: #ffffff;
    color: #0A1628;
}

.logistics {
    background: #ffffff;
}

.logistics-hero {
    position: relative;
    padding: 120px 0;
    background: #0A1628;
    color: #ffffff;
    overflow: hidden;
}

.logistics-hero__media {
    position: absolute;
    inset: 0;
}

.logistics-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.logistics-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #0A1628 0%, rgba(10, 22, 40, 0.9) 55%, rgba(10, 22, 40, 0) 100%);
}

.logistics-hero__content {
    position: relative;
    z-index: 2;
    max-width: 75rem;
    margin: 0 auto;
}

.logistics-hero__crumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.logistics-hero__crumb-link:hover {
    color: #ffffff;
}

.logistics-hero__crumb-sep {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.logistics-hero__crumb-current {
    color: #ffffff;
}

.logistics-hero__icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 26px;
}

.logistics-hero__title {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 12px;
}

.logistics-hero__subtitle {
    color: #3B82F6;
    font-weight: 600;
    margin-bottom: 12px;
}

.logistics-hero__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.6;
    max-width: 600px;
}

.logistics-scope {
    padding: 80px 0;
}

.logistics-scope__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 60px;
}

.logistics-scope__label {
    display: inline-block;
    color: #2563EB;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.logistics-scope__title {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0A1628;
}

.logistics-scope__list {
    display: grid;
    gap: 14px;
}

.logistics-scope__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #4B5563;
    font-size: 16px;
}

.logistics-scope__icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563EB;
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.logistics-scope__cards {
    display: grid;
    gap: 20px;
}

.logistics-scope__card {
    background: #FAFAFA;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #E5E7EB;
}

.logistics-scope__card-title {
    font-size: 18px;
    margin-bottom: 16px;
    color: #0A1628;
}

.logistics-scope__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.logistics-scope__tag {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid #E5E7EB;
    background: #ffffff;
    color: #4B5563;
    font-size: 14px;
}

.logistics-scope__deliverables {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    color: #4B5563;
    font-size: 14px;
}

.logistics-scope__deliverables li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logistics-scope__deliverables li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2563EB;
    display: inline-block;
}

.logistics-apply {
    padding: 70px 0;
    background: #FAFAFA;
    text-align: center;
}

.logistics-apply__label {
    display: inline-block;
    color: #2563EB;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.logistics-apply__title {
    font-size: 30px;
    color: #0A1628;
    margin-bottom: 20px;
}

.logistics-apply__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 12px;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    color: #0A1628;
    font-weight: 600;
}

.logistics-apply__link:hover {
    border-color: #2563EB;
    color: #2563EB;
}

.logistics-projects {
    padding: 80px 0;
}

.logistics-projects__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 30px;
}

.logistics-projects__label {
    display: inline-block;
    color: #2563EB;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.logistics-projects__title {
    font-size: 30px;
    color: #0A1628;
}

.logistics-projects__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 10px;
    border: 1px solid #0A1628;
    color: #0A1628;
    font-weight: 600;
}

.logistics-projects__cta:hover {
    background: #0A1628;
    color: #ffffff;
}

.logistics-projects__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.logistics-projects__card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    height: 260px;
}

.logistics-projects__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.logistics-projects__card:hover img {
    transform: scale(1.08);
}

.logistics-projects__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0) 0%, rgba(10, 22, 40, 0.8) 100%);
}

.logistics-projects__name {
    position: absolute;
    left: 24px;
    bottom: 20px;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.logistics-cta {
    background: #0A1628;
    padding: 80px 0;
    text-align: center;
    color: #ffffff;
}

.logistics-cta__title {
    font-size: 34px;
    margin-bottom: 16px;
}

.logistics-cta__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    margin-bottom: 24px;
}

.logistics-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 14px;
    background: #2563EB;
    color: #ffffff;
    font-weight: 600;
}

.logistics-cta__button:hover {
    background: #1D4ED8;
}

@media (max-width: 1024px) {
    .logistics-scope__grid {
        grid-template-columns: 1fr;
    }

    .logistics-projects__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .logistics-hero {
        padding: 90px 0;
    }

    .logistics-hero__title {
        font-size: 38px;
    }

    .logistics-projects__header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .logistics-hero__title {
        font-size: 32px;
    }

    .logistics-cta__title {
        font-size: 28px;
    }
}

/* --- CHARITY PAGE --- */
.charity-page {
    background: #ffffff;
    color: #0A1628;
}

.charity {
    background: #ffffff;
}

.charity-hero {
    position: relative;
    padding: 100px 0;
    background: #0A1628;
    color: #ffffff;
    overflow: hidden;
}

.charity-hero__media {
    position: absolute;
    inset: 0;
}

.charity-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.charity-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #0A1628 0%, rgba(10, 22, 40, 0.85) 60%, #0A1628 100%);
}

.charity-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
}

.charity-hero__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    border-radius: 14px;
    background: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
}

.charity-hero__icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.charity-hero__title {
    font-size: 42px;
    margin-bottom: 16px;
}

.charity-hero__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.6;
}

.charity-filters {
    padding: 20px 0;
    background: #ffffff;
    border-bottom: 1px solid #E5E7EB;
    position: sticky;
    top: 80px;
    z-index: 30;
}

.charity-filters__row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.charity-filters__row svg {
    width: 18px;
    height: 18px;
    color: #94A3B8;
}

.charity-filters__button {
    padding: 8px 16px;
    border-radius: 999px;
    border: none;
    background: #F3F4F6;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.charity-filters__button:hover {
    background: #E5E7EB;
}

.charity-filters__button--active {
    background: #0A1628;
    color: #ffffff;
}

.charity-grid {
    padding: 70px 0;
    background: #FAFAFA;
}

.charity-grid__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.charity-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.charity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(10, 22, 40, 0.15);
}

.charity-card__media {
    position: relative;
    height: 220px;
}

.charity-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.charity-card__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0) 0%, rgba(10, 22, 40, 0.75) 100%);
}

.charity-card__tag,
.charity-card__status {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: lowercase;
    background: #ef4444;
    color: #ffffff;
    z-index: 1;
}

.charity-card__status {
    left: auto;
    right: 16px;
    background: #22c55e;
    text-transform: none;
}

.charity-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.charity-card__title {
    font-size: 20px;
    color: #0A1628;
}

.charity-card__text {
    color: #64748B;
    font-size: 14px;
    line-height: 1.6;
}

.charity-card__progress {
    display: grid;
    gap: 10px;
}

.charity-card__bar {
    background: #e5e7eb;
    border-radius: 999px;
    height: 8px;
    overflow: hidden;
}

.charity-card__bar span {
    display: block;
    height: 100%;
    background: #000;
}

.charity-card__meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #94A3B8;
}

.charity-card__meta strong {
    color: #0A1628;
}

.charity-card__cta {
    margin-top: auto;
    color: #ef4444;
    font-weight: 600;
    font-size: 13px;
}

.charity-stats {
    padding: 70px 0;
    background: #0A1628;
    color: #ffffff;
}

.charity-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.charity-stats__value {
    font-size: 32px;
    font-weight: 700;
    color: #ef4444;
    margin-bottom: 6px;
}

.charity-stats__label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

@media (max-width: 1024px) {
    .charity-grid__list {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 768px) {
    .charity-hero {
        padding: 80px 0;
    }

    .charity-hero__title {
        font-size: 34px;
    }

    .charity-grid__list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .charity-hero__title {
        font-size: 28px;
    }

    .charity-filters__row {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }

    .charity-filters__button {
        flex: 0 0 auto;
    }
}

/* --- CHARITY DETAIL --- */
.charity-detail-page {
    background: #ffffff;
    color: #0A1628;
}

.charity-detail-hero {
    position: relative;
    min-height: 520px;
    color: #ffffff;
    overflow: hidden;
}

.charity-detail-hero__media {
    position: absolute;
    inset: 0;
}

.charity-detail-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.charity-detail-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.5) 50%, rgba(10, 22, 40, 0.95) 100%);
}

.charity-detail-hero__content {
    position: relative;
    z-index: 1;
    padding: 140px 0 60px;
}

.charity-detail-hero__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.charity-detail-hero__breadcrumbs a {
    color: inherit;
}

.charity-detail-hero__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.charity-tag {
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: lowercase;
    background: #ef4444;
    color: #ffffff;
}

.charity-tag--status {
    background: #22c55e;
    text-transform: none;
}

.charity-detail-hero__title {
    font-size: 44px;
    margin-bottom: 12px;
    max-width: 760px;
}

.charity-detail-hero__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.charity-detail__body {
    padding: 70px 0;
    background: #ffffff;
}

.charity-detail__grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.charity-detail__content h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.charity-detail__content p {
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 18px;
}

.charity-detail__progress {
    background: #FAFAFA;
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 24px;
}

.charity-detail__progress h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.charity-detail__bar {
    background: #e5e7eb;
    border-radius: 999px;
    height: 10px;
    overflow: hidden;
    margin-bottom: 14px;
}

.charity-detail__bar span {
    display: block;
    height: 100%;
    background: #000;
}

.charity-detail__progress-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
}

.charity-detail__progress-meta strong {
    display: block;
    font-size: 26px;
    color: #0A1628;
}

.charity-detail__progress-meta span {
    font-size: 13px;
    color: #94A3B8;
}

.charity-detail__sidebar {
    position: sticky;
    top: 110px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.charity-detail__card {
    background: #FAFAFA;
    border-radius: 18px;
    padding: 22px;
}

.charity-detail__card h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.charity-detail__input,
.charity-detail__textarea {
    width: 100%;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    margin-bottom: 12px;
}

.charity-detail__textarea {
    resize: vertical;
    min-height: 90px;
}

.charity-detail__button {
    width: 100%;
    border: none;
    background: #ef4444;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
}

.charity-detail__button:hover {
    background: #dc2626;
}

.charity-detail__donate-text {
    color: #64748B;
    font-size: 14px;
    margin-bottom: 14px;
    line-height: 1.6;
}

.charity-detail__button--donate {
    background: #dc2626;
}

.charity-detail__button--donate:hover {
    background: #b91c1c;
}

.donation-modal {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: none;
}

.donation-modal.is-open {
    display: block;
}

.donation-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.72);
}

.donation-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(620px, calc(100% - 28px));
    margin: 22px auto;
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 26px 56px rgba(15, 23, 42, 0.35);
}

.donation-modal__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #475569;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.donation-modal__title {
    margin: 0 36px 14px 0;
    color: #0F172A;
    font-size: 34px;
    line-height: 1.2;
}

.donation-modal__bank {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
}

.donation-modal__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #F8FAFC;
}

.donation-modal__row span {
    color: #6B7280;
    font-size: 14px;
}

.donation-modal__row strong {
    color: #334155;
    font-size: 14px;
}

.donation-modal__form {
    border-top: 1px solid #E2E8F0;
    padding-top: 14px;
}

.donation-modal__form h4 {
    margin: 0 0 12px;
    color: #334155;
    font-size: 20px;
}

.donation-modal__input {
    width: 100%;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    margin-bottom: 10px;
}

.donation-modal__submit {
    width: 100%;
    border: none;
    background: #ef4444;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
}

.donation-modal__submit:hover {
    background: #dc2626;
}

.donation-modal__dialog--success {
    text-align: center;
    max-width: 680px;
    padding: 26px 24px 24px;
}

.donation-modal__success-icon {
    width: 96px;
    height: 96px;
    margin: 6px auto 18px;
    border-radius: 999px;
    background: #D1FAE5;
    color: #16A34A;
    font-size: 56px;
    line-height: 96px;
    font-weight: 700;
}

.donation-modal__success-text {
    margin: 10px 0 0;
    color: #4B5563;
    font-size: 18px;
    line-height: 1.55;
}

.donation-modal__submit--close {
    margin-top: 18px;
    background: #2563EB;
}

.donation-modal__submit--close:hover {
    background: #1D4ED8;
}

/* BLOG DETAIL */
.blog-detail-page {
    background: #ffffff;
}

.blog-detail-hero {
    position: relative;
    padding: 96px 0 72px;
    background: #0a1628;
    overflow: hidden;
}

.blog-detail-hero__media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.blog-detail-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.blog-detail-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0.95) 0%, rgba(10, 22, 40, 0.85) 50%, rgba(10, 22, 40, 0.98) 100%);
}

.blog-detail-hero__content {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.blog-detail-hero__breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 20px;
}

.blog-detail-hero__breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.blog-detail-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.2);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.blog-detail-hero__title {
    color: #ffffff;
    font-size: clamp(32px, 4vw, 54px);
    margin: 0 0 18px;
    font-weight: 700;
    line-height: 1.15;
}

.blog-detail-hero__subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 18px;
    margin-bottom: 28px;
}

.blog-detail-hero__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    color: rgba(255, 255, 255, 0.7);
}

.blog-detail-hero__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.blog-detail-hero__author img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-detail-hero__author-name {
    font-weight: 600;
    color: #ffffff;
}

.blog-detail-hero__author-role {
    font-size: 13px;
}

.blog-detail-hero__stats {
    display: flex;
    gap: 18px;
    font-size: 14px;
}

.blog-detail-body {
    padding: 72px 0;
    background: #ffffff;
}

.blog-detail-body__wrap {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 48px;
    align-items: start;
}

.blog-detail-content {
    color: #1f2937;
    line-height: 1.75;
    font-size: 17px;
}

.blog-detail-content h2 {
    margin: 28px 0 14px;
    font-size: 24px;
    color: #0a1628;
}

.blog-detail-content ul {
    padding-left: 20px;
    margin: 16px 0 24px;
}

.blog-detail-content li {
    margin-bottom: 10px;
}

.blog-detail-aside {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 96px;
}

.blog-detail-share {
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 600;
}

.blog-detail-author {
    background: #f8fafc;
    border-radius: 16px;
    padding: 22px;
    display: flex;
    gap: 16px;
}

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

.blog-detail-author h3 {
    margin: 0 0 6px;
    color: #0a1628;
}

.blog-detail-author__role {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 8px;
}

@media (max-width: 960px) {
    .blog-detail-body__wrap {
        grid-template-columns: 1fr;
    }

    .blog-detail-aside {
        position: static;
    }
}

.charity-detail__list {
    display: grid;
    gap: 10px;
    font-size: 14px;
    color: #475569;
}

.charity-detail__list span {
    color: #0A1628;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .charity-detail__grid {
        grid-template-columns: 1fr;
    }

    .charity-detail__sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .charity-detail-hero__content {
        padding: 110px 0 50px;
    }

    .charity-detail-hero__title {
        font-size: 34px;
    }
}

/* --- BLOG PAGE --- */
.blog-page {
    background: #ffffff;
    color: #0A1628;
}

.blog {
    background: #ffffff;
}

.blog-hero {
    position: relative;
    padding: 90px 0;
    background: #0A1628;
    color: #ffffff;
    overflow: hidden;
}

.blog-hero__media {
    position: absolute;
    inset: 0;
}

.blog-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.blog-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #0A1628 0%, rgba(10, 22, 40, 0.85) 60%, #0A1628 100%);
}

.blog-hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 760px;
}


.blog-hero__breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.blog-hero__breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
}

.blog-hero__crumb-sep {
    font-size: 10px;
    opacity: 0.8;
}

.blog-hero__crumb-current {
    color: #ffffff;
    font-weight: 600;
}

.blog-hero__label {
    display: inline-block;
    color: #2563EB;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.blog-hero__title {
    font-size: 42px;
    margin-bottom: 18px;
}

.blog-hero__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.6;
}

.blog-filters {
    padding: 18px 0;
    border-bottom: 1px solid #E5E7EB;
    background: #ffffff;
    position: sticky;
    top: 80px;
    z-index: 30;
}

.blog-filters__row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-filters__row svg {
    width: 18px;
    height: 18px;
    color: #94A3B8;
}

.blog-filters__button {
    padding: 8px 16px;
    border-radius: 999px;
    border: none;
    background: #F3F4F6;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.blog-filters__button:hover {
    background: #E5E7EB;
}

.blog-filters__button--active {
    background: #0A1628;
    color: #ffffff;
}

.blog-feature {
    padding: 60px 0 30px;
    background: #ffffff;
}

.blog-feature__card {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    background: #FAFAFA;
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-feature__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(10, 22, 40, 0.12);
}

.blog-feature__media {
    position: relative;
    min-height: 320px;
}

.blog-feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-feature__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #2563EB;
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.blog-feature__body {
    padding: 32px 32px 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
}

.blog-feature__tag {
    color: #2563EB;
    font-weight: 600;
    font-size: 13px;
    text-transform: lowercase;
}

.blog-feature__title {
    font-size: 28px;
    color: #0A1628;
}

.blog-feature__text {
    font-size: 16px;
    color: #64748B;
    line-height: 1.6;
}

.blog-feature__meta {
    display: flex;
    gap: 20px;
    font-size: 14px;
    color: #94A3B8;
}

.blog-feature__meta i {
    margin-right: 8px;
}

.blog-feature__cta {
    color: #2563EB;
    font-weight: 600;
    font-size: 14px;
}

.blog-grid {
    padding: 30px 0 80px;
    background: #FAFAFA;
}

.blog-grid__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(10, 22, 40, 0.12);
}

.blog-card__media {
    position: relative;
    height: 220px;
}

.blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(37, 99, 235, 0.9);
    color: #ffffff;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: lowercase;
}

.blog-card__body {
    padding: 20px;
    display: grid;
    gap: 12px;
}

.blog-card__title {
    font-size: 18px;
    color: #0A1628;
    line-height: 1.4;
}

.blog-card__text {
    color: #64748B;
    font-size: 14px;
    line-height: 1.6;
}

.blog-card__meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #94A3B8;
}

.blog-card__meta i {
    margin-right: 6px;
}

@media (max-width: 1024px) {
    .blog-feature__card {
        grid-template-columns: 1fr;
    }

    .blog-feature__media {
        min-height: 260px;
    }

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

@media (max-width: 768px) {
    .blog-hero {
        padding: 70px 0;
    }

    .blog-hero__title {
        font-size: 32px;
    }

    .blog-grid__list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .blog-hero__title {
        font-size: 26px;
    }

    .blog-filters__row {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 8px;
    }

    .blog-filters__button {
        flex: 0 0 auto;
    }
}

/* --- DIODUS PAGE --- */
.diodus-page {
    background: #ffffff;
    color: #0A1628;
}

.diodus {
    background: #ffffff;
}

.diodus-hero {
    position: relative;
    padding: 120px 0;
    background: #0A1628;
    color: #ffffff;
    overflow: hidden;
}

.diodus-hero__media {
    position: absolute;
    inset: 0;
}

.diodus-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.diodus-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #0A1628 0%, rgba(10, 22, 40, 0.85) 55%, rgba(10, 22, 40, 0) 100%);
}

.diodus-hero__glow {
    position: absolute;
    top: 80px;
    right: 80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.3), rgba(249, 115, 22, 0));
    filter: blur(20px);
}

.diodus-hero__content {
    position: relative;
    z-index: 2;

}

.diodus-hero__brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}


.diodus-hero__logo {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: #AC7388;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
}

.diodus-hero__name {
    font-size: 34px;
    font-weight: 700;
}

.diodus-hero__title {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 18px;
}

.diodus-hero__title span {
    background: #C73888;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.animAA {
    transition: transform 0.3s ease;
}

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

.diodus-hero__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 700px;
}

.diodus-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.diodus-hero__primary,
.diodus-hero__secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 14px;
    font-weight: 600;
}

.diodus-hero__primary {
    background: #AC7388;
    color: #ffffff;
}

.diodus-hero__primary:hover {
    filter: brightness(0.95);
}

.diodus-hero__secondary {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    background: transparent;
}

.diodus-hero__secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.diodus-stats {
    padding: 60px 0;
    border-bottom: 1px solid #E5E7EB;
    background: #ffffff;
}

.diodus-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.diodus-stats__value {
    font-size: 32px;
    font-weight: 700;
    color: #0A1628;
}

.diodus-stats__label {
    color: #64748B;
    font-size: 14px;
}

.diodus-why {
    padding: 80px 0;
    background: #FAFAFA;
}

.diodus-why__header {
    text-align: center;
    margin-bottom: 40px;
}

.diodus-why__eyebrow {
    display: inline-block;
    color: #f59e0b;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.diodus-why__title {
    font-size: 32px;
    color: #0A1628;
}

.diodus-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.diodus-why__card {
    background: #ffffff;
    padding: 24px;
    border-radius: 18px;
    display: grid;
    gap: 12px;
    box-shadow: 0 10px 24px rgba(10, 22, 40, 0.08);
}

.diodus-why__icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
    font-size: 20px;
}

.diodus-why__card h3 {
    font-size: 18px;
    color: #0A1628;
}

.diodus-why__card p {
    color: #64748B;
    font-size: 14px;
}

.diodus-lines {
    padding: 80px 0;
    background: #ffffff;
}

.diodus-lines__header {
    text-align: center;
    margin-bottom: 40px;
}

.diodus-lines__eyebrow {
    display: inline-block;
    color: #f59e0b;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.diodus-lines__title {
    font-size: 32px;
    color: #0A1628;
}

.diodus-lines__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.diodus-lines__card {
    background: #FAFAFA;
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.diodus-lines__media {
    height: 220px;
    background: #ffffff;
}

.diodus-lines__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.diodus-lines__body {
    padding: 20px;
    display: grid;
    gap: 10px;
}

.diodus-lines__body h3 {
    font-size: 20px;
    color: #0A1628;
}

.diodus-lines__body p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.5;
}

.diodus-lines__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.diodus-lines__tags span {
    background: rgba(245, 158, 11, 0.15);
    color: #b45309;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 999px;
}

.diodus-cert {
    padding: 70px 0;
    background: #0A1628;
    color: #ffffff;
}

.diodus-cert__header {
    text-align: center;
    margin-bottom: 32px;
}

.diodus-cert__eyebrow {
    display: inline-block;
    color: #f59e0b;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.diodus-cert__title {
    font-size: 30px;
}

.diodus-cert__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: center;
}

.diodus-cert__card {
    margin: 0;
    width: min(280px, 100%);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 10px;
}

.diodus-cert__image {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: contain;
    border-radius: 10px;
    background: #ffffff;
}

.diodus-cert__badge {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
}

@media (max-width: 768px) {
    .diodus-cert__card {
        width: 100%;
        max-width: 360px;
    }

    .diodus-cert__image {
        height: 260px;
    }
}

.diodus-cta {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    padding: 70px 0;
    color: #ffffff;
}

.diodus-cta__content {
    text-align: center;
    max-width: 680px;
}

.diodus-cta__content h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.diodus-cta__content p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.diodus-cta__button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 14px;
    background: #ffffff;
    color: #b45309;
    font-weight: 700;
}

.diodus-cta__button:hover {
    background: #fef3c7;
}

@media (max-width: 1024px) {

    .diodus-stats__grid,
    .diodus-why__grid,
    .diodus-lines__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .diodus-hero {
        padding: 90px 0;
    }

    .diodus-hero__title {
        font-size: 36px;
    }

    .diodus-why__grid,
    .diodus-lines__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .diodus-hero__title {
        font-size: 30px;
    }

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

/* --- PROJECT DETAIL PAGE --- */
.project-detail-page {
    background: #ffffff;
    color: #0A1628;
}

.project-detail__hero {
    position: relative;
    min-height: 520px;
    height: 70vh;
    background: #0A1628;
    color: #ffffff;
    overflow: hidden;
}

.project-detail__hero-media {
    position: absolute;
    inset: 0;
}

.project-detail__hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-detail__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 22, 40, 0) 0%, rgba(10, 22, 40, 0.55) 40%, #0A1628 100%);
}

.project-detail__hero-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding-bottom: 48px;
    z-index: 2;
}

.project-detail__crumbs {
    display: flex;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 12px;
}

.project-detail__crumbs a:hover {
    color: #ffffff;
}

.project-detail__badge {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: #2563EB;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.project-detail__hero-content h1 {
    font-size: 44px;
    margin-bottom: 18px;
}

.project-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

.project-detail__meta i {
    margin-right: 8px;
}

.project-detail__overview {
    padding: 80px 0;
    background: #ffffff;
}

.project-detail__overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 36px;
}

.project-detail__overview h2 {
    font-size: 28px;
    margin-bottom: 16px;
}

.project-detail__overview h3 {
    font-size: 20px;
    margin: 24px 0 12px;
}

.project-detail__overview p {
    color: #64748B;
    font-size: 16px;
    line-height: 1.7;

}

.project-detail__overview p:last-child {
    padding-top: 40px;
}

.project-detail__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    color: #64748B;
}

.project-detail__list li {
    position: relative;
    padding-left: 24px;
}

.project-detail__list li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #2563EB;
    position: absolute;
    left: 0;
    top: 6px;
}

.project-detail__card {
    background: #FAFAFA;
    border-radius: 18px;
    padding: 24px;
}

.project-detail__details {
    display: grid;
    gap: 16px;
}

.project-detail__details span {
    display: block;
    color: #94A3B8;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.project-detail__details strong {
    color: #0A1628;
    font-weight: 600;
}

.project-detail__solutions {
    padding: 70px 0;
    background: #FAFAFA;
}

.project-detail__solutions h2 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 28px;
}

.project-detail__solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.project-detail__solution {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 10px 24px rgba(10, 22, 40, 0.08);
}

.project-detail__solution-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #2563EB;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 12px;
}

.project-detail__solution h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.project-detail__solution p {
    color: #64748B;
    font-size: 14px;
}

.project-detail__results {
    padding: 70px 0;
    background: #0A1628;
    color: #ffffff;
}

.project-detail__results h2 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 28px;
}

.project-detail__results-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.project-detail__result-value {
    font-size: 36px;
    font-weight: 700;
    color: #2563EB;
    text-align: center;
    margin-bottom: 6px;
}

.project-detail__result-label {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.project-detail__gallery {
    padding: 70px 0;
    background: #ffffff;
}

.project-detail__gallery h2 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 28px;
}

.project-detail__gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 180px);
    gap: 12px;
}

.project-detail__gallery-main {
    grid-column: span 2;
    grid-row: span 2;
    border-radius: 16px;
    overflow: hidden;
}

.project-detail__gallery-item {
    border-radius: 16px;
    overflow: hidden;
}

.project-detail__gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-detail__gallery-grid img:hover {
    transform: scale(1.05);
}

.project-detail__testimonial {
    padding: 70px 0;
    background: #ffffff;
}

.project-detail__testimonial h2 {
    text-align: center;
    margin-bottom: 32px;
    font-size: 28px;
}

.project-detail__testimonial-card {
    background: #FAFAFA;
    border-radius: 20px;
    padding: 32px;
    max-width: 920px;
    margin: 0 auto;
    position: relative;
}

.project-detail__stars {
    color: #f59e0b;
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.project-detail__testimonial-card p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 16px;
}

.project-detail__author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #E2E8F0;
}

.project-detail__author img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.project-detail__author-name {
    font-weight: 700;
    color: #0A1628;
}

.project-detail__author-role {
    color: #64748B;
    font-size: 14px;
}

.project-detail__author-company {
    color: #94A3B8;
    font-size: 12px;
}

.project-detail__cta {
    padding: 70px 0;
    background: #FAFAFA;
    text-align: center;
}

.project-detail__cta h2 {
    font-size: 30px;
    margin-bottom: 12px;
}

.project-detail__cta p {
    color: #64748B;
    margin-bottom: 20px;
}

.project-detail__cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 14px;
    background: #2563EB;
    color: #ffffff;
    font-weight: 600;
}

.project-detail__cta-button:hover {
    background: #1D4ED8;
}

@media (max-width: 1024px) {
    .project-detail__overview-grid {
        grid-template-columns: 1fr;
    }

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

    .project-detail__gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 180px);
    }

    .project-detail__gallery-main {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .project-detail__hero-content h1 {
        font-size: 34px;
    }

    .project-detail__solutions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .project-detail__hero {
        min-height: 420px;
    }

    .project-detail__hero-content h1 {
        font-size: 28px;
    }

    .project-detail__gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .project-detail__gallery-main,
    .project-detail__gallery-item {
        height: 200px;
    }
}

.projects-card--link {
    display: block;
    color: inherit;
}

.projects-card--link:hover {
    color: inherit;
}

/* --- Tailwind-lite utilities for homepage extra sections --- */
.max-w-7xl {
    max-width: 80rem;
}

.max-w-2xl {
    max-width: 42rem;
}

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

.px-6 {
    padding-left: 24px;
    padding-right: 24px;
}

.px-4 {
    padding-left: 16px;
    padding-right: 16px;
}

.px-8 {
    padding-left: 32px;
    padding-right: 32px;
}

.py-2 {
    padding-top: 8px;
    padding-bottom: 8px;
}

.py-24 {
    padding-top: 96px;
    padding-bottom: 96px;
}

.p-4 {
    padding: 16px;
}

.p-5 {
    padding: 20px;
}

.p-6 {
    padding: 24px;
}

.p-8 {
    padding: 32px;
}

.mb-1 {
    margin-bottom: 4px;
}

.mb-2 {
    margin-bottom: 8px;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-6 {
    margin-bottom: 24px;
}

.mb-8 {
    margin-bottom: 32px;
}

.mb-12 {
    margin-bottom: 48px;
}

.mb-16 {
    margin-bottom: 64px;
}

.mt-16 {
    margin-top: 64px;
}

.pt-6 {
    padding-top: 24px;
}

.pt-16 {
    padding-top: 64px;
}

.gap-2 {
    gap: 8px;
}

.gap-3 {
    gap: 12px;
}

.gap-4 {
    gap: 16px;
}

.gap-6 {
    gap: 24px;
}

.gap-8 {
    gap: 32px;
}

.gap-12 {
    gap: 48px;
}

.gap-16 {
    gap: 64px;
}

.grid {
    display: grid;
}

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

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

.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

.flex-col {
    flex-direction: column;
}

.flex-wrap {
    flex-wrap: wrap;
}

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

.items-start {
    align-items: flex-start;
}

.justify-between {
    justify-content: space-between;
}

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

.text-xs {
    font-size: 12px;
    line-height: 1.4;
}

.text-sm {
    font-size: 14px;
    line-height: 1.5;
}

.text-lg {
    font-size: 18px;
    line-height: 1.6;
}

.text-2xl {
    font-size: 24px;
    line-height: 1.3;
}

.text-3xl {
    font-size: 30px;
    line-height: 1.2;
}

.text-4xl {
    font-size: 36px;
    line-height: 1.2;
}

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

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.leading-relaxed {
    line-height: 1.7;
}

.text-white {
    color: #ffffff;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-700 {
    color: #374151;
}

.text-amber-400 {
    color: #fbbf24;
}

.text-amber-600 {
    color: #d97706;
}

.text-red-500 {
    color: #ef4444;
}

.text-\[\#0A1628\] {
    color: #0A1628;
}

.text-\[\#2563EB\] {
    color: #2563EB;
}

.bg-white {
    background-color: #ffffff;
}

.bg-\[\#FAFAFA\] {
    background-color: #FAFAFA;
}

.bg-\[\#0A1628\] {
    background-color: #0A1628;
}

.bg-red-500 {
    background-color: #ef4444;
}

.bg-amber-50 {
    background-color: #fffbeb;
}

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

.bg-primary\/20 {
    background-color: rgba(37, 99, 235, 0.2);
}

.rounded-2xl {
    border-radius: 24px;
}

.rounded-xl {
    border-radius: 16px;
}

.rounded-lg {
    border-radius: 12px;
}

.rounded-md {
    border-radius: 6px;
}

.rounded-full {
    border-radius: 9999px;
}

.overflow-hidden {
    overflow: hidden;
}

.object-cover {
    object-fit: cover;
}

.shadow {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.bg-background {
    background-color: #ffffff;
}

.border {
    border: 1px solid var(--border);
}

.border-t {
    border-top: 1px solid var(--border);
}

.border-gray-200 {
    border-color: #e5e7eb;
}

.border-\[\#0A1628\] {
    border-color: #0A1628;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.top-4 {
    top: 16px;
}

.left-4 {
    left: 16px;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.w-12 {
    width: 48px;
}

.h-12 {
    height: 48px;
}

.w-8 {
    width: 32px;
}

.h-8 {
    height: 32px;
}

.w-4 {
    width: 16px;
}

.h-4 {
    height: 16px;
}

.w-14 {
    width: 56px;
}

.h-14 {
    height: 56px;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.h-48 {
    height: 192px;
}

.h-64 {
    height: 256px;
}

.h-9 {
    height: 36px;
}

.transition-transform {
    transition: transform 0.5s ease;
}

.transition-colors {
    transition: color 0.3s ease, background-color 0.3s ease;
}

.duration-500 {
    transition-duration: 0.5s;
}

.duration-700 {
    transition-duration: 0.7s;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

.group:hover .group-hover\:translate-x-1 {
    transform: translateX(4px);
}

.group:hover .group-hover\:text-red-500 {
    color: #ef4444;
}

.hover\:bg-primary\/90:hover {
    background-color: rgba(37, 99, 235, 0.9);
}

.hover\:from-amber-600:hover {
    --tw-gradient-from: #d97706;
    --tw-gradient-to: rgba(217, 119, 6, 0);
}

.hover\:to-orange-600:hover {
    --tw-gradient-to: #ea580c;
}

.hover\:bg-\[\#0A1628\]:hover {
    background-color: #0A1628;
}

.hover\:text-white:hover {
    color: #ffffff;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);
}

/* Gradient utilities */
.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-from), var(--tw-gradient-to));
}

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-from), var(--tw-gradient-to));
}

.bg-gradient-to-t {
    background-image: linear-gradient(to top, var(--tw-gradient-from), var(--tw-gradient-to));
}

.from-amber-400 {
    --tw-gradient-from: #fbbf24;
    --tw-gradient-to: rgba(251, 191, 36, 0);
}

.from-amber-500 {
    --tw-gradient-from: #f59e0b;
    --tw-gradient-to: rgba(245, 158, 11, 0);
}

.from-amber-600 {
    --tw-gradient-from: #d97706;
    --tw-gradient-to: rgba(217, 119, 6, 0);
}

.to-orange-500 {
    --tw-gradient-to: #f97316;
}

.to-orange-600 {
    --tw-gradient-to: #ea580c;
}

.from-\[\#0A1628\]\/80 {
    --tw-gradient-from: rgba(10, 22, 40, 0.8);
    --tw-gradient-to: rgba(10, 22, 40, 0);
}

.from-\[\#0A1628\]\/60 {
    --tw-gradient-from: rgba(10, 22, 40, 0.6);
    --tw-gradient-to: rgba(10, 22, 40, 0);
}

.to-transparent {
    --tw-gradient-to: transparent;
}

@media (min-width: 768px) {
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .md\:text-4xl {
        font-size: 36px;
        line-height: 1.2;
    }

    .md\:text-5xl {
        font-size: 48px;
        line-height: 1.1;
    }

    .md\:gap-8 {
        gap: 32px;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lg\:flex-row {
        flex-direction: row;
    }

    .lg\:items-end {
        align-items: flex-end;
    }

    .lg\:justify-between {
        justify-content: space-between;
    }
}

@media (max-width: 768px) {

    .about-hero .container,
    .contact-hero__content,
    .blog-hero__content,
    .charity-hero__content,
    .design-hero__content,
    .light-hero__content,
    .luxbrand-hero__content,
    .diodus-hero__content,
    .logistics-hero__content,
    .projects-hero__content,
    .project-detail__hero-content,
    .charity-detail-hero__content,
    .blog-detail-hero__content,
    .partner-hero .container {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero__title,
    .about-hero__text,
    .contact-hero__title,
    .contact-hero__text,
    .blog-hero__title,
    .blog-hero__text,
    .charity-hero__title,
    .charity-hero__text,
    .design-hero__title,
    .design-hero__text,
    .light-hero__title,
    .light-hero__text,
    .luxbrand-hero__title,
    .luxbrand-hero__text,
    .diodus-hero__title,
    .diodus-hero__text,
    .logistics-hero__title,
    .logistics-hero__text,
    .projects-hero__title,
    .projects-hero__text,
    .partner-hero h1,
    .partner-hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero__breadcrumbs,
    .contact-hero__breadcrumbs,
    .blog-hero__breadcrumbs,
    .light-hero__breadcrumbs,
    .design-hero__crumbs,
    .logistics-hero__crumbs,
    .project-detail__crumbs,
    .charity-detail-hero__breadcrumbs,
    .blog-detail-hero__breadcrumbs,
    .partner-hero__crumbs {
        justify-content: center;
    }

    .diodus-hero__actions,
    .projects-hero__actions,
    .blog-detail-hero__meta,
    .charity-detail-hero__meta {
        justify-content: center;
    }
}

/* ===================================
   Project Gallery Lightbox (projects/*)
   =================================== */
.gallery-item-clickable {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item-clickable:hover {
    transform: scale(1.02);
}

.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.gallery-modal.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-modal__content {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.gallery-modal__caption {
    color: #fff;
    font-size: 18px;
    padding: 20px;
    text-align: center;
    margin-top: 15px;
}

.gallery-modal__close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.gallery-modal__close:hover {
    color: #bbb;
}

.gallery-modal__prev,
.gallery-modal__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #f1f1f1;
    cursor: pointer;
    user-select: none;
    padding: 15px 20px;
    transition: color 0.3s ease;
}

.gallery-modal__prev:hover,
.gallery-modal__next:hover {
    color: #bbb;
}

.gallery-modal__prev {
    left: 20px;
}

.gallery-modal__next {
    right: 20px;
}

@media (max-width: 768px) {
    .gallery-modal__close {
        top: 15px;
        right: 20px;
        font-size: 30px;
    }

    .gallery-modal__prev,
    .gallery-modal__next {
        font-size: 24px;
        padding: 10px 15px;
    }

    .gallery-modal__prev {
        left: 10px;
    }

    .gallery-modal__next {
        right: 10px;
    }
}

.diodus-cert-modification {
    background: white;
}

.diodus-cert__title-modification {
    color: black;
}

.diodus-cert__eyebrow-modification {
    color: var(--primary);
}