/*
Theme Name: Work Aura
Author: Work Aura Team
Version: 5.0
*/

/* =========================
   GLOBAL RESET
========================= */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background: #f8fafc;
    color: #0f172a;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

/* =========================
   HEADER + NAVBAR (SINGLE SOURCE)
========================= */

.navbar {
    background: linear-gradient(135deg, #2563eb, #10b981);
    padding: 14px 0;
    border: none;
}

.navbar .container {
    max-width: 1200px;
}

/* LOGO — LOCKED SIZE */
.navbar-brand img {
    height: 180px !important;
    width: auto !important;
    max-height: none !important;
}

/* MENU PILL */
.navbar-nav {
    background: linear-gradient(135deg, #2563eb, #10b981);
    border-radius: 999px;
    padding: 6px;
    gap: 6px;
}

/* MENU LINKS */
.navbar .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 999px;
    transition: all 0.3s ease;
}

.navbar .nav-link:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-1px);
}

/* CONTACT BUTTON */
.navbar .btn {
    background: #ffffff;
    color: #0f172a !important;
    border-radius: 999px;
    padding: 10px 22px;
    font-weight: 600;
}

/* =========================
   HERO SECTION
========================= */

.hero-section {
    background: linear-gradient(135deg, #2563eb, #10b981);
    padding: 140px 0 80px;
    color: #ffffff;
}

.hero-section h1 {
    font-size: 44px;
    font-weight: 700;
}

.hero-section p {
    color: rgba(255,255,255,0.9);
}

/* =========================
   JOBS PAGE
========================= */

.jobs-wrap {
    background: linear-gradient(135deg, #e6fffa, #f0f9ff);
    padding: 120px 20px 80px;
}

.job-row,
.job-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 22px 26px;
    margin-bottom: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transition: transform .25s ease, box-shadow .25s ease;
}

.job-row:hover,
.job-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 45px rgba(0,0,0,0.12);
}

/* APPLY BUTTON */
.apply-btn,
.view-btn {
    background: linear-gradient(135deg,#2563eb,#10b981);
    color: #ffffff;
    border-radius: 30px;
    padding: 10px 22px;
    font-weight: 600;
}

/* =========================
   SAVE HEART — FIXED COLOR
========================= */

.save-heart {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #e11d48;
    background: #ffffff;
    color: #e11d48;
    font-size: 20px;
    cursor: pointer;
    transition: all .3s ease;
}

.save-heart:hover {
    transform: scale(1.15);
}

.save-heart.saved {
    background: #e11d48;
    color: #ffffff;
}

/* =========================
   SAVED JOBS PAGE
========================= */

.saved-wrap {
    background: linear-gradient(135deg, #e6fffa, #f0f9ff);
    padding: 120px 20px;
    min-height: 70vh;
}

.saved-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
    gap: 30px;
}

/* =========================
   APPLY JOB PAGE
========================= */

.single-job {
    background: linear-gradient(135deg, #fdf6ec, #f8fafc);
    padding: 120px 0;
}

.wa-job-meta-card,
.wa-job-desc,
.wa-apply-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.08);
}

/* =========================
   ABOUT PAGE
========================= */

.wa-about-hero {
    background: linear-gradient(135deg, #2563eb, #10b981);
    padding: 140px 20px 80px;
    color: #ffffff;
    text-align: center;
}

.wa-about-content {
    padding: 80px 20px;
}

.wa-about-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* =========================
   FOOTER — FINAL
========================= */

.wa-footer {
    background: linear-gradient(135deg, #020617, #0f172a);
    color: #cbd5f5;
}

.wa-footer-top {
    padding: 80px 20px;
}

.wa-footer-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.wa-footer img {
    height: 80px;
}

.wa-footer-bottom {
    background: #020617;
    text-align: center;
    padding: 16px;
    font-size: 13px;
}
/* =========================================
   ABOUT PAGE – FINAL POLISH & SPACING FIX
========================================= */

/* LOGO SIZE FIX (About page safe) */
.navbar-brand img {
    height: 180px !important;
}

/* HERO SPACING FIX */
.wa-about-hero {
    padding-top: 110px;  /* closer to menu */
    padding-bottom: 70px;
}

/* CENTER HERO TEXT */
.wa-about-hero h1 {
    margin-bottom: 10px;
}

.wa-about-hero p {
    margin-top: 0;
    font-size: 17px;
}

/* CONTENT SECTION SPACING */
.wa-about-content {
    padding: 90px 20px;
}

/* CARD BASE STYLE */
.wa-about-card,
.wa-about-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 35px; /* 🔥 spacing fix */
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* GRID FIX – Mission & Vision */
.wa-about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* CORE VALUES SECTION */
.wa-core-values {
    margin-top: 60px;
    margin-bottom: 80px;
}

.wa-core-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.wa-core-card {
    background: #ffffff;
    padding: 26px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* WHAT WE DO – VERTICAL CARDS */
.wa-services {
    margin-top: 80px;
}

.wa-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.wa-service-card {
    background: linear-gradient(135deg, #2563eb, #10b981);
    color: #ffffff;
    padding: 30px;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.wa-service-card h4 {
    margin-bottom: 10px;
}

.wa-service-card p {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
}

/* FOOTER MENU ALIGNMENT FIX */
.wa-footer-col {
    display: flex;
    flex-direction: column;
}

.wa-footer-col a {
    margin-bottom: 10px;
}
/* FORM WRAPPER */
.wa-form-card {
    background: #ffffff;
    max-width: 720px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,.12);
}

.wa-form-card h2 {
    text-align: center;
    margin-bottom: 30px;
}

.wa-form-card input,
.wa-form-card textarea,
.wa-form-card select {
    width: 100%;
    padding: 14px;
    margin-bottom: 18px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.wa-form-card button {
    width: 100%;
    padding: 14px;
    border-radius: 999px;
    background: linear-gradient(135deg,#2563eb,#10b981);
    color: #fff;
    font-weight: 700;
    border: none;
}
/* ===== EMERGENCY IMAGE FIX ===== */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

header img,
.navbar img {
    max-height: none !important;
    opacity: 1 !important;
    visibility: visible !important;
}
/* ===============================
GLOBAL SPACING RESET
================================ */
section {
    padding: 70px 0;
}

section.soft-bg {
    padding: 60px 0;
}

/* ===============================
HEADER POLISH
================================ */
.site-header,
header {
    padding: 12px 0 !important;
    min-height: auto !important;
}

header .logo img {
    max-height: 180px;
    height: auto;
}

/* Navbar pill alignment */
.navbar,
.main-nav {
    padding: 0;
}

/* ===============================
HERO SECTION (HOME)
================================ */
.hero,
.home-hero {
    padding: 110px 20px 100px;
}

.hero h1 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 760px;
    margin: 0 auto 35px;
}

/* ===============================
BUTTONS
================================ */
.btn,
button {
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 600;
}

.btn-primary {
    background: #2563eb;
    border: none;
}

.btn-outline {
    border: 2px solid rgba(255,255,255,0.5);
    background: transparent;
    color: #fff;
}

/* ===============================
CARDS (Jobs, Services, About)
================================ */
.card,
.job-card,
.wa-about-card,
.wa-service-card {
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* ===============================
FOOTER – FINAL POLISH
================================ */
footer {
    background: #020617;
    padding: 80px 0 30px;
    color: #cbd5f5;
}

footer h4 {
    color: #fff;
    margin-bottom: 20px;
}

footer a {
    color: #94a3b8;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}
/* ===============================
GLOBAL RESET (FIX WHITE STRIP)
================================ */
html, body {
    margin: 0 !important;
    padding: 0 !important;
}

/* Remove WP admin bar gap on frontend */
body:not(.wp-admin) {
    padding-top: 0 !important;
}

/* ===============================
HEADER FINAL FIX
================================ */
header,
.site-header {
    margin: 0 !important;
    padding: 10px 0 !important;
    background: linear-gradient(90deg, #2563eb, #10b981);
}

/* Remove any bottom gap */
header::after {
    display: none !important;
}

/* Logo size + alignment */
header img {
    max-height: 180px;
}

/* ===============================
HERO ALIGNMENT FIX
================================ */
.hero,
.home-hero {
    margin-top: 0 !important;
    padding-top: 80px !important;
    padding-bottom: 90px !important;
    background: linear-gradient(90deg, #2563eb, #10b981);
}

/* Ensure hero does NOT inherit header spacing */
.hero * {
    margin-top: 0;
}

/* ===============================
BUTTON POLISH
================================ */
.hero .btn {
    padding: 12px 30px;
    font-size: 15px;
}

/* ===============================
IMAGE CARD FIX
================================ */
.hero img {
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}
/* =========================
   FOOTER
========================= */

.wa-footer {
    background: linear-gradient(135deg, #0b1220, #020617);
    color: #cbd5e1;
    padding: 60px 0 25px;
    font-size: 15px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-logo {
    max-height: 42px;
    margin-bottom: 15px;
}

.footer-brand p {
    line-height: 1.6;
    max-width: 320px;
}

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #38bdf8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand p {
        max-width: 100%;
    }
}