/* ============================================================
   We Serve — Home Page (index) CSS
   ============================================================ */

/* ===================== VIDEO SECTION ===================== */
.we-video {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* Background */
.we-video__bg {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 50% 0%, #0d1f38 0%, #050d1a 65%);
    z-index: 0;
}
.we-video__bg-glow {
    position: absolute; border-radius: 50%;
    filter: blur(100px); pointer-events: none;
}
.we-video__bg-glow--1 {
    width: 600px; height: 300px;
    background: rgba(232,160,32,0.06);
    top: -100px; left: 50%; transform: translateX(-50%);
}
.we-video__bg-glow--2 {
    width: 400px; height: 400px;
    background: rgba(212,92,21,0.04);
    bottom: -150px; right: 5%;
}
.we-video .container { position: relative; z-index: 1; }

/* Header */
.we-video__header { text-align: center; margin-bottom: 3rem; }

.we-video__title {
    font-size: clamp(1.8rem,3.5vw,2.6rem);
    font-weight: 900; color: var(--we-text-light);
    margin: 0.75rem 0 0.85rem; line-height: 1.3;
}
.we-video__title span { color: var(--we-gold); }

.we-video__subtitle {
    font-size: 1rem; color: var(--we-text-muted);
    max-width: 560px; margin: 0 auto; line-height: 1.85;
}

/* Cinema frame */
.we-video__frame {
    position: relative;
    max-width: 920px;
    margin: 0 auto 3rem;
    border-radius: 22px;
}

/* Outer glow ring */
.we-video__glow-ring {
    position: absolute;
    inset: -3px;
    border-radius: 25px;
    background: linear-gradient(135deg,
        rgba(232,160,32,0.5) 0%,
        rgba(212,92,21,0.3) 25%,
        transparent 50%,
        rgba(232,160,32,0.2) 75%,
        rgba(212,92,21,0.4) 100%
    );
    animation: we-spin-slow 8s linear infinite;
    z-index: 0;
}

/* Gold corner brackets */
.we-video__corner {
    position: absolute;
    width: 28px; height: 28px;
    z-index: 3;
    pointer-events: none;
}
.we-video__corner--tl { top: -1px;  right: -1px; border-top: 3px solid var(--we-gold);  border-right: 3px solid var(--we-gold);  border-radius: 0 6px 0 0; }
.we-video__corner--tr { top: -1px;  left: -1px;  border-top: 3px solid var(--we-gold);  border-left: 3px solid var(--we-gold);   border-radius: 6px 0 0 0; }
.we-video__corner--bl { bottom: -1px; right: -1px; border-bottom: 3px solid var(--we-gold); border-right: 3px solid var(--we-gold); border-radius: 0 0 0 6px; }
.we-video__corner--br { bottom: -1px; left: -1px;  border-bottom: 3px solid var(--we-gold); border-left: 3px solid var(--we-gold);  border-radius: 0 0 6px 0; }

/* Iframe 16:9 */
.we-video__wrap {
    position: relative;
    z-index: 1;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 20px;
    background: #000;
    box-shadow:
        0 0  0   3px rgba(232,160,32,0.12),
        0 30px 80px rgba(0,0,0,0.6),
        0 0  60px rgba(232,160,32,0.08);
}
.we-video__wrap iframe,
.we-video__wrap video {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: none;
    display: block;
    object-fit: cover;
}

/* Stats row */
.we-video__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    background: rgba(13,30,53,0.55);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 1.5rem 2rem;
    max-width: 720px;
    margin: 0 auto;
    backdrop-filter: blur(8px);
}

.we-video__stat {
    flex: 1;
    text-align: center;
    min-width: 120px;
}
.we-video__stat strong {
    display: block;
    font-size: 1.9rem; font-weight: 900;
    background: linear-gradient(135deg, var(--we-gold), var(--we-orange));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    line-height: 1.1; margin-bottom: 0.3rem;
}
.we-video__stat span {
    font-size: 0.78rem; color: var(--we-text-muted); font-weight: 500;
}

.we-video__stat-sep {
    width: 1px; height: 40px;
    background: var(--we-border);
    flex-shrink: 0;
}

@media (max-width: 575px) {
    .we-video { padding: 70px 0; }
    .we-video__stat-sep { display: none; }
    .we-video__stats { gap: 1rem; }
    .we-video__stat { min-width: calc(50% - 0.5rem); }
}

/* ===================== HERO SLIDER ===================== */
.we-slider {
    position: relative;
    overflow: hidden;
}

.we-slider__carousel,
.we-slider__inner,
.we-slider__item {
    height: 100vh;
    min-height: 600px;
}

/* ======= Image ======= */
.we-slider__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    transform: scale(1.06);
    transition: transform 8s ease;
}
.we-slider__item.active .we-slider__img {
    transform: scale(1);
}

/* ======= Dark overlay ======= */
.we-slider__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(5, 13, 26, 0.88) 0%,
        rgba(5, 13, 26, 0.65) 55%,
        rgba(5, 13, 26, 0.25) 100%
    );
    z-index: 1;
}

/* ======= Content ======= */
.we-slider__content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding-top: 2rem;
}

.we-slider__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232, 160, 32, 0.15);
    border: 1px solid rgba(232, 160, 32, 0.4);
    color: var(--we-gold);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}
.we-slider__item.active .we-slider__badge {
    opacity: 1;
    transform: translateY(0);
}

.we-slider__title {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease 0.35s, transform 0.7s ease 0.35s;
}
.we-slider__item.active .we-slider__title {
    opacity: 1;
    transform: translateY(0);
}
.we-slider__title span {
    color: var(--we-gold);
    position: relative;
}

.we-slider__text {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    max-width: 520px;
    line-height: 1.9;
    margin-bottom: 2.2rem;
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
}
.we-slider__item.active .we-slider__text {
    opacity: 1;
    transform: translateY(0);
}

.we-slider__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease 0.65s, transform 0.7s ease 0.65s;
}
.we-slider__item.active .we-slider__actions {
    opacity: 1;
    transform: translateY(0);
}

/* ======= Custom Arrows ======= */
.we-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    background: rgba(5, 13, 26, 0.5);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}
.we-slider__arrow:hover {
    background: var(--we-gold);
    border-color: var(--we-gold);
    color: #050d1a;
    transform: translateY(-50%) scale(1.08);
}
.we-slider__arrow--prev { right: 2rem; }
.we-slider__arrow--next { left: 2rem; }

@media (max-width: 575px) {
    .we-slider__arrow--prev { right: 1rem; }
    .we-slider__arrow--next { left: 1rem; }
    .we-slider__arrow { width: 42px; height: 42px; font-size: 0.9rem; }
}

/* ======= Dots ======= */
.we-slider__dots {
    bottom: 2.5rem;
    right: 50%;
    transform: translateX(50%);
    gap: 0.5rem;
    z-index: 10;
}

.we-slider__dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.35) !important;
    border: none !important;
    opacity: 1 !important;
    transition: all 0.35s ease !important;
    padding: 0 !important;
}
.we-slider__dot.active {
    background: var(--we-gold) !important;
    width: 28px !important;
    border-radius: 4px !important;
    box-shadow: 0 0 8px rgba(232,160,32,0.5) !important;
}

/* ======= Progress bar ======= */
.we-slider__progress {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--we-gold), var(--we-orange));
    z-index: 10;
    width: 0%;
    transition: width linear;
}

/* ======= Scroll indicator ======= */
.we-slider__scroll {
    position: absolute;
    bottom: 2.2rem;
    left: 2.5rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    text-decoration: none;
    transition: color 0.25s;
}
.we-slider__scroll:hover { color: var(--we-gold); }
.we-slider__scroll span {
    display: block;
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.4));
    animation: we-scroll-line 2s ease-in-out infinite;
}
@keyframes we-scroll-line {
    0%   { transform: scaleY(0); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: top; }
    51%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}
.we-slider__scroll i { animation: we-bounce 2s ease-in-out infinite; font-size: 0.9rem; }
@keyframes we-bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(6px); }
}

/* ======= Slide counter ======= */
.we-slider__counter {
    position: absolute;
    bottom: 2.2rem;
    right: 2.5rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    font-weight: 700;
}
#weSlideCurrentNum { color: var(--we-gold); font-size: 1.2rem; font-weight: 900; }
.we-slider__counter-sep {
    width: 30px; height: 1px;
    background: rgba(255,255,255,0.3);
}

@media (max-width: 767px) {
    .we-slider__scroll { display: none; }
    .we-slider__counter { display: none; }
}

.we-hero__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.12;
    z-index: 0;
}
.we-hero__shape--1 {
    width: 600px; height: 600px;
    background: var(--we-gold);
    top: -200px; right: -150px;
    animation: we-float 8s ease-in-out infinite;
}
.we-hero__shape--2 {
    width: 400px; height: 400px;
    background: var(--we-orange);
    bottom: -150px; left: 100px;
    animation: we-float 10s ease-in-out infinite reverse;
}
.we-hero__shape--3 {
    width: 300px; height: 300px;
    background: var(--we-teal);
    top: 30%; left: 40%;
    animation: we-float 12s ease-in-out infinite;
}

.we-hero .container { position: relative; z-index: 1; }

/* ======= Hero Content ======= */
.we-hero__content { animation: we-fade-up 0.9s ease both; }

.we-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232, 160, 32, 0.1);
    border: 1px solid rgba(232, 160, 32, 0.3);
    color: var(--we-gold);
    padding: 0.35rem 1.1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.we-hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--we-text-light);
    line-height: 1.25;
    margin-bottom: 1.25rem;
}
.we-hero__title--accent {
    color: var(--we-gold);
    position: relative;
}
.we-hero__title--accent::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--we-gold), var(--we-orange));
    border-radius: 2px;
}

.we-hero__text {
    font-size: 1.1rem;
    color: var(--we-text-muted);
    max-width: 540px;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.we-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.we-hero__trust {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}
.we-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--we-text-muted);
    font-weight: 500;
}
.we-hero__trust-item i { color: var(--we-gold); }

/* ======= Hero Visual (CSS Oil Rig) ======= */
.we-hero__visual {
    position: relative;
    width: 300px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: we-float 6s ease-in-out infinite;
}

.we-hero__rig {
    position: relative;
    width: 220px;
    height: 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}

.we-hero__rig-top {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(232,160,32,0.2), rgba(232,160,32,0.05));
    border: 2px solid rgba(232,160,32,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--we-gold);
    position: absolute;
    top: 0;
    z-index: 2;
    animation: we-pulse 3s ease-in-out infinite;
}

.we-hero__rig-body {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    height: 220px;
    position: absolute;
    top: 60px;
}

.we-hero__rig-bar {
    width: 12px;
    border-radius: 4px;
    background: linear-gradient(to top, var(--we-gold-dark), var(--we-gold));
    opacity: 0.7;
}
.we-hero__rig-bar:nth-child(1) { height: 220px; }
.we-hero__rig-bar:nth-child(2) { height: 180px; }
.we-hero__rig-bar:nth-child(3) { height: 220px; }

.we-hero__rig-base {
    width: 160px;
    height: 20px;
    background: linear-gradient(90deg, var(--we-gold-dark), var(--we-gold), var(--we-gold-dark));
    border-radius: 6px;
    opacity: 0.8;
    position: absolute;
    bottom: 0;
}

.we-hero__pulse {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(232, 160, 32, 0.15);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: we-ripple 3s linear infinite;
}
.we-hero__pulse--2 {
    width: 280px;
    height: 280px;
    animation-delay: 1.5s;
}

@keyframes we-ripple {
    0%   { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}

/* ======= Scroll indicator ======= */
.we-hero__scroll {
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 42px;
    background: rgba(232, 160, 32, 0.1);
    border: 1px solid rgba(232, 160, 32, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--we-gold);
    font-size: 1rem;
    z-index: 1;
    animation: we-bounce 2s ease-in-out infinite;
    text-decoration: none;
}
@keyframes we-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ===================== ACHIEVEMENTS ===================== */
.we-ach {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* ── Background ── */
.we-ach__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, #0c1e38 0%, #050d1a 70%);
    z-index: 0;
}

.we-ach__bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}
.we-ach__bg-glow--1 {
    width: 480px; height: 480px;
    background: rgba(232, 160, 32, 0.07);
    top: -120px; left: -80px;
}
.we-ach__bg-glow--2 {
    width: 380px; height: 380px;
    background: rgba(212, 92, 21, 0.06);
    bottom: -100px; right: -60px;
}

.we-ach__bg-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(5rem, 14vw, 11rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.018);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 0.04em;
    user-select: none;
}

/* ── Header label row ── */
.we-ach__header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}
.we-ach__header-line {
    flex: 1;
    max-width: 140px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(232,160,32,0.35));
}
.we-ach__header-line:last-child {
    background: linear-gradient(270deg, transparent, rgba(232,160,32,0.35));
}

/* ── Card ── */
.we-ach-card {
    position: relative;
    z-index: 1;
    background: rgba(13, 30, 53, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 28px;
    padding: 2.5rem 1.5rem 2rem;
    text-align: center;
    transition: transform 0.38s cubic-bezier(.4,0,.2,1),
                border-color 0.38s ease,
                box-shadow 0.38s ease;
    backdrop-filter: blur(8px);
    overflow: hidden;
}

.we-ach-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(232,160,32,0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.38s ease;
}

.we-ach-card:hover {
    transform: translateY(-14px);
    border-color: rgba(232, 160, 32, 0.28);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(232, 160, 32, 0.08);
}
.we-ach-card:hover::before { opacity: 1; }

/* ── Rotating Ring ── */
.we-ach-card__ring {
    position: relative;
    width: 92px; height: 92px;
    margin: 0 auto 1.75rem;
}

/* Outer conic spinner */
.we-ach-card__ring::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    animation: we-spin-slow 7s linear infinite;
    z-index: 0;
}

/* Mask to fill center */
.we-ach-card__ring::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 50%;
    background: #0c1e38;
    z-index: 1;
}

.we-ach-card__ring--gold::before  {
    background: conic-gradient(#e8a020 0deg, #d45c15 90deg, rgba(255,255,255,0.05) 180deg, rgba(255,255,255,0) 360deg);
}
.we-ach-card__ring--orange::before {
    background: conic-gradient(#d45c15 0deg, #e8a020 80deg, rgba(255,255,255,0.05) 160deg, rgba(255,255,255,0) 360deg);
}
.we-ach-card__ring--teal::before {
    background: conic-gradient(#1a8a7e 0deg, #2bc5b4 80deg, rgba(255,255,255,0.05) 160deg, rgba(255,255,255,0) 360deg);
}
.we-ach-card__ring--blue::before {
    background: conic-gradient(#2563eb 0deg, #60a5fa 80deg, rgba(255,255,255,0.05) 160deg, rgba(255,255,255,0) 360deg);
}

.we-ach-card__icon-wrap {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.75rem;
    transition: transform 0.35s ease;
}

.we-ach-card:hover .we-ach-card__icon-wrap { transform: scale(1.15); }

.we-ach-card__ring--gold  .we-ach-card__icon-wrap { color: var(--we-gold); }
.we-ach-card__ring--orange .we-ach-card__icon-wrap { color: var(--we-orange); }
.we-ach-card__ring--teal   .we-ach-card__icon-wrap { color: var(--we-teal); }
.we-ach-card__ring--blue   .we-ach-card__icon-wrap { color: #60a5fa; }

/* ── Number ── */
.we-ach-card__num-wrap {
    display: inline-flex;
    align-items: baseline;
    gap: 0.15rem;
    margin-bottom: 0.5rem;
}

.we-ach-card__num {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #f5c842 0%, #e8830c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.we-ach-card:hover .we-ach-card__num { transform: scale(1.06); }

.we-ach-card__unit {
    font-size: 1.4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #f5c842, #e8830c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

/* ── Label ── */
.we-ach-card__label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--we-text-muted);
    margin: 0 0 1.25rem;
    letter-spacing: 0.01em;
}

/* ── Bottom bar ── */
.we-ach-card__bar {
    width: 36px;
    height: 3px;
    border-radius: 2px;
    margin: 0 auto;
    background: linear-gradient(90deg, var(--we-gold), var(--we-orange));
    transition: width 0.38s cubic-bezier(.4,0,.2,1);
}
.we-ach-card:hover .we-ach-card__bar { width: 70%; }

/* ── counter (shared with master.js) ── */
.we-counter {
    display: inline-block;
}

/* ── Mobile ── */
@media (max-width: 575px) {
    .we-ach { padding: 70px 0; }
    .we-ach-card { padding: 1.75rem 1rem 1.5rem; border-radius: 20px; }
    .we-ach-card__ring { width: 72px; height: 72px; margin-bottom: 1.25rem; }
    .we-ach-card__icon-wrap { font-size: 1.4rem; }
    .we-ach__bg-text { display: none; }
}

/* ===================== ABOUT (HOME) ===================== */
.we-about {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
}

/* ── Ambient glow blobs ── */
.we-about__glow {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    z-index: 0;
}
.we-about__glow--r {
    background: rgba(232, 160, 32, 0.055);
    top: -150px; right: -100px;
}
.we-about__glow--l {
    background: rgba(26, 138, 126, 0.04);
    bottom: -150px; left: -100px;
}

.we-about .container { position: relative; z-index: 1; }

/* ── Visual side ── */
.we-about__visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dot grid */
.we-about__dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(232,160,32,0.07) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* Rings */
.we-about__ring {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}
.we-about__ring--1 {
    width: 160px; height: 160px;
    border: 2px solid rgba(232,160,32,0.35);
    box-shadow: 0 0 30px rgba(232,160,32,0.1), inset 0 0 30px rgba(232,160,32,0.05);
    animation: we-spin-slow 9s linear infinite;
}
.we-about__ring--2 {
    width: 270px; height: 270px;
    border: 1px dashed rgba(232,160,32,0.18);
    animation: we-spin-slow 16s linear infinite reverse;
}
.we-about__ring--3 {
    width: 390px; height: 390px;
    border: 1px solid rgba(232,160,32,0.07);
    animation: we-spin-slow 26s linear infinite;
}

/* Central oil drop */
.we-about__core {
    position: absolute;
    z-index: 3;
    width: 120px; height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #0f2040, #1a3560);
    box-shadow:
        0 0 0 1px rgba(232,160,32,0.25),
        0 0 50px rgba(232,160,32,0.12),
        0 20px 60px rgba(0,0,0,0.5);
    animation: we-float 6s ease-in-out infinite;
}
.we-about__core svg {
    width: 46px; height: 58px;
    filter: drop-shadow(0 4px 12px rgba(232,160,32,0.4));
}
.we-about__core-glow {
    position: absolute;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,160,32,0.12) 0%, transparent 70%);
    animation: we-pulse 3s ease-in-out infinite;
}

/* Floating chips */
.we-about__chip {
    position: absolute;
    z-index: 5;
    background: rgba(7, 16, 32, 0.82);
    border: 1px solid rgba(232,160,32,0.2);
    border-radius: 18px;
    padding: 0.75rem 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    backdrop-filter: blur(14px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.35);
    white-space: nowrap;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.we-about__chip:hover {
    border-color: rgba(232,160,32,0.5);
    box-shadow: 0 10px 35px rgba(0,0,0,0.45), 0 0 15px rgba(232,160,32,0.08);
}
.we-about__chip-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: rgba(232,160,32,0.12);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    color: var(--we-gold);
    flex-shrink: 0;
}
.we-about__chip strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 800;
    color: var(--we-text-light);
    line-height: 1.2;
}
.we-about__chip span {
    display: block;
    font-size: 0.68rem;
    color: var(--we-text-muted);
}

.we-about__chip--iso  { top: 10%;  right: 2%;  animation: we-float 5s ease-in-out infinite; }
.we-about__chip--hse  { bottom: 14%; right: 0%; animation: we-float 7s ease-in-out infinite 1s; }
.we-about__chip--year { top: 18%;  left: 2%;  animation: we-float 6s ease-in-out infinite 0.5s; }

/* ── Content side ── */
.we-about__content {}

.we-about__title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.22;
    color: var(--we-text-light);
    margin: 0.9rem 0 1.4rem;
}
.we-about__title span { color: var(--we-gold); }

.we-about__desc {
    font-size: 1rem;
    color: var(--we-text-muted);
    line-height: 1.95;
    margin-bottom: 2rem;
}
.we-about__desc strong { color: var(--we-gold); font-weight: 700; }

/* ── 2×2 Feature cards ── */
.we-about__feat {
    background: rgba(13, 28, 50, 0.55);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 18px;
    padding: 1.3rem 1.1rem;
    height: 100%;
    transition: all 0.32s ease;
    cursor: default;
}
.we-about__feat:hover {
    background: rgba(232,160,32,0.06);
    border-color: rgba(232,160,32,0.22);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.we-about__feat i {
    font-size: 1.5rem;
    color: var(--we-gold);
    display: block;
    margin-bottom: 0.6rem;
    transition: transform 0.32s ease;
}
.we-about__feat:hover i { transform: scale(1.18) rotate(-5deg); }

.we-about__feat strong {
    display: block;
    font-size: 0.97rem;
    font-weight: 800;
    color: var(--we-text-light);
    margin-bottom: 0.22rem;
    line-height: 1.3;
}
.we-about__feat span {
    font-size: 0.75rem;
    color: var(--we-text-muted);
}

/* ── Mobile ── */
@media (max-width: 991px) {
    .we-about { padding: 70px 0; }
}

/* ===================== SERVICES — FLIP CARDS ===================== */
.we-svc {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
.we-svc__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, var(--we-bg) 0%, #081422 50%, var(--we-bg) 100%);
    z-index: 0;
}
.we-svc .container { position: relative; z-index: 1; }

/* ── Flip wrapper ── */
.we-flip {
    perspective: 1100px;
    height: 380px;
}

.we-flip__inner {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.72s cubic-bezier(0.4, 0.2, 0.2, 1);
    border-radius: 22px;
}

.we-flip:hover .we-flip__inner {
    transform: rotateY(180deg);
}

/* ── Front face ── */
.we-flip__front,
.we-flip__back {
    position: absolute;
    inset: 0;
    border-radius: 22px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    overflow: hidden;
}

/* Front always non-interactive (no links); back gets events only when visible */
.we-flip__front                        { pointer-events: none; }
.we-flip__back                         { pointer-events: none; }
.we-flip:hover         .we-flip__back  { pointer-events: auto; }
.we-flip.is-flipped    .we-flip__back  { pointer-events: auto; }
.we-flip.is-flipped    .we-flip__front { pointer-events: none; }

.we-flip__front {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.we-flip__front-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(5,13,26,0.96) 0%,
        rgba(5,13,26,0.55) 45%,
        rgba(5,13,26,0.18) 100%
    );
    transition: background 0.4s ease;
}
.we-flip:hover .we-flip__front-overlay {
    background: rgba(5,13,26,0.65);
}

.we-flip__front-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.75rem;
    z-index: 1;
}

.we-flip__front-icon {
    width: 54px; height: 54px;
    background: rgba(232,160,32,0.15);
    border: 1px solid rgba(232,160,32,0.35);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    color: var(--we-gold);
    margin-bottom: 0.85rem;
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
}
.we-flip:hover .we-flip__front-icon {
    background: var(--we-gold);
    color: #050d1a;
}

.we-flip__front-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.5rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.we-flip__hint {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}
.we-flip__hint i { font-size: 0.8rem; animation: we-spin-slow 3s linear infinite; }

/* ── Back face ── */
.we-flip__back {
    transform: rotateY(180deg);
    background: linear-gradient(145deg, #0a1a30 0%, #102240 60%, #0d1e38 100%);
    border: 1px solid rgba(232,160,32,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.75rem;
    text-align: center;
    gap: 0.75rem;
}

/* Top gold accent line */
.we-flip__back::before {
    content: '';
    position: absolute;
    top: 0; left: 15%; right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--we-gold), var(--we-orange), transparent);
    border-radius: 0 0 4px 4px;
}

.we-flip__back-icon {
    width: 64px; height: 64px;
    background: linear-gradient(135deg, rgba(232,160,32,0.15), rgba(212,92,21,0.1));
    border: 1px solid rgba(232,160,32,0.3);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.65rem;
    color: var(--we-gold);
    box-shadow: 0 0 20px rgba(232,160,32,0.12);
}

.we-flip__back-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--we-text-light);
    margin: 0;
    line-height: 1.35;
}

.we-flip__back-text {
    font-size: 0.83rem;
    color: var(--we-text-muted);
    line-height: 1.85;
    margin: 0;
    flex: 1;
}

.we-flip__back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: linear-gradient(135deg, var(--we-gold), var(--we-orange));
    color: #050d1a;
    font-weight: 700;
    font-size: 0.85rem;
    font-family: 'Cairo', sans-serif;
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(232,160,32,0.3);
    margin-top: auto;
}
.we-flip__back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(232,160,32,0.45);
    color: #050d1a;
}
.we-flip__back-btn i { font-size: 1rem; }

/* ── Touch / Mobile: tap to flip ── */
.we-flip.is-flipped .we-flip__inner { transform: rotateY(180deg); }

@media (max-width: 767px) {
    .we-flip { height: 340px; }
    .we-flip__hint { display: none; }
}

/* ===================== PROJECTS — BENTO GRID ===================== */
.we-prjs { padding: 100px 0; }

/* ── Base card ── */
.we-prj {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    width: 100%;
}

/* heights */
.we-prj--lg  { height: 430px; }
.we-prj--md  { height: 207px; }
.we-prj--sm  { height: 270px; }
.we-prj--eq  { height: 400px; }

/* ── Overlay ── */
.we-prj__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(4, 11, 22, 0.97) 0%,
        rgba(4, 11, 22, 0.55) 50%,
        rgba(4, 11, 22, 0.18) 100%
    );
    transition: background 0.45s ease;
}
.we-prj:hover .we-prj__overlay {
    background: linear-gradient(
        to top,
        rgba(4, 11, 22, 1)    0%,
        rgba(4, 11, 22, 0.75) 55%,
        rgba(4, 11, 22, 0.35) 100%
    );
}

/* ── Watermark number ── */
.we-prj__num {
    position: absolute;
    top: 0.75rem;
    left: 1.25rem;
    font-size: clamp(4rem, 8vw, 6.5rem);
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,0.055);
    z-index: 2;
    pointer-events: none;
    user-select: none;
    letter-spacing: -0.03em;
    transition: color 0.4s ease;
}
.we-prj:hover .we-prj__num { color: rgba(255,255,255,0.09); }

/* ── Category tag ── */
.we-prj__tag {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    z-index: 3;
    padding: 0.25rem 0.85rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.we-prj__tag--drill  { background: rgba(232,160,32,0.18); border: 1px solid rgba(232,160,32,0.4); color: #f5c842; }
.we-prj__tag--pipe   { background: rgba(26,138,126,0.18); border: 1px solid rgba(26,138,126,0.4); color: #2bc5b4; }
.we-prj__tag--proc   { background: rgba(212,92,21,0.18);  border: 1px solid rgba(212,92,21,0.4);  color: #e88030; }
.we-prj__tag--energy { background: rgba(108,92,231,0.18); border: 1px solid rgba(108,92,231,0.4); color: #a29bfe; }

/* ── Body (always visible) ── */
.we-prj__body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 1.4rem 1.5rem;
    z-index: 3;
}

.we-prj__title {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.55rem;
    line-height: 1.35;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    transition: transform 0.35s ease;
}
.we-prj--lg .we-prj__title { font-size: 1.25rem; }
.we-prj:hover .we-prj__title { transform: translateY(-2px); }

.we-prj__meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    transition: margin-bottom 0.4s ease;
}
.we-prj:hover .we-prj__meta { margin-bottom: 0.75rem; }

.we-prj__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.45);
    font-weight: 500;
}
.we-prj__meta i { color: var(--we-gold); font-size: 0.7rem; }

/* ── Hover reveal ── */
.we-prj__reveal {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.48s cubic-bezier(.4,0,.2,1),
                opacity 0.35s ease 0.05s;
}
.we-prj:hover .we-prj__reveal {
    max-height: 130px;
    opacity: 1;
}

.we-prj__desc {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.58);
    line-height: 1.7;
    margin: 0 0 0.75rem;
}

.we-prj__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    background: linear-gradient(135deg, var(--we-gold), var(--we-orange));
    color: #050d1a;
    font-weight: 700;
    font-size: 0.78rem;
    font-family: 'Cairo', sans-serif;
    padding: 0.38rem 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 14px rgba(232,160,32,0.35);
}
.we-prj:hover .we-prj__btn { transform: translateX(-3px); }
.we-prj__btn i { font-size: 1.1rem; }

/* ── Gold accent line on hover ── */
.we-prj::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--we-gold), var(--we-orange));
    z-index: 4;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}
.we-prj:hover::before { transform: scaleX(1); }

/* ── md height fix: each card fills 50% of featured height ── */
@media (min-width: 992px) {
    .col-lg-6 > .row > [class*="col"] { flex: 0 0 50%; max-width: 50%; }
    .we-prj--md { height: calc((430px - 0.75rem) / 2); }
}

@media (max-width: 991px) {
    .we-prj--lg, .we-prj--md { height: 300px; }
    .we-prj--sm  { height: 240px; }
    .we-prj--eq  { height: 300px; }
}

/* ===================== WHY US ===================== */
.we-whyus {
    position: relative;
    overflow: hidden;
}
.we-whyus__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, #0d2035 0%, var(--we-bg) 70%);
    z-index: 0;
}
.we-whyus .container { position: relative; z-index: 1; }

.we-whyus__card {
    background: var(--we-bg-card);
    border: 1px solid var(--we-border);
    border-radius: var(--we-radius-lg);
    padding: 1.75rem;
    height: 100%;
    transition: var(--we-transition);
}
.we-whyus__card:hover {
    transform: translateY(-5px);
    border-color: var(--we-border-2);
    box-shadow: var(--we-shadow);
}

.we-whyus__card--gold {
    border-color: rgba(232, 160, 32, 0.25);
    background: linear-gradient(135deg, var(--we-bg-card), #112040);
}

.we-whyus__card-icon {
    width: 52px;
    height: 52px;
    background: rgba(232, 160, 32, 0.1);
    border-radius: var(--we-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: var(--we-gold);
    margin-bottom: 1rem;
    transition: var(--we-transition);
}
.we-whyus__card:hover .we-whyus__card-icon {
    background: var(--we-gold);
    color: #050d1a;
}

.we-whyus__card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--we-text-light);
    margin-bottom: 0.5rem;
}

.we-whyus__card-text {
    font-size: 0.85rem;
    color: var(--we-text-muted);
    line-height: 1.8;
    margin: 0;
}
