/* ============================================================
   We Serve — Master CSS
   Dark Petroleum Theme
   ============================================================ */

:root {
    --we-bg:          #050d1a;
    --we-bg-2:        #091526;
    --we-bg-3:        #0d1e35;
    --we-bg-card:     #0d1e35;
    --we-bg-card-h:   #112645;

    --we-gold:        #e8a020;
    --we-gold-rgb:    232, 160, 32;
    --we-gold-light:  #f0b840;
    --we-gold-dark:   #c48010;

    --we-orange:      #d45c15;
    --we-orange-rgb:  212, 92, 21;

    --we-teal:        #1a8a7e;

    --we-text:        #ccd8e8;
    --we-text-light:  #e0eaf5;
    --we-text-muted:  #6a85a0;

    --we-border:      #1a2f4a;
    --we-border-2:    #253a52;

    --we-radius:      12px;
    --we-radius-lg:   20px;
    --we-radius-xl:   28px;

    --we-transition:  all 0.3s ease;
    --we-shadow:      0 8px 32px rgba(0, 0, 0, 0.45);
    --we-shadow-gold: 0 4px 24px rgba(232, 160, 32, 0.28);
}

/* ===================== BASE ===================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--we-bg);
    color: var(--we-text);
    overflow-x: hidden;
    line-height: 1.8;
}

::-webkit-scrollbar              { width: 7px; }
::-webkit-scrollbar-track        { background: var(--we-bg-2); }
::-webkit-scrollbar-thumb        { background: var(--we-gold-dark); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover  { background: var(--we-gold); }

/* ===================== TYPOGRAPHY ===================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cairo', sans-serif;
    color: var(--we-text-light);
    font-weight: 700;
    line-height: 1.4;
}

a {
    color: var(--we-gold);
    text-decoration: none;
    transition: var(--we-transition);
}
a:hover { color: var(--we-gold-light); }

img { max-width: 100%; }

/* ===================== BUTTONS ===================== */
.we-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--we-gold), var(--we-orange));
    border: none;
    color: #050d1a;
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    border-radius: var(--we-radius);
    padding: 0.65rem 1.75rem;
    transition: var(--we-transition);
    box-shadow: 0 4px 15px rgba(232, 160, 32, 0.3);
    cursor: pointer;
}
.we-btn-primary:hover, .we-btn-primary:focus {
    transform: translateY(-2px);
    box-shadow: var(--we-shadow-gold);
    color: #050d1a;
    background: linear-gradient(135deg, var(--we-gold-light), var(--we-gold));
}

.we-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid var(--we-gold);
    color: var(--we-gold);
    font-weight: 700;
    font-family: 'Cairo', sans-serif;
    border-radius: var(--we-radius);
    padding: 0.6rem 1.75rem;
    transition: var(--we-transition);
    cursor: pointer;
}
.we-btn-outline:hover, .we-btn-outline:focus {
    background: var(--we-gold);
    color: #050d1a;
    transform: translateY(-2px);
}

/* ===================== SECTION COMMONS ===================== */
.we-section { padding: 90px 0; }

.we-section-badge {
    display: inline-block;
    background: rgba(232, 160, 32, 0.1);
    border: 1px solid rgba(232, 160, 32, 0.3);
    color: var(--we-gold);
    padding: 0.28rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 0.9rem;
}

.we-section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--we-text-light);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.we-section-title span { color: var(--we-gold); }

.we-section-subtitle {
    font-size: 1.05rem;
    color: var(--we-text-muted);
    max-width: 600px;
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.we-section-header { text-align: center; margin-bottom: 3.5rem; }

/* ===================== DIVIDER ===================== */
.we-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--we-gold), var(--we-orange));
    border-radius: 2px;
    margin: 0.9rem auto 1.5rem;
}
.we-divider--right { margin-right: 0; margin-left: 0; }

/* ===================== CTA — Simple (used in services page) ===================== */
.we-cta {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}
.we-cta__bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, #0a1628 0%, #112035 50%, #0a1628 100%);
    z-index: 0;
}
.we-cta__shape { position: absolute; border-radius: 50%; opacity: 0.06; }
.we-cta__shape--1 { width: 500px; height: 500px; background: var(--we-gold); top: -200px; right: -100px; }
.we-cta__shape--2 { width: 350px; height: 350px; background: var(--we-orange); bottom: -150px; left: -80px; }
.we-cta .container { position: relative; z-index: 1; }
.we-cta__icon { font-size: 3rem; color: var(--we-gold); display: block; margin-bottom: 1.25rem; animation: we-pulse 2.5s ease-in-out infinite; }
.we-cta__title { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; color: var(--we-text-light); margin-bottom: 1rem; }
.we-cta__text { font-size: 1.05rem; color: var(--we-text-muted); max-width: 580px; margin: 0 auto 2rem; line-height: 1.9; }
.we-cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===================== CTA V2 — Home page (image + split) ===================== */
.we-cta-v2 {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.we-cta-v2__img {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.we-cta-v2__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        105deg,
        rgba(5,13,26,0.97) 0%,
        rgba(5,13,26,0.88) 50%,
        rgba(5,13,26,0.75) 100%
    );
    z-index: 1;
}

.we-cta-v2 .container { position: relative; z-index: 2; }

/* ── Badge ── */
.we-cta-v2__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.3rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

/* ── Title ── */
.we-cta-v2__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 1.25rem;
}
.we-cta-v2__title span {
    display: block;
    background: linear-gradient(135deg, var(--we-gold), var(--we-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Text ── */
.we-cta-v2__text {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.9;
    margin-bottom: 2rem;
    max-width: 520px;
}

/* ── Actions ── */
.we-cta-v2__actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.we-cta-v2__tel {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}
.we-cta-v2__tel i { color: var(--we-gold); font-size: 1.1rem; }
.we-cta-v2__tel:hover { color: var(--we-gold); }

/* ── Info cards ── */
.we-cta-v2__cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.we-cta-v2__card {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 1.1rem 1.4rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.we-cta-v2__card:hover {
    background: rgba(232,160,32,0.08);
    border-color: rgba(232,160,32,0.25);
    transform: translateX(-6px);
}

.we-cta-v2__card-icon {
    width: 46px; height: 46px;
    border-radius: 12px;
    background: rgba(232,160,32,0.12);
    border: 1px solid rgba(232,160,32,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: var(--we-gold);
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.we-cta-v2__card:hover .we-cta-v2__card-icon {
    background: var(--we-gold);
    color: #050d1a;
}

.we-cta-v2__card-body strong {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--we-text-light);
    line-height: 1.3;
}
.we-cta-v2__card-body span {
    font-size: 0.75rem;
    color: var(--we-text-muted);
}

@media (max-width: 991px) {
    .we-cta-v2 { padding: 70px 0; }
    .we-cta-v2__cards { flex-direction: row; flex-wrap: wrap; }
    .we-cta-v2__card { flex: 1 1 calc(50% - 0.5rem); }
}

/* ===================== ALERT ===================== */
.we-alert-success {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(26, 138, 126, 0.12);
    border: 1px solid rgba(26, 138, 126, 0.35);
    color: #4ecdc4;
    border-radius: var(--we-radius);
    padding: 0.85rem 1.2rem;
    margin-bottom: 1.5rem;
}

/* ===================== LAYOUT SPACING ===================== */
/* The slider/hero takes full viewport, inner pages need top padding via breadcrumb */
main { padding-top: 0; }

/* ===================== ANIMATIONS ===================== */
@keyframes we-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.1); opacity: 0.8; }
}

@keyframes we-float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-15px); }
}

@keyframes we-spin-slow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

@keyframes we-fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes we-blink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}
